You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The specification allows for "or expressions" in filters, but jmespath.rb seems to only have partial support.
require'jmespath'# Results in undefined method `empty?' for true:TrueClass, should matchJMESPath.search('[?foo || bar]',[{foo: true,bar: false}])# Results in empty an empty array, should matchJMESPath.search("[?foo == 'foo' || bar == 'foo']",[{foo: "foo",bar: "bar"}])# Results in empty an empty array, should match, trying different delimitersJMESPath.search('[?foo == `"foo"` || bar == `"foo"`]',[{foo: "foo",bar: "bar"}])``
The text was updated successfully, but these errors were encountered:
The specification allows for "or expressions" in filters, but jmespath.rb seems to only have partial support.
The text was updated successfully, but these errors were encountered: