Added comparison ops (>,>=...)

This commit is contained in:
Mike Farah
2022-03-24 11:38:05 +11:00
parent 897604142f
commit fb148c305a
12 changed files with 673 additions and 1 deletions
@@ -1,3 +1,9 @@
# Select
Select is used to filter arrays and maps by a boolean expression.
## Related Operators
- equals / not equals (`==`, `!=`) operators (here)[https://mikefarah.gitbook.io/yq/operators/equals]
- comparison (`>=`, `<` etc) operators (here)[https://mikefarah.gitbook.io/yq/operators/compare]
- boolean operators (`and`, `or`, `any` etc) (here)[https://mikefarah.gitbook.io/yq/operators/boolean-operators]