Version 1.2.0
This release adds one new action:
callPath
Not every action can be expressed as an idempotent get
or set
operation. For those actions we need to take that are mutations we need to call remote functions. You can read more at the falcor docs here.
store.dispatch(
callPath('invites.send', '[email protected]', [['status','email']],[['length']])
);
Up next is implementing setValue
.