File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -203,9 +203,19 @@ Extensions
203
203
| | - ``$.objects[\\some_field,/other_field] `` |
204
204
+--------------+-----------------------------------------------+
205
205
| filter | - ``$.objects[?(@some_field > 5)] `` |
206
- | | - ``$.objects[?some_field = "foobar"] `` |
207
- | | - ``$.objects[?some_field =~ "foobar"] `` |
208
- | | - ``$.objects[?some_field > 5 & other < 2] `` |
206
+ | | - ``$.objects[?some_field = "foobar"] `` |
207
+ | | - ``$.objects[?some_field =~ "foobar"] `` |
208
+ | | - ``$.objects[?some_field > 5 & other < 2] `` |
209
+ | | |
210
+ | | Supported operators: |
211
+ | | - Equality: ==, =, != |
212
+ | | - Comparison: >, >=, <, <= |
213
+ | | - Regex match: =~ |
214
+ | | |
215
+ | | Combine multiple criteria with '&'. |
216
+ | | |
217
+ | | Properties can only be compared to static |
218
+ | | values. |
209
219
+--------------+-----------------------------------------------+
210
220
| arithmetic | - ``$.foo + "_" + $.bar `` |
211
221
| (-+*/) | - ``$.foo * 12 `` |
You can’t perform that action at this time.
0 commit comments