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.

Fulltext query using node properties rather than strings

mike
Graph Buddy

I want to call the fulltext query but do not want to use a typical 'string' as the query term. Rather I want to use one or more variable.properties (which are strings). This works for a single term:

CALL db.index.fulltext.queryNodes("person-names", sn.text)

but I also want to expand to use with:

i) logical operators AND OR, e.g ...sn.text OR fn.text
ii) fuzzy search, e.g. ...sn.text~

Any help gratefully received

2 REPLIES 2

Not sure if there is an APOC yet, custom proc might be a way around

Thanks for the input, I'll give that a try