Google News
logo
Neo4J - Interview Questions
List out some of the Neo4J Commands you use?
There are many commands in Neo4J, of which the following are few basic commands:
 
* CREATE - To create a node or relationship.

*
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.

*
CREATE UNIQUE - To mention unique constraints in order to avoid redundant values.
Advertisement