Skip to content

Commit e4bb383

Browse files
committed
modified readme
1 parent b3a41bc commit e4bb383

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,19 @@ So we can write path expression in the query language (and elsewhere in Python e
1717

1818
- for x in data ./ {key == 'green'} .// { key == 'yellow' }
1919

20-
2. Query expression:
20+
2. Query expressions:
2121

2222
select x, y, sum(w)
23+
2324
for x in data ./,
25+
2426
y = x ./,
27+
2528
w in data 2
29+
2630
group by x,y
27-
where x % 2 == 0
2831

32+
where x % 2 == 0
2933

3034

3135
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

Comments
 (0)