I have a json and at the moment using select to get only the data which match one condition, I need to filter based on more conditions.
For e.g:
.[] | select((.processedBarsVolume <= 5) && .processedBars > 0)
How I can do this ?
jq
supports the normal Boolean operators and/or/not, so it would look like:
.[] | select((.processedBarsVolume <= 5) and .processedBars > 0)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With