Closed snawaz closed 2 years ago
Currently, my mutation is generated as:
mutation login($login: LoginInput!){ login(login: $login){ ... on Authorised { _tag tokens{ accessToken refreshToken accessExpiration } } ... on UnAuthorised { _tag } } }
I want __typename to be generated as well, like:
__typename
mutation login($login: LoginInput!){ login(login: $login){ __typename <----- THIS SHOULD BE GENERATED AS WELL ... on Authorised { _tag tokens{ accessToken refreshToken accessExpiration } } ... on UnAuthorised { _tag } } }
How can I get this?
Currently, my mutation is generated as:
I want
__typename
to be generated as well, like:How can I get this?