Neo4j – Max Function

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

It takes a set of rows and an <property-name> of a node or relationship as input and finds the maximum value from the given <property-name> column of the given rows.

Syntax

Following is the syntax of the MAX() function.

MAX(<property-name>) 

Example

Following is a sample Cypher query, which demonstrates the usage of the function MAX() in Neo4j. Here we are trying to calculate the maximum salaries of the employees.

MATCH (n:employee) RETURN MAX(n.sal)

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.

This Post Has 2 Comments

Leave a Reply