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 […]
Category Archives: neo4j
Neo4j – String Functions Like SQL, Neo4J CQL has provided a set of String functions to use them in CQL Queries to get the required results. Here, we are going to discuss some of the important and frequently used functions. String Functions List Following is the list of prominent String functions in Neo4j. Sr.No Function […]
Neo4j – Unwind Clause 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 […]