Skip to content

Version 1.2.1

Compare
Choose a tag to compare
@ekosz ekosz released this 14 Oct 18:45
· 59 commits to master since this release

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.