USE
Introduction
The USE
clause determines which graph a query, or query part, is executed against.
This functionality is currently only available in Neo4j Fabric. Find out more about this feature in Operations Manual → Fabric. |
Syntax
The USE
clause can only appear as the first clause of:
-
Queries:
USE <graph> <other clauses>
-
Union parts:
USE <graph> <other clauses> UNION USE <graph> <other clauses>
-
Subqueries:
CALL { USE <graph> <other clauses> }
In subqueries, a
USE
clause may appear as the second clause, if directly following an importingWITH
clause