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
Describe the bug
When using a singular union type with graphql_fields (i.e. a field with a union type with only one sub-type within the union), the field is rendered only with the fields within the singular type, not using an ... on statement for composite types. This breaks if you're querying a composite type but only want one potential return type.
To Reproduce
Steps to reproduce the behavior:
Create the following classes:
class ClassA:
x: int
class ClassB:
y: Union[ClassA]
Then call ClassB.graphql_fields(). This renders as: