Skip to content

Instantly share code, notes, and snippets.

@tomodutch
Last active December 30, 2018 17:33
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 tomodutch/6e3c8b8d2cd39876e55665f36d8e0343 to your computer and use it in GitHub Desktop.
Save tomodutch/6e3c8b8d2cd39876e55665f36d8e0343 to your computer and use it in GitHub Desktop.
queries
import gql from "graphql-tag";
export const getTodosQuery = gql`
query GetTodos($count: Int) {
allTodos(count: $count) {
id
title
completed
}
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment