Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. type Message {
  2. id: Int!
  3. chatId: Int!
  4. content: String!
  5. }
  6.  
  7. type Query {
  8. readMessageById(id: Int!): Message!
  9. }
  10.  
  11. type Mutation {
  12. writeMessageToChat(chatId: Int!, content: String!): Message
  13. }
  14.  
  15. type Subscription {
  16. readMessageFromChat(chatId: Int!): Message!
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement