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
Right now, the merging algorithm assumes that both schemas follow the convention of naming the root query type Query. This is an assumption that can lead to confusing outcomes if one of the schemas doesn't have Query defined but instead opted to have their root fields defined on something else.
With this in mind, Query shouldn't be handled like the other types in a schema. Instead, we want to merge the root types even if they dont have the same name so that they are all available at the root of the resulting API.
The text was updated successfully, but these errors were encountered:
Right now, the merging algorithm assumes that both schemas follow the convention of naming the root query type
Query
. This is an assumption that can lead to confusing outcomes if one of the schemas doesn't haveQuery
defined but instead opted to have their root fields defined on something else.With this in mind,
Query
shouldn't be handled like the other types in a schema. Instead, we want to merge the root types even if they dont have the same name so that they are all available at the root of the resulting API.The text was updated successfully, but these errors were encountered: