Skip to content

Instantly share code, notes, and snippets.

@lucasconstantino
Last active March 29, 2017 18:22
Show Gist options
  • Save lucasconstantino/ee542e670ed503398443b8a1c35b4346 to your computer and use it in GitHub Desktop.
Save lucasconstantino/ee542e670ed503398443b8a1c35b4346 to your computer and use it in GitHub Desktop.
import { graphql } from 'graphql'
import { schema } from './schema'
const query = '{ posts { id, title, body } }'
// Prints
// {
// data: { posts: [...] }
// }
graphql(schema, query).then(console.log)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment