Skip to content

Instantly share code, notes, and snippets.

@jamesplease
Created May 2, 2018 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesplease/3048fff5e2f08fc626a740da53aa3360 to your computer and use it in GitHub Desktop.
Save jamesplease/3048fff5e2f08fc626a740da53aa3360 to your computer and use it in GitHub Desktop.
getResources('books', {
filter: {
firstName: 'javi'
}
});
getResources('books', {
filter: resource => resource.meta.isSelected
});
getResources('books', {
firstName: 'javi'
});
getResources('books', resource => resource.meta.isSelected);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment