ticketWithMentionLimit.graphql 496 B

1234567891011121314151617181920212223242526272829
  1. query ticketWithMentionLimit(
  2. $ticketId: ID
  3. $ticketInternalId: Int
  4. $ticketNumber: String
  5. $mentionsCount: Int = null
  6. ) {
  7. ticket(
  8. ticket: {
  9. ticketId: $ticketId
  10. ticketInternalId: $ticketInternalId
  11. ticketNumber: $ticketNumber
  12. }
  13. ) {
  14. ...ticketAttributes
  15. createArticleType {
  16. id
  17. name
  18. }
  19. mentions(first: $mentionsCount) {
  20. totalCount
  21. edges {
  22. node {
  23. ...ticketMention
  24. }
  25. cursor
  26. }
  27. }
  28. }
  29. }