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 API only supports syntax such as a { b { c } }. This means that to get to c, the client needs to do a bunch of null checks on the surrounding objects, and the serialization is also more complex than need be. We could add support for a shorthand a.b.c to fetch only one field of an object.
Question is how well this would work with the schema, since this would blow up the number of available fields considerably. To limit the schema to something finite we would at the least need to stop when reaching cycles.
The text was updated successfully, but these errors were encountered:
Currently the API only supports syntax such as
a { b { c } }
. This means that to get toc
, the client needs to do a bunch of null checks on the surrounding objects, and the serialization is also more complex than need be. We could add support for a shorthanda.b.c
to fetch only one field of an object.Question is how well this would work with the schema, since this would blow up the number of available fields considerably. To limit the schema to something finite we would at the least need to stop when reaching cycles.
The text was updated successfully, but these errors were encountered: