-
Notifications
You must be signed in to change notification settings - Fork 184
Run multiple mutations in one request #119
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
Comments
You can put multiple operations in a single mutation, there is no need to specify an operation_name. |
The problem is that currently, if any field from the mutation fails, then an exception is still raised. Other mutations may have succeeded, and a (The same applies to Queries, it's not specific to mutations.) A solution may be to include |
That is a good idea! |
@gyscos is this PR ok for you ? |
Looks good to me, thanks! |
This is now possible in version 3.0.0a2 |
Hi,
how do you run multiple mutations in one request?
I've found the option to pass an operation_name into execute, but that only executes that one operation.
The text was updated successfully, but these errors were encountered: