What is the name of query language used by Neo4J?

devquora
devquora

Posted On: Feb 22, 2018

 

Neo4j uses CQL ( Cypher Query Language ). Cypher is Neo4j’s open graph query language. Cypher’s syntax provides a familiar way to match patterns of nodes and relationships in the graph.
Simple example of a Cypher query to get cast of movies starting with “T”

MATCH (actor:Person)-[:ACTED_IN]->(movie:Movie)
WHERE movie.title STARTS WITH "T"
RETURN movie.title AS title, collect(actor.name) AS cast
ORDER BY title ASC LIMIT 10;

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Neo4j interview questions

    Define Neo4j?

    It is one of most popular  open source free NOSQL  Graph DBMS (database management system) developed by Neo4j, Inc...

    Neo4j interview questions

    What are the indexing capabilities of Neo4J?

    Neo4j as a graph database features indexing as the preferred way to find start points for graph traversals. Over the ye..