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
The query is split regarding the @defer directive. If we could statically detect that the selection will be deferred then we just skip it from the primary selection. If not we will clone the selection into deferred_queries and also keep it in the primary query to be able to detect at the execution stage if it's a deferred selection or not. For now we split all deferred queries either if it's an entity or just a field of an entity. It might change.
Related to #80
The query is split regarding the
@defer
directive. If we could statically detect that the selection will be deferred then we just skip it from the primary selection. If not we will clone the selection into deferred_queries and also keep it in the primary query to be able to detect at the execution stage if it's a deferred selection or not. For now we split all deferred queries either if it's an entity or just a field of an entity. It might change.For example with that schema:
with this query:
We should have 1 primary query:
and 2 deferred queries:
The text was updated successfully, but these errors were encountered: