List out some of the Neo4J Commands

bookmark

There are many commands in Neo4J, of which the following are few basic commands:

  • CREATE – To create a node or relationship.
  • CREATE UNIQUE – To mention unique constraints in order to avoid redundant values.
  • MATCH – To read or retrieve all the nodes in the database.
  • MERGE – Combination of CREATE and MATCH.
  • SET – To add or update properties to new or existing nodes/relationships.