Version 1.2.1
This fixes a bug where the documentation was lying. Currently the documentation in the README
has this example:
store.dispatch(retrieveValue('usersById[35]["email"]').then((email) => {
console.log(email); // [email protected]
});
But before this that wouldn't work as the value of email
was the boolean true
. Now we return the result of the falcor promise.