Examples
`jq -r ‘.assets[] | select(.name | contains(“my-asset”)) | .url’)
Gets the list of assets, filters by any who has my-asset
in the name
field, and returns the associated URLs
Search
`jq -r ‘.assets[] | select(.name | contains(“my-asset”)) | .url’)
Gets the list of assets, filters by any who has my-asset
in the name
field, and returns the associated URLs