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 b3a41bc commit e4bb383Copy full SHA for e4bb383
1 file changed
README.md
@@ -17,15 +17,19 @@ So we can write path expression in the query language (and elsewhere in Python e
17
18
- for x in data ./ {key == 'green'} .// { key == 'yellow' }
19
20
-2. Query expression:
+2. Query expressions:
21
22
select x, y, sum(w)
23
+
24
for x in data ./,
25
26
y = x ./,
27
28
w in data 2
29
30
group by x,y
- where x % 2 == 0
31
32
+ where x % 2 == 0
33
34
35
We'll be adding a window and maybe try/catch to the expression, to make it as powerful as a JSONiq query.
0 commit comments