Created
January 26, 2019 00:03
-
-
Save scottdomes/62083c67ccbba10df1ab8d84f10899e3 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 graphql from 'babel-plugin-relay/macro'; | |
export const GET_CONTACTS = graphql` | |
query queryQuery { | |
viewer { | |
id | |
allContacts(first: 1000) @connection(key: "Main_allContacts") { | |
edges { | |
node { | |
id | |
name | |
} | |
} | |
} | |
} | |
} | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment