Last active
November 14, 2019 17:30
-
-
Save JosiasSena/72d3ae1c485db995e14b840e2242eb0f to your computer and use it in GitHub Desktop.
Gists for https://medium.com/@josiassena/graphql-websocket-subscriptions-on-android-using-apollo-7e7311afdfca
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
subscription onNewMessagesReceived($groupUUID: String!) { | |
groupChatSubscription(group: $groupUUID) { | |
... on Message { | |
uuid | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment