Trisha Shetty (Editor)

Cypher Query Language

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Cypher is a declarative graph query language that allows for expressive and efficient querying and updating of a property graph. Cypher is a relatively simple but still very powerful language. Very complicated database queries can easily be expressed through Cypher. This allows users to focus on their domain instead of getting lost in database access.

Contents

Cypher was originally created by Neo Technology for its graph database Neo4j, but was opened up through the openCypher project in October 2015 and has since been adopted by several other graph database vendors, including SAP HANA and Agens Graph.

Graph Model

Cypher is based on the Property Graph Model, which in addition to the standard graph elements of nodes and edges (which are called relationships in Cypher) adds labels and properties as concepts. Nodes may have zero or more labels, while each relationship has exactly one relationship type. Nodes and relationships also have zero or more properties, where a property is a key-value binding of a string key and some value from the Cypher type system.

Type System

The Cypher type system is detailed in a Cypher Improvement Proposal (CIP), and contains the following types: nodes, relationships, paths, maps, lists, integers, floating-point numbers, booleans, and strings.

Syntax

Cypher contains a variety of clauses. Among the most common are: MATCH and WHERE. These functions are slightly different than in SQL. MATCH is used for describing the structure of the pattern searched for, primarily based on relationships. WHERE is used to add additional constraints to patterns. For example, the below query will return all movies where an actor named 'Nicole Kidman' have acted, and that was produced before a certain year (sent by parameter):

Cypher additionally contains clauses for writing, updating, and deleting data. CREATE and DELETE are used to create and delete nodes and relationships. SET and REMOVE are used to set values to properties and add labels on nodes. It should be noted that nodes can only be deleted when they have no other relationships still existing. For example:

Standardisation

With the openCypher project, an effort was started to standardise Cypher as the query language for graph processing. One part of this process is the First openCypher Implementers Meeting (oCIM), which was first announced in December 2016.

References

Cypher Query Language Wikipedia