1.

List some neo4j commands?

Answer»
  • Neo4j CQL MATCH command – used to get data about NODES and properties

          MATCH

          (

           <node-name >:<label-name>

          )

  • Delete all nodes and relationships command:

 

16. How to create a new database in neo4j?

To create a new database in Neo4j WITHOUT removing your existing one, users can directly edit the neo4j.conf file in their conf directory of their $NEO4J_HOME. Search dbms.active_database= and REPLACE it with your DESIRED name and restart the PROGRAM again. A new database will be created now.



Discussion

No Comment Found