Cypher allows the creation of indexes over a property for all nodes that have a given label. These indexes are automatically managed and kept up to date by the database whenever the graph is changed.
To create an index on a property for all nodes that have a label, use CREATE
INDEX
ON
. Note that the index is not immediately available, but will be created in the background. See the indexes section for details.
Query.
CREATE INDEX ON :Person(name)
Nothing
Copyright © 2013 Neo Technology