Skip to content

Instantly share code, notes, and snippets.

@kabece
Created October 3, 2021 07:29
Show Gist options
  • Save kabece/450e75e0a93324c86478e68c9a43944d to your computer and use it in GitHub Desktop.
Save kabece/450e75e0a93324c86478e68c9a43944d to your computer and use it in GitHub Desktop.
type Message {
id: ID!
text: String
}
type ChatRoom {
id: ID!
name: String
messagesConnection: # this is what we're going to implement
}
type Query {
chatRoom(id: ID!): ChatRoom!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment