Question - List out some of the Neo4J Commands you use.
Answer -
There are many commands in Neo4J, of which 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 node/relationships.
• CREATE UNIQUE - To mention unique constraints in order to avoid redundant values.