Skip to content

Instantly share code, notes, and snippets.

@dlbnco
Last active September 11, 2018 21:19
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 dlbnco/e7ad55e8b86874a7d95b177fdb790651 to your computer and use it in GitHub Desktop.
Save dlbnco/e7ad55e8b86874a7d95b177fdb790651 to your computer and use it in GitHub Desktop.
import gql from 'graphql-tag';
const GET_CANDY = gql`
query candy (
$name: String
) {
candy (
name: $name
) {
id
name
effects
}
}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment