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
Example:
class Cinema { /** * @OGM\Index(name="FulltextIndex", type="fulltext") */ protected $name } $cinema = new Cinema(); $cinema->setName("Test"); $this->manager->persist($cinema); $this->manager->flush();
Run cypher query "START node = node:FulltextIndex("name:tes*") RETURN node" return Cinema node.
$cinema->setName("New name"); $this->manager->persist($cinema); $this->manager->flush();
Run cypher query "START node = node:FulltextIndex("name:tes*") RETURN node" return Cinema node all the same
The text was updated successfully, but these errors were encountered:
This seems legitimate. I won't have time to look into the issue myself. Could you resolve the issue and submit a PR?
Sorry, something went wrong.
PR #105 might be related or a similar fix.
No branches or pull requests
Example:
Run cypher query "START node = node:FulltextIndex("name:tes*") RETURN node" return Cinema node.
Run cypher query "START node = node:FulltextIndex("name:tes*") RETURN node" return Cinema node all the same
The text was updated successfully, but these errors were encountered: