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
For example, something like this won't work correctly:
mutation {
createAuthor(firstName: "John", lastName: "Smith") {
...authorDetails
}
fragment authorDetails on Author {
firstName
lastName
}
}
because the mutate method within QueryManager works with the mutation OperationDefinition rather than the Document containing the mutation. Should be an easy fix - see PR #251 since that's pretty much the same thing but for queries.
The text was updated successfully, but these errors were encountered:
For example, something like this won't work correctly:
because the
mutate
method withinQueryManager
works with the mutationOperationDefinition
rather than theDocument
containing the mutation. Should be an easy fix - see PR #251 since that's pretty much the same thing but for queries.The text was updated successfully, but these errors were encountered: