Skip to content

Instantly share code, notes, and snippets.

@derekbrown
Created May 24, 2020 00:17
Show Gist options
  • Save derekbrown/1320e75eb2109fb28318321067f8329e to your computer and use it in GitHub Desktop.
Save derekbrown/1320e75eb2109fb28318321067f8329e to your computer and use it in GitHub Desktop.
Sample GQL Document
query fetchMessages($chatId: ID!) {
fetchMessages(chatId: $chatId) {
countAfter
countBefore
messages {
type
messageId
chatId
userId
user {
userId
username
profilePictureUrl
firstName
lastName
email
phone
token
birthday
location
points
url
}
content {
text
media {
url
type
}
mentions {
type
content
startIndex
endIndex
}
}
insertedAt
updatedAt
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment