Skip to content

Instantly share code, notes, and snippets.

@hurali97
Last active July 20, 2019 13:20
Show Gist options
  • Save hurali97/1ca981e8276861e3c7f9d919ced0227a to your computer and use it in GitHub Desktop.
Save hurali97/1ca981e8276861e3c7f9d919ced0227a to your computer and use it in GitHub Desktop.
Resolvers
const names = require('./mockdata');
const resolvers = {
Query: {
getnames: () => {
return names;
}
}
}
module.exports = resolvers;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment