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/processing.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ Stage | Syntax | Action
50
50
__Filter__ | seq`[`expr`]` | Filter results from previous stage by applying predicate expression between brackets to each item.
51
51
__Sort__ | seq`^(`expr`)` | Sorts (re-orders) the input sequence according to the criteria in parentheses.
52
52
__Index__ | seq`#`$var | Binds a named variable to the current context position (zero offset) in the sequence.
53
-
__Join__ | seq`@`$var | Binds a named variable to the current current context item in the sequence. Can only be used directly following a map stage.
53
+
__Join__ | seq`@`$var | Binds a named variable to the current context item in the sequence. Can only be used directly following a map stage.
54
54
__Reduce__ | seq`{` expr`:`expr`,` expr`:`expr ...`}` | Group and aggregate the input sequence to a single result object as defined by the name/value expressions. Can only appear as the final stage in a path expression.
0 commit comments