Filter expression with equals string with single quotes

Setup

Selector: $[?(@.key=='value')]

[
    {"key": "some"},
    {"key": "value"}
]

Results

Consensus

[
  {
    "key": "value"
  }
]

Other responses

Bash (JSONPath.sh)

[]

C (json-glib)

Not supported

Unable to compile selector `$[?(@.key=='value')]': Invalid array index definition “?(@.key=='value')]”

Clojure (json-path) ¹

[]

Elixir (jaxon)

[]

Golang (github.com-PaesslerAG-jsonpath) ¹

Not supported

parsing error: $[?(@.key=='value')]	:1:12 - 1:19 could not parse string: invalid syntax

Golang (github.com-oliveagle-jsonpath) ¹

[]

Kotlin (com.nfeld.jsonpathkt) ¹

Not supported

Unexpected char, char=?, index=2

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:11 token recognition error at: '''
ValueError("line 1:11 token recognition error at: '''")

Raku (JSON-Path)

Not supported

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

Errors

PHP (Goessner) ²

ArgumentCountError

Perl (JSON-Path)

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

Footnotes