ticketUpdates.graphql 280 B

12345678910111213141516
  1. subscription ticketUpdates($ticketId: ID!) {
  2. ticketUpdates(ticketId: $ticketId) {
  3. ticket {
  4. ...ticketAttributes
  5. mentions {
  6. totalCount
  7. edges {
  8. node {
  9. ...ticketMention
  10. }
  11. cursor
  12. }
  13. }
  14. }
  15. }
  16. }