Skip to content

Instantly share code, notes, and snippets.

@nsantos16
Created May 15, 2020 17:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nsantos16/99d85d896256be0006f3d55cab8c5595 to your computer and use it in GitHub Desktop.
Save nsantos16/99d85d896256be0006f3d55cab8c5595 to your computer and use it in GitHub Desktop.
React query API demo
// An individual movie
useQuery(['movies', 5], ...);
// A list of movies that are "released"
useQuery(['movies', { type: 'released' }], ...);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment