UltipaDocs
Try Playground
  • Introduction
  • GQL vs Other Languages
    • Overview
    • Node and Edge Patterns
    • Path Patterns
    • Quantified Paths
    • Shortest Paths
    • Graph Patterns
    • Overview
    • Closed Graph
    • Open Graph
    • Graph Sharding and Storage
    • Constraints
    • Unique Identifiers
    • INSERT
    • INSERT OVERWRITE
    • UPSERT
    • SET
    • REMOVE
    • DELETE
    • Query Composition
    • Result Table and Visualization
    • MATCH
    • OPTIONAL MATCH
    • FILTER
    • LET
    • FOR
    • ORDER BY
    • LIMIT
    • SKIP
    • CALL
    • RETURN
    • Composite Query
    • NEXT
    • All Functions
    • Scalar Functions
    • Path Functions
    • Aggregate Functions
    • Mathematical Functions
    • Trigonometric Functions
    • String Functions
    • List Functions
    • Datetime Functions
    • Spatial Functions
    • Type Conversion Functions
    • Table Functions
    • AI & Vector Functions
    • Database Functions
  • Operators
  • Predicates
  • Expressions
    • Index
    • Full-text Index
    • Vector Index
  • Transactions
  • Triggers
  • Query Management
  • Backup and Restore
    • Variables
    • Values and Types
    • Comments
    • Reserved Words
    • Syntactic Notation
  • GQL Conformance
  1. Docs
  2. /
  3. ISO GQL
  4. /
  5. Querying

MATCH

Overview

The MATCH statement allows you to specify a graph pattern to search for in the graph. It is the fundamental statement for retrieving data from the graph database and binding them to variables for use in subsequent parts of the query.

Example Graph

CREATE GRAPH myGraph { 
  NODE User ({name string}),
  NODE Club ({since uint32}),
  EDGE Follows ()-[{createdOn date}]->(),
  EDGE Joins ()-[{memberNo uint32}]->()
}

Matching All Nodes

GQL
MATCH (n)
RETURN n

Result: n

_id_uuidschema
values
U05Sys-genUser{name: "lionbower"}
U04Sys-genUser{name: "mochaeach"}
U03Sys-genUser{name: "purplechalk"}
U02Sys-genUser{name: "Brainy"}
U01Sys-genUser{name: "rowlock"}
C02Sys-genClub{since: 2005}
C01Sys-genClub{since: 2005}

Matching All Edges

GQL
MATCH ()-[e]->()
RETURN e

Result: e

_uuid
_from
_to
_from_uuid
_to_uuid
schema
values
Sys-genU01U02UUID of U01UUID of U02Follows{createdOn: "2024-01-05" }
Sys-genU02U03UUID of U02UUID of U03Follows{createdOn: "2024-02-01"}
Sys-genU03U05UUID of U03UUID of U05Follows{createdOn: "2024-05-03"}
Sys-genU04U02UUID of U04UUID of U02Follows{createdOn: "2024-02-10"}
Sys-genU02C01UUID of U02UUID of C01Joins{memberNo: 1}
Sys-genU05C01UUID of U05UUID of C01Joins{memberNo: 2}
Sys-genU04C02UUID of U04UUID of C02Joins{memberNo: 9}

Notice that if you don't specifiy the edge direction, either as outgoing or incoming, each edge in the graph will be returned twice, as two paths are considered distinct when their element sequences differ, i.e., (n1)-[e]->(n2) and (n2)<-[e]-(n1) are different paths.

GQL - Each edge will be returned twice
MATCH ()-[e]-()
RETURN e

Matching with Labels/Schema

Both node pattern and edge pattern support the label/schema expression to specify schemas (in typed graphs) or labels (in open graphs).

To retrieve all Club nodes:

GQL
MATCH (n:Club)
RETURN n

Result: n

_id_uuidschema
values
C02Sys-genClub{since: 2005}
C01Sys-genClub{since: 2005}

To retrieve all nodes connected to Brainy with Follows or Joins edges:

GQL
MATCH (:User {name: 'Brainy'})-[:Follows|Joins]-(n)
RETURN n

Result: n

_id_uuidschema
values
U03Sys-genUser{name: "purplechalk"}
C01Sys-genClub{since: 2005}

Matching with Property Specification

Property specification can be included in node and edge patterns to apply joint equalities to filter nodes and edges with key-value pairs.

To retrieve Club nodes whose _id and since have specific values:

GQL
MATCH (n:Club {_id: 'C01', since: 2005})
RETURN n

Result: n

_id_uuidschema
values
C01Sys-genClub{since: 2005}

To retrieve the name of the member of club C01 whose memberNo is 1:

GQL
MATCH (:Club {_id: 'C01'})<-[:Joins {memberNo: 1}]-(n)
RETURN n.name

Result: n

n.name
Brainy

Matching with Abbreviated Edges

You can use abbreviated edge patterns when you do not need to filter edges or assign them to a variable. Even with the abbreviated form, you may still specify the direction of the edge when necessary.

To retrieve nodes connected with mochaeach with any outgoing edges:

GQL
MATCH (:User {name: 'mochaeach'})->(n)
RETURN n

Result: n

_id_uuidschema
values
U02Sys-genUser{name: "Brainy"}
C02Sys-genClub{since: 2005}

Matching Paths

To retrieve users followed by mochaeach, and the clubs joined by those users:

GQL
MATCH p = (:User {name: 'mochaeach'})-[:Follows]->(:User)-[:Joins]->(:Club)
RETURN p

Result: p

Matching with WHERE Clauses

The WHERE clause can be used within an element pattern (node or edge pattern), a parenthesized path pattern, or immediately after a graph pattern in the MATCH statement to specify various search conditions.

Element Pattern WHERE Clause

To retrieve 1-step paths with outgoing Follows edges, where their createdOn values are greater than a specified date:

GQL
MATCH p = ()-[e:Follows WHERE e.createdOn > '2024-04-01']->()
RETURN p

Result: p

Parenthesized Path Pattern WHERE Clause

To retrieve one- or two-step paths containing outgoing Follows edges, where their createdOn values are smaller than a specified value:

GQL
MATCH p = (()-[e:Follows]->() WHERE e.createdOn < "2024-02-05"){1,2}
RETURN p

Result: p

Graph Pattern WHERE Clause

To retrieve members of club C01 whose memberNo is greater than 1:

GQL
MATCH (c:Club)<-[e:Joins]->(n)
WHERE c._id = 'C01' AND e.memberNo > 1
RETURN n

Result: n

_id_uuidschema
values
U05Sys-genUser{name: "lionbower"}

Matching Quantified Paths

A quantified path is a variable-length path where the complete path or a part of it is repeated a specified number of times.

To retrieve distinct nodes related to lionbower in 1 to 3 hops:

GQL
MATCH (:User {name: 'lionbower'})-[]-{1,3}(n)
RETURN collect_list(DISTINCT n._id) AS IDs

Result:

IDs
["C01","U01","U02","U03","U04"]

To retrieve paths that begin with one- or two-step subpaths containing Follows edges, where their createdOn values are greater than a specified value, and these subpaths must connect to node C01:

GQL
MATCH p = (()-[e:Follows]->() WHERE e.createdOn > "2024-01-31"){1,2}()-({_id:"C01"})
RETURN p

Result: p

Matching Shortest Paths

A shortest paths between two nodes are the paths that has the fewest edges.

To retrieve all the shortest paths between lionbower and purplechalk within 5 hops:

GQL
MATCH p = ALL SHORTEST (n1:User)-[]-{,5}(n2:User)
WHERE n1.name = 'lionbower' AND n2.name = 'purplechalk'
RETURN p

Result: p

Matching Multiple Paths

When a MATCH statement contains multiple path patterns, each pattern is matched independently against the graph to produce its own result set. These result sets are then combined by performing an equi-join on the shared node or edge variables.

To retrieve users who joined club C02 and also follow Brainy:

GQL
MATCH (u)-[:Joins]->(:Club {_id: 'C02'}), (u)-[:Follows]->(:User {name: 'Brainy'})
RETURN u

Result: u

_id_uuidschema
values
U04Sys-genUser{name: "mochaeach"}

The above query is equivalent to the following using two MATCHs:

GQL
MATCH (u)-[:Joins]->(:Club {_id: 'C02'})
MATCH (u)-[:Follows]->(:User {name: 'Brainy'})
RETURN u

If the path patterns share no common variables, the result sets are combined using a Cartesian product — a behavior that is usually undesired. For example,

GQL
MATCH (c:Club), (u:User)-[f:Follows WHERE f.createdOn > '2024-02-01']->()
RETURN c._id, u.name

Result:

c._idu.name
C02mochaeach
C02purplechalk
C01mochaeach
C01purplechalk

MATCH YIELD

The YIELD clause can be used to select specific node, edge, or path variables from the MATCH statement, making them accessible for reference in subsequent parts of the query. Variables not selected with YIELD will no longer be available. If the YIELD clause is omitted, all variables are passed through by default.

This query only returns c, as n is not involved in YIELD:

GQL
MATCH (n:User)-[:Joins]->(c:Club)
YIELD c
RETURN *

Result: c

_id_uuidschema
values
C01Sys-genClub{since: 2005}
C02Sys-genClub{since: 2005}
C01Sys-genClub{since: 2005}

This query returns n1 and e, n2 is not included:

GQL
MATCH (n1:Club)
MATCH (n2:Club)<-[e:Joins WHERE e.memberNo < 3]-() YIELD e
RETURN *

n1

_id_uuidschema
values
C01Sys-genClub{since: 2005}
C01Sys-genClub{since: 2005}
C02Sys-genClub{since: 2005}
C02Sys-genClub{since: 2005}

e

_uuid
_from
_to
_from_uuid
_to_uuid
schema
values
Sys-genU02C01UUID of U02UUID of C01Joins{memberNo: 1}
Sys-genU02C01UUID of U02UUID of C01Joins{memberNo: 1}
Sys-genU05C01UUID of U05UUID of C01Joins{memberNo: 2}
Sys-genU05C01UUID of U05UUID of C01Joins{memberNo: 2}

This query throws syntax error since n2 is not selected in the YIELD clause, thus it cannot be accessed by the RETURN statement:

GQL - Syntax Error
MATCH (n1:User), (n2:Club)
YIELD n1
RETURN n1, n2