Skip to content

Instantly share code, notes, and snippets.

@crucialfelix
Created September 5, 2017 11:14
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 crucialfelix/4b5edb84319374289f9103ace3d1cc33 to your computer and use it in GitHub Desktop.
Save crucialfelix/4b5edb84319374289f9103ace3d1cc33 to your computer and use it in GitHub Desktop.
#import './Message.graphql'
query Messages($threadKey: String!) {
viewer {
id
messages(threadKey: $threadKey) {
edges {
node {
id
...Message
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment