ctx.runAction inside docs
I was reading the docs and I came across
ctx.runAction
, this is not correct right?
I thought that you could only call an action from something like a mutation with:

1 Reply
Hey! Yes you are correct, if you are in a mutation then you can only call an action using the scheduler but if you are already in an action you have this
runAction
function on the context you can use.
But as the docs suggest, you really only shoud use that to navigate the two runtimes so probably a rare case