Last active
December 30, 2018 17:33
-
-
Save tomodutch/6e3c8b8d2cd39876e55665f36d8e0343 to your computer and use it in GitHub Desktop.
queries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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