←back to thread

Show HN: JSON Query

(jsonquerylang.org)
147 points wofo | 2 comments | | HN request time: 0.42s | source

I'm working on a tool that will probably involve querying JSON documents and I'm asking myself how to expose that functionality to my users.

I like the power of `jq` and the fact that LLMs are proficient at it, but I find it right out impossible to come up with the right `jq` incantations myself. Has anyone here been in a similar situation? Which tool / language did you end up exposing to your users?

Show context
npodbielski ◴[] No.45724073[source]
Nice. I work on something similar but for .net.
replies(1): >>45724416 #
1. gabrielsroka ◴[] No.45724416[source]
They have an implementation for .net https://jsonquerylang.org/implementations/#net
replies(1): >>45731065 #
2. npodbielski ◴[] No.45731065[source]
Interesting. But looks like it require JSON object. My query language works on top of Linq so it make it compatible with ORMs, IEnumerable and IQueryable.