I have tried auto indexing and have set my neo4j.properties file to the following:
# Autoindexing
# Enable auto-indexing for nodes, default is false
#node_auto_indexing=true
# The node property keys to be auto-indexed, if enabled
#node_keys_indexable=Name,Type,CurrentVersion,DateTimeCreated,CurrentVersionDateTime,VersionCount, CustomerName,DocumentReference,Version
Before I had set node_auto_indexing=true to false and created my own index for testing but now I want to auto index all my node properties?
And When i run this cypher query it returns 0 rows?
start n = node:node_auto_index(Name = "Mike") return n;
What am i doing wrong here?