We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84be885 commit 6fdd248Copy full SHA for 6fdd248
demos/guru_scripts/docker/tutorial/4.x/README.md
@@ -105,6 +105,16 @@ CREATE OR REPLACE QUERY q1a () SYNTAX v3 {
105
106
// output vertex set variable v in JSON format
107
PRINT v;
108
+
109
+ //we can use vertex set variable in the subsequent query block's node pattern.
110
+ //v is placed in the node pattern vertex label position. The result is re-assigned to v.
111
+ v = SELECT a
112
+ FROM (a:v)
113
+ WHERE a.name == "Scott";
114
115
+ // output vertex set variable v in JSON format
116
+ PRINT v;
117
118
}
119
120
#compile and install the query as a stored procedure
0 commit comments