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?
Use CypherStartBitWithNodeIndexLookupWithSingleParameter instead.