Ludovic Robbe

Results 1 issues of Ludovic Robbe

I have requests that can have 2 return types using union. Example: ```graphql union SuccessOrError = GraphqlError | Success mutation deleteAccount($accountId: String!) { deleteAccount(accountId: $accountId) { ... on Success {...