Created
March 13, 2020 01:26
-
-
Save ksaldana1/49687160a569abe6fcf52bd5e192c8e4 to your computer and use it in GitHub Desktop.
gql_query_3
This file contains hidden or 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
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