Methods
module
.actions({
...
})
.methods(({ getActions }) => ({
complexMutation: () => {
getActions()...
getActions()...
}
}))Async functions
module.methods(({ getActions }) => ({
addAfter: async () => {
await ...
getActions()...
}
}))RxJS
Context related
Last updated