Filter expression with different grouped operators

Setup

Selector: $[?(@.a && (@.b || @.c))]

[
  {
    "a": true
  },
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  },
  {
    "c": true
  },
  {
    "b": true
  }
]

Results

Other responses

Bash (JSONPath.sh)

[]

C (json-glib)

Not supported

Unable to compile selector `$[?(@.a && (@.b || @.c))]': Invalid array index definition “?(@.a && (@.b || @.c))]”

Clojure (json-path) ¹

[
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Cpp (jsoncons)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Dart (json_path)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Elixir (ExJsonPath)

Not supported

illegal characters "&"

Elixir (jaxon)

[]

Elixir (warpath) ¹

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Golang (github.com-AsaiYusuke-jsonpath) ²

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Golang (github.com-PaesslerAG-jsonpath) ¹

Not supported

parsing error: $[?(@.a && (@.b || @.c))]	 - 1:11 unknown operator &&

Golang (github.com-bhmj-jsonslice) ¹ ³

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Golang (github.com-ohler55-ojg)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Golang (github.com-spyzhov-ajson)

[
  {
    "a": true,
    "b": true,
    "c": true
  }
]

Golang (github.com-vmware-labs-yaml-jsonpath)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Haskell (jsonpath)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

JavaScript (Goessner) ²

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

JavaScript (brunerd)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

JavaScript (jsonpath)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

JavaScript (jsonpath-plus)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Java (com.github.jsurfer)

Not supported

line 1:11 no viable alternative at input '('
org.antlr.v4.runtime.misc.ParseCancellationException

Java (com.jayway.jsonpath) ¹ ³

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Kotlin (com.nfeld.jsonpathkt) ¹

Not supported

Unexpected char, char=?, index=2

Objective-C (SMJJSONPath) ¹ ³

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

PHP (galbar-jsonpath) ²

Not supported

Invalid JSONPath error: 'Error in JSONPath near ')''

PHP (remorhaz-jsonpath)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Python (jsonpath) ²

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  }
]

Python (jsonpath-ng)

Not supported

JsonPathLexerError('Error on line 1, col 2: Unexpected character: ? ')

Python (jsonpath-rw)

Not supported

JsonPathLexerError('Error on line 1, col 2: Unexpected character: ? ')

Python (jsonpath2)

Not supported

line 1:8 token recognition error at: '&'
ValueError("line 1:8 token recognition error at: '&'")

Raku (JSON-Path)

Not supported

Evaluation of embedded Perl 6 code not allowed (construct with :allow-eval)

Ruby (jsonpath)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Rust (jsonpath)

Not supported

parsing error

Rust (jsonpath_lib)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Rust (jsonpath_plus)

[
  {
    "a": true,
    "b": true,
    "c": true
  }
]

Scala (jsonpath)

Not supported

JPError(end of input expected)

Swift (Sextant)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

dotNET (Json.NET)

Not supported

Unexpected character while parsing path query: (

dotNET (JsonCons.JsonPath)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

dotNET (JsonPath.Net)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

dotNET (JsonPathLib)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

dotNET (Manatee.Json)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

JSON (Path_Reference_Implementation)

Not supported

 --> 1:3
  |
1 | $[?(@.a && (@.b || @.c))]
  |   ^---
  |
  = expected unionChild, unionArrayIndex, or sliceStart

Proposal (A)

[
  {
    "a": true,
    "b": true
  },
  {
    "a": true,
    "b": true,
    "c": true
  },
  {
    "a": true,
    "c": true
  }
]

Errors

Erlang (ejsonpath)

Timeout

Golang (github.com-oliveagle-jsonpath) ¹

invalid char at 11: ` `

PHP (Goessner) ²

ArgumentCountError

PHP (softcreatr-jsonpath)

Error: 'Malformed filter query'

Perl (JSON-Path)

non-safe evaluation, died at main.pl line 11.

Footnotes