We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In neos/neos-development-collection#4555 (comment) we removed the NodeSearchService. There was also a discussion about re-adding the Service, but was decided against: neos/neos-development-collection#3771
There are Upgrade instructions in the PR to migrate, but we should think about adding a comment or hint directly using rector.
The text was updated successfully, but these errors were encountered:
- $nodes = $this->nodeSearchService->findByProperties(string $term, array $searchNodeTypes); + $nodes = $this->subgraph->findDescendantNodes( + $entryNode->nodeAggregateId, + FindDescendantNodesFilter::create( + nodeTypes: NodeTypeConstraints::create( + NodeTypeNames::fromStringArray($searchNodeTypes), + NodeTypeNames::createEmpty() + ), + searchTerm: $term, + ) + );
Sorry, something went wrong.
We also need to check for the interface: Neos\Neos\Domain\Service\NodeSearchServiceInterface
Neos\Neos\Domain\Service\NodeSearchServiceInterface
dlubitz
Successfully merging a pull request may close this issue.
In neos/neos-development-collection#4555 (comment) we removed the NodeSearchService. There was also a discussion about re-adding the Service, but was decided against: neos/neos-development-collection#3771
There are Upgrade instructions in the PR to migrate, but we should think about adding a comment or hint directly using rector.
The text was updated successfully, but these errors were encountered: