Is it possible to use JSONPath with "?()" syntax to filter objects (not array) in Redis?
I'm using node-redis library. I have redis key: test1 with value: { "requests": [ { "requestId": "123", "requestType": "TYPE_1", "foo": "bar", "timestampS": 1230011000 }, { "requestId": "124", "requestType": "TYPE_1", "foo": "bar2", "timestampS": 1230011050 } ] } To get all requests…