Frends.JSON.Query / 1.3.0
Summary
Selects from JSON with a JSONPath expression and returns every match as a collection.
Typical use — pulling a repeating structure out of a document to loop over; the single-result Task is the one for a scalar
Input parameters.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| Json | Object |
– | {\"key\":\"value\"} |
Json input needs to be of type string or JToken |
| Query | String |
– | \"$.key\" |
The query is of type JSONPath. More details: http://goessner.net/articles/JsonPath/ |