You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/modules/ROOT/pages/subqueries/call.adoc
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,14 +2,14 @@
2
2
:description: This page describes how to create CALL subqueries with the Cypher Builder.
3
3
= `Call`
4
4
5
-
`Cypher.Call` generates Cypher link:https://neo4j.com/docs/cypher-manual/current/subqueries/call-subquery/[`CALL` subqueries]. To do this, instantiate `Cypher.Call` with a valid subquery as parameter in the constructor.
5
+
`Cypher.Call` generates Cypher link:https://neo4j.com/docs/cypher-manual/current/subqueries/call-subquery/[`CALL` subqueries]. To do this, instantiate `Cypher.Call` with a valid subquery as a parameter in the constructor.
6
6
7
7
[source, javascript]
8
8
----
9
9
new Cypher.Call(subquery);
10
10
----
11
11
12
-
In the following example, `Cypher.Call` receives a `Cypher.Match` clause.
12
+
In the following example, `Cypher.Call` receives a `Cypher.Match` clause. This generates a `MATCH` clause wrapped by a `CALL`.
13
13
14
14
[source, javascript]
15
15
----
@@ -24,8 +24,6 @@ const callClause = new Cypher.Call(subquery).return(dogName);
24
24
const { cypher, params } = callClause.build();
25
25
----
26
26
27
-
This example builds a `CALL` clause with the `MATCH` subquery inside.
0 commit comments