Created
January 26, 2019 00:03
-
-
Save scottdomes/8a759a3eb82d878d4fa7e784a6e34123 to your computer and use it in GitHub Desktop.
This file contains 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 GET_CONTACTS = gql` | |
query contacts { | |
viewer { | |
allContacts { | |
edges { | |
node { | |
name | |
id | |
} | |
} | |
} | |
} | |
} | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment