When I search the web for "Query JSON data" all I can find is a bunch of seemingly abandoned projects, dating back to 2006, 2007, 2011 for the freshest one.
My goal is to perform queries like SELECT field1, field2, fieldn FROM jsonObject WHERE... ORDER BY...
Besides a possible INSERT function would surely be a plus.
Is there a js plugin to perform such operations with javascript object (in that case I shall declare a variable = JSON.parse(jsonObject) and then work with that object?
Am I missing something native within the JSON itself? Or else, what is best practice to perform such task in 2015?
Please share...