json-query-language
json-query-language copied to clipboard
A structured query language for querying / filtering JSON documents, expressed in JSON
Some systems do this automatically if the left hand operand is an array. MongoDB has an explicit [$elemMatch operator](http://docs.mongodb.org/manual/reference/operator/query/elemMatch/). This needs some discussion first.
Now that the `$contains` operator has been implemented (#9), we should consider if it should support nested keys (dot-notation) like this: ``` json { "location" : { "$contains" : "home.latitude"...
Something similar to this, but should possibly include a vendor prefix: ``` application/json-query+json ```