All Downloads are FREE. Search and download functionalities are using the official Maven repository.

browser.content.help.match.html Maven / Gradle / Ivy

The newest version!

MATCH

Describe a data pattern

The MATCH clause describes a pattern of graph data. Neo4j will collect all paths within the graph which match this pattern. This is often used with WHERE to filter the collection.

MATCH descibes the structure, and WHERE specfies the content of a query.

Reference: MATCH manual page
Related: :help WHERE :help Cypher
MATCH (director:Person)-[:DIRECTED]->(movie)
WHERE director.name = "Steven Spielberg"
RETURN movie.title
Find all the many fine films directed by Steven Spielberg.




© 2015 - 2025 Weber Informatics LLC | Privacy Policy