Skip to content

Instantly share code, notes, and snippets.

@lucasconstantino
Created March 29, 2017 18:22
Show Gist options
  • Save lucasconstantino/aaadc41a32944128339d4100a34dfe1b to your computer and use it in GitHub Desktop.
Save lucasconstantino/aaadc41a32944128339d4100a34dfe1b to your computer and use it in GitHub Desktop.
import { graphql } from 'graphql'
import { schema } from './schema'
const query = '{ helloWorld }'
graphql(schema, query).then(result => {
// Prints
// {
// data: { helloWorld: "Hello!" }
// }
console.log(result)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment