Skip to content

Instantly share code, notes, and snippets.

@callmephilip
Created July 20, 2016 18:06
Show Gist options
  • Select an option

  • Save callmephilip/466df8278f6082fb4af9759acefd56a0 to your computer and use it in GitHub Desktop.

Select an option

Save callmephilip/466df8278f6082fb4af9759acefd56a0 to your computer and use it in GitHub Desktop.
const RootQuery = {
type: new GraphQLList(TodoSchemaType),
resolve: (_, { text }, { Query, user }) => {
const query = new Query(Todo);
return query.find();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment