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
There is an issue with absinthe that renders unions with no types in a non-spec compliance way e.g.
union_Entity =
We should just not add this type to the schema if there are no types marked as @key(fields: "") found in the schema during our processing phase to workaround this absinthe issue. There is a PR to fix this in absinthe but the GraphQL spec contradicts itself by saying the types are optional but in the validation docs it says a union must have at least one type
The text was updated successfully, but these errors were encountered:
There is an issue with absinthe that renders unions with no types in a non-spec compliance way e.g.
We should just not add this type to the schema if there are no types marked as
@key(fields: "")
found in the schema during our processing phase to workaround this absinthe issue. There is a PR to fix this in absinthe but the GraphQL spec contradicts itself by saying the types are optional but in the validation docs it says a union must have at least one typeThe text was updated successfully, but these errors were encountered: