Neo4j – Unwind Clause

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

The unwind clause is used to unwind a list into a sequence of rows.

Example

Following is a sample Cypher Query which unwinds a list.

UNWIND [a, b, c, d] AS x 
RETURN x 

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