nodeStorage = $entityTypeManager->getStorage('node'); } public function getAll(): Collection { return new Collection( $this->nodeStorage->loadByProperties([ 'type' => 'post', ]) ); } }