Is it possible to use the jq has() function with nested keys?
jq -r -c 'has("a.b")'<<< '{"a":{"b":"hello"}}'this returns false, I have also tried
has("a|b")has("a[b]")
Is it possible to use the jq has() function with nested keys?
jq -r -c 'has("a.b")'<<< '{"a":{"b":"hello"}}'this returns false, I have also tried
has("a|b")has("a[b]")