Skip to content

Instantly share code, notes, and snippets.

@smpnjn
Created April 21, 2021 20:43
Show Gist options
  • Save smpnjn/41aaa2186520ff3d2a82fd5292c48465 to your computer and use it in GitHub Desktop.
Save smpnjn/41aaa2186520ff3d2a82fd5292c48465 to your computer and use it in GitHub Desktop.
let schema = buildSchema(`
type Query {
title(firstName: String, lastName: String): String
// ...
}
`);
let root = {
title: ({firstName, lastName}) => { return firstName + ' ' + lastName }
// ...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment