Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
03-31-2020 12:33 AM
Specifically,
My graph is like this
(:Profile:Main {name:"something",username:"something else"})
(:Brand:Main {name:"something",username:"something else"})
(:Manufacturer:Main {name:"something",username:"something else"})
Sometimes I need to do a full search on all entities (Main) and some other times I only need to do on specific entities (either Profile either Brand either Manufacturer).
Do I need to create multiple indexes or is
CALL db.index.fulltext.createNodeIndex('main', ['Main'], ["name","username"])
sufficient
Solved! Go to Solution.
03-31-2020 01:46 AM
In your case it's "one index to rule 'em all".
Since you build the index on :Main
label, anything carrying the label will be in the index.
03-31-2020 01:46 AM
In your case it's "one index to rule 'em all".
Since you build the index on :Main
label, anything carrying the label will be in the index.
All the sessions of the conference are now available online