Collect
Foundational exit node automatically created inside every iterator scope.
Entry
Foundational entry node automatically created inside every iterator scope.
Every
Return true only if every element of a list passes the per-element sub-graph predicate.
Filter
Keep only the elements of a list whose per-element sub-graph evaluates to true.
Find
Return the first element of a list whose per-element sub-graph evaluates to true.
Flatten Map
Flatten a nested JSON object/array into a single-level object whose keys are dotted paths.
Group By
Bucket elements of a list into a JSON object keyed by a per-element sub-graph result.
Map
Transform each element of a list by running a sub-graph per element.
Reduce
Fold a list into a single accumulated value by running a sub-graph per element.
Some
Return true if at least one element of a list passes the per-element sub-graph predicate.
Sort
Sort a list by a per-element key extracted by a sub-graph.
Zip
Combine N input lists into one list of N-tuples.