Skip to content

Instantly share code, notes, and snippets.

@dabit3
Last active October 20, 2016 06:44
Show Gist options
  • Save dabit3/740dd10f7069ee87a74d0d6f3d1ac76a to your computer and use it in GitHub Desktop.
Save dabit3/740dd10f7069ee87a74d0d6f3d1ac76a to your computer and use it in GitHub Desktop.
Apollo Tutorial - Resolver
const resolveFunctions = {
RootQuery: {
president(_, { name }, ctx) {
const president = new ctx.constructor.President();
return president.findPresident(name);
},
},
};
module.exports = resolveFunctions;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment