Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@SaraVieira
Created June 26, 2018 17:58
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 SaraVieira/57eed0f302be9f48c07a86750d8734f6 to your computer and use it in GitHub Desktop.
Save SaraVieira/57eed0f302be9f48c07a86750d8734f6 to your computer and use it in GitHub Desktop.
const resolvers = {
Query: {
movies: () => movies,
movie: (_, { id }) => movies.find(movie => movie.id === id)
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment