We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ (some input) | ./jq '.details[] | select(.health != "ok")' error: Invalid character .details[] | select(.health != "ok") ^ 1 compile error
Seems valid to me...
The text was updated successfully, but these errors were encountered:
This feature has been added on master, the binaries should be rebuilt. You can build master yourself or use the syntax:
.details[] | select(.health == "ok" | not)
Sorry, something went wrong.
came here to complain about the same issue; any idea when the official binaries will be updated?
igor47@Robot:~ $ echo '[{"name":"joe"},{"name":"mike"}]' | jq '.[] | select(.["name"] == "mike")' { "name": "mike" } igor47@Robot:~ $ echo '[{"name":"joe"},{"name":"mike"}]' | jq '.[] | select(.["name"] != "mike")' error: Invalid character .[] | select(.["name"] != "mike") ^ 1 compile error
Binaries updated, finally.
No branches or pull requests
Seems valid to me...
The text was updated successfully, but these errors were encountered: