Skip to content

Instantly share code, notes, and snippets.

@sericaia
Last active January 29, 2019 10:09
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 sericaia/61a10c96a88c054f41fd1cf104158216 to your computer and use it in GitHub Desktop.
Save sericaia/61a10c96a88c054f41fd1cf104158216 to your computer and use it in GitHub Desktop.
// resolver code
employee: async (root, { email, slackId }, { dataSources }) => {
// at least one of the parameters is required
if (!email && !slackId) {
throw new Error('Email or SlackId are required.');
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment