Neo4j – Backup & Restore In real-time applications, we should take backup of our application database regularly, so that we can restore to some working condition at any failure point. This rule is applicable for both RDBMS and NoSQL databases. In this section, we are going to discuss about two important DBA tasks. How to […]
Author Archives: user
Neo4j – Aggregation Function Like SQL, Neo4j CQL has provided some aggregation functions to use in RETURN clause. It is similar to GROUP BY clause in SQL. We can use this RETURN + Aggregation Functions in MATCH command to work on a group of nodes and return some aggregated value. AGGREGATION Functions List Following is […]
Neo4j – Limit Clause The limit clause is used to limit the number of rows in the output. Syntax Following is the syntax of the LIMIT clause. MATCH (n) RETURN n ORDER BY n.name LIMIT 3 Example Before proceeding with the example, create 5 nodes in the Neo4j database as shown below. CREATE(Dhawan:player{name:”shikar Dhawan”, YOB: […]