Version 1.1.0
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
.