I have a big JSON received from another server that I want to do some query operations on it. for example :
{
"name":"John",
"age":30,
"cars": {
"car1":"Ford",
"car2":"BMW",
"car3":"Fiat"
},
"friends": ["abby","benji","ciri"]
}
I can do the queries manually and maybe use lodash, but is there a library to perform queries like: FIND.. WHERE.. , SELECT, TOP 5...
Should I consider using no sql in memory DB for this?