cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

When querying a full-text index with the term "account" the node "Accounts" is not retrieved

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!

0 REPLIES 0