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
When processing the GraphQL schema, we need two steps: first, do the entities, then do the selectables
That's because we don't know if in user: User, User is scalar or object, and we categorize selectables by whether they're scalar or object selectables
Instead, we can just have a single "Selectable" struct, and one has to look up what it points to to determine whether it is a scalar or object selectable.