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/773bd09fe10e94883259c7d3e818ced5 to your computer and use it in GitHub Desktop.
Save SaraVieira/773bd09fe10e94883259c7d3e818ced5 to your computer and use it in GitHub Desktop.
const { ApolloServer, gql } = require('apollo-server');
const randomId = require("random-id");
const movies = [
{
id: randomId(10),
title: 'Sharknado',
year: 2013,
},
{
id: randomId(10),
title: 'Troll 2',
year: 1990,
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment