Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple query/mutation fields short circuited by __typename in apollo, apollo 4, and envelope plugins #254

Open
SimplyKnownAsG opened this issue Sep 17, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@SimplyKnownAsG
Copy link

A mutation (probably query too) with multiple fields (operations calls) will short circuit checking the @constraint in the subsequent inputs when using the apollo, apollo 4, and evenelope plugins.

Example (using the existing test typeDefs)

mutation multipleMutations($input1: BookInput, $input2: BookInput) {
  one: createBook(input: $input1) {
    title __typename
  }

  two: createBook(input: $input2) {
    title __typename
  }
}

Non-conforming $input2 values are ignored. I think it might have something to do with this BREAK, but I haven't figured that out yet.

@confuser confuser added the bug Something isn't working label Sep 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants