Neo4j - SPLessons

Neo4j Data Manipulation

Home > Lesson > Chapter 12
SPLessons 5 Steps, 3 Clicks
5 Steps - 3 Clicks

Neo4j Data Manipulation

Neo4j Data Manipulation

shape Description

Manipulating Data is utilized to manage data within the Neo4j Graph Database i.e., Neo4j Graph Database statements are used to manage data inside the schema objects, and includes most common standard query language statements such as select command and insert command. Neo4j Graph Database allows to add and modify the database table. Following are the statements for manipulating the data, such as:

Create

shape Description

It will create an empty node without any labels or properties and doesn't return any clause, except the number of rows affected.

Steps for creating the process

shape Description

The following steps that describes the process of creating  an employee node in the Neo4j Graph Database.

shape Step - 1

Open Neo4j Dat Browser.

shape Step - 2

Type the below command at the dollar prompt in the Data Browser and click on execute button.

shape Step - 3

After clicking the execute button it will display the output message in the Data Browser.

Delete

shape Description

It will delete an employee node without any labels or properties and only the nodes containing the number of rows affected.

Steps for deleting the process

shape Description

The following steps that describes the process of deleting  an employee node in the Neo4j Graph Database.

shape Step - 1

Open Neo4j Dat Browser.

shape Step - 2

Type the below command on the Data Browser and click on execute button.

shape Step - 3

After clicking execute button the below output will exists.

shape Step - 4

Type the below command on the Data Browser and click on execute button.

shape Step - 5

It will display that all the employee node as been successfully deleted.

Summary

shape Key Points

  • Manipulating Data - Used for managing data within the Neo4j Graph Database.
  • Create - It will create an empty node without any labels.
  • Delete - It will delete an employee node without any label.