|
def then(klass, **kwargs) |
Is this code susceptible to override before immutable data? Example:
# data = { name: 'Rynaro' }
MyFlow.call!(params).then(MyChainedFlow, { name: 'Neo Rynaro' })
Should Results#data be overridden by new flow args? In case of it. Should we let the previous result data be prevalent, and avoid any override action, or raise an error?