kstulgys
kstulgys3mo ago

Is runMutation transactional?

await ctx.runMutation(internal.foo.create, {
foo: "xyz"
});
await ctx.runMutation(internal.bar.create, {
bar: "zyx"
});
await ctx.runMutation(internal.foo.create, {
foo: "xyz"
});
await ctx.runMutation(internal.bar.create, {
bar: "zyx"
});
will internal.bar.create be executed if internal.foo.create fails?
4 Replies
Convex Bot
Convex Bot3mo ago
Thanks for posting in <#1088161997662724167>. Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets. - Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.) - Use search.convex.dev to search Docs, Stack, and Discord all at once. - Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI. - Avoid tagging staff unless specifically instructed. Thank you!
erquhart
erquhart3mo ago
If the first throws, the second won't execute
kstulgys
kstulgysOP3mo ago
I assume runAction is the same?
jamwt
jamwt3mo ago
these are inside an action?

Did you find this page helpful?