Neo4j – Drop Unique

  • Post author:
  • Post category:Neo4j
  • Post comments:0 Comments

We have already discussed creating UNIQUE constraint operations with examples in the previous chapter. In this chapter, we will discuss dropping the UNIQUE constraint operation with examples.

Neo4j CQL provides a “DROP CONSTRAINT” command to delete existing Unique constraints from a node or relationship property.

Syntax

Following is the syntax for dropping a UNIQUE constraint in Neo4j.

DROP CONSTRAINT ON (node:label) 
ASSERT node.id IS UNIQUE 

Example

Following is a sample Cypher Query to remove the UNIQUE constraint on the property id.

DROP CONSTRAINT ON (n:player) 
ASSERT n.id IS UNIQUE 

To execute the above query, carry out the following steps โˆ’

Step 1 โˆ’ Open the Neo4j desktop App and start the Neo4j Server. Open the built-in browser app of Neo4j using the URL http://localhost:7474/ as shown in the following screenshot.

Step 2 โˆ’ Copy and paste the desired query in the dollar prompt and press the play button (to execute the query) highlighted in the following screenshot.

Result

On executing, you will get the following result.

Leave a Reply