Search code examples
neo4jclient

How to pass in a lucene query into the .net Neo4J client


I'd like to use the .net neo4j client with a a cypher query that starts like this

START n=node:node_auto_index('facebookId:("123", "456", "789")')

I've noticed that CypherStartBitWithNodeIndexLookup requires a key and object value rather than an arbitrary lucene query string.

How should I do this using the .net neo4j client?


Solution

  • Use CypherStartBitWithNodeIndexLookupWithSingleParameter instead.