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.

Neo4j cypher dsl new version

In the new version of neo4j cypher DSL, the identifier does not support also some other property does not support like node, a label so anyone please tell me what is the solution for that.

Thank You in Advance.

1 REPLY 1

tard_gabriel
Ninja
Ninja

Your description is not clear at all, but if I got it this might help you

CREATE LOOKUP INDEX [index_name] FOR (n) ON EACH labels(n)

Source: https://neo4j.com/docs/cypher-manual/current/indexes-for-search-performance/#administration-indexes-...

You can simply copy and paste this example query in your browser to see if it fix your issue.
If it does please mark your topic as solved

CREATE LOOKUP INDEX node_label_lookup_index FOR (n) ON EACH labels(n)