Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. mutation {
  2. register(email:"rick@example.com", password:"password123"){
  3. id
  4. email
  5. }
  6. }
  7. mutation {
  8. addChat(userId:"", chatName:"") {
  9. id
  10. }
  11. }
  12. mutation {
  13. addMessage(chatId: "", userId:"" message:"") {
  14. id
  15. message
  16. }
  17. }
  18. query {
  19. getMessages(id: ""){
  20. id
  21. message
  22. }
  23. }
  24.  
  25.  
  26. query {
  27. getUser(id:"") {
  28. id
  29. chats {
  30. id
  31. name
  32. }
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement