Neo4j set-up creating indexes

Neo4j can allow for index on node properties. Below is an example of checking what indexes are present and adding them.

 

Queries used:

 

CALL db.indexes - This shows which indexes are available

create index on :label(property) - This creates an index for the specified label and property e.g. in the video we used create index on :Message(id) to index the id property on any nodes with the Message label