We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b60e374 commit ebe607eCopy full SHA for ebe607e
README.md
@@ -51,7 +51,7 @@ You can use tools like `jq` and `grep` to further process and filter the output.
51
```bash
52
pb query run "select * from backend" --from=1m --to=now | jq .
53
pb query run "select host, id, method, status from backend where status = 500" --from=1m --to=now | jq . > 500.json
54
-pb query run "select host, id, method, status from backend where status = 500" | jq '. | select(.method == "PATCH")'
+pb query run "select host, id, method, status from backend where status = 500" | jq '. | map(select(.method == "PATCH"))'
55
pb query run "select host, id, method, status from backend where status = 500" --from=1m --to=now | grep "POST" | jq . | less
56
```
57
0 commit comments