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
Currently, the query processor assumes input to be coming from deserialized JSON, therefore some query options such as limit and int-from are expected to be of type float64, which is awkward in embedded usage scenarios.
Change the behaviour so that during query processing, int, int64, uint64 are acceptable when JSON integer is expected.
The text was updated successfully, but these errors were encountered:
If you could also include an example in example.go of doing an embedded query without json that would be awesome. I am trying to figure out how to do an intersection query without first having to marshal to and then unmarshal from json. I am very new to go, so I know that is a big part of the problem, but if there was an example of what an intersection query looked like using native go structures, rather than json, it would be greatly appreciated.
Currently, the query processor assumes input to be coming from deserialized JSON, therefore some query options such as
limit
andint-from
are expected to be of type float64, which is awkward in embedded usage scenarios.Change the behaviour so that during query processing, int, int64, uint64 are acceptable when JSON integer is expected.
The text was updated successfully, but these errors were encountered: