9 ms·
If you prefer JSONPath as a query language, oj from https://github.com/ohler55/ojg https://github.com/ohler55/ojg provides that functionality. It can also be in
by peterohler 11mo ago
If you prefer JSONPath as a query language, oj from https://github.com/ohler55/ojg https://github.com/ohler55/ojg provides that functionality. It can also be installed with brew. (disclaimer, I'm the author of OjG)
- tyre 11mo agoJSONPath is also supported by Postgres! Helpful when querying JSON API responses that are parsed and persisted for normal, relational uses. Sometimes you want to query data that you weren’t initially parsing or that matches a fix to reprocess.
- Eric_WVGG 11mo agospeaking of classic databases: can anyone explain to me, a dummy, why any syntax like this or even GraphQL is preferable to "select a.name, a.age from friends a where a.city = 'New York' order by a.age asc"?