Skip to content

Instantly share code, notes, and snippets.

@ksaldana1
Created March 13, 2020 01:26
Show Gist options
  • Save ksaldana1/49687160a569abe6fcf52bd5e192c8e4 to your computer and use it in GitHub Desktop.
Save ksaldana1/49687160a569abe6fcf52bd5e192c8e4 to your computer and use it in GitHub Desktop.
gql_query_3
query AppQuery {
messages {
id
text
author {
__typename
... on User {
id
name
role
}
... on Guest {
placeholder
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment