Skip to content

Version 1.1.0

Compare
Choose a tag to compare
@ekosz ekosz released this 08 Oct 18:30
· 70 commits to master since this release

This release adds two new actions:

retrievePaths

If you need to get multiple paths from falcor at the same time you can now dispatch the retrievePaths action.

store.dispatch(retrievePaths('my["email"]', 'my["users"][0..3]["name"]'));

setPath

When you want to set a set path you can dispatch the setPath action.

store.dispatch(setPath('my["email"]', '[email protected]'));

Up next is implementing setValue and callPath.