To reproduce: ``` > "JSON.SET" "doc1" "." "{\"a\": 1, \"nested\": {\"a\": 2, \"b\": 3}}" >"JSON.DEL" "doc1" "$..a" 1 > "JSON.GET" "doc1" $ "[{\"nested\":{\"a\":2,\"b\":3}}]" ``` expected: ``` >"JSON.DEL" "doc1" "$..a" 2 > "JSON.GET" "doc1" $ "[{\"nested\":{\"b\":3}}]"