Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
10-31-2021 06:25 AM
Hello all, this is my first time posting a question.
I indexed the "name" property of the nodes in the graph.
I have a node n where n.name="Accounts".
The following call returns the node "Accounts" as expected.
CALL db.index.fulltext.queryNodes("name_index", "accounts") YIELD node, score
RETURN node, score
However, the following one returns nothing:
CALL db.index.fulltext.queryNodes("name_index", "account") YIELD node, score
RETURN node, score
I would expect that "accounts" would be returned as it is closer to "account" than "Full Moon High" to "Full Metal Jacket" (as in the example here.
Is there a way to return "accounts" when searching for "account" and vice versa?
Thank you!
All the sessions of the conference are now available online