Skip to content

Version 1.2.0

Compare
Choose a tag to compare
@ekosz ekosz released this 13 Oct 21:46
· 62 commits to master since this release

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.