Closed
Description
The GraphQL spec specifies that the top level fields in mutations should execute serially.
http://spec.graphql.org/June2018/#sec-Mutation
When I run a Mutation like the following using Graphiti, I get race conditions and unexpected results. The only explanation I have for this is that they are running in parallel. Am I missing something? Thanks!
mutation Test {
addLike(input: {id: 1}) {
....
}
removeLike(input: {id: 1} ) {
....
}
addLike2: addLike(input: {id: 1} ) {
....
}
}
Metadata
Metadata
Assignees
Labels
No labels