You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I really like what you did, but maybe you can take the time to make this a valid JSON for Graphql as well?
What I mean by that: "id >": 1 to also be similar to "id_gt": 1
Proposing suffixes: _gt (greater then), _lt (lower then), _ge (greater or equal), _le (lower or equal), _notin, _in
What do you think about this?
The text was updated successfully, but these errors were encountered:
@gamebak I was going to suggest the same... Which library do you use now? Looks like a very common use case but I can't easily find a tool for the job.
@ivan-kleshnin I used knex-filter because it was quite easy, and to make this work with graphql we used a simple string conversion. The client has to encode it as string from json and the server to decode it.
Hey,
I really like what you did, but maybe you can take the time to make this a valid JSON for Graphql as well?
What I mean by that:
"id >": 1
to also be similar to "id_gt": 1Proposing suffixes:
_gt (greater then), _lt (lower then), _ge (greater or equal), _le (lower or equal), _notin, _in
What do you think about this?
The text was updated successfully, but these errors were encountered: