ticketUpdates.graphql 573 B

123456789101112131415161718192021222324252627282930
  1. subscription ticketUpdates($ticketId: ID!, $initial: Boolean = false) {
  2. ticketUpdates(ticketId: $ticketId, initial: $initial) {
  3. ticket {
  4. ...ticketAttributes
  5. createArticleType {
  6. id
  7. name
  8. }
  9. mentions(first: 20) {
  10. totalCount
  11. edges {
  12. node {
  13. ...ticketMention
  14. }
  15. cursor
  16. }
  17. }
  18. checklist {
  19. id
  20. completed
  21. incomplete
  22. total
  23. complete
  24. }
  25. referencingChecklistTickets {
  26. ...referencingTicket
  27. }
  28. }
  29. }
  30. }