1234567891011121314151617181920212223242526272829 |
- query ticketWithMentionLimit(
- $ticketId: ID
- $ticketInternalId: Int
- $ticketNumber: String
- $mentionsCount: Int = null
- ) {
- ticket(
- ticket: {
- ticketId: $ticketId
- ticketInternalId: $ticketInternalId
- ticketNumber: $ticketNumber
- }
- ) {
- ...ticketAttributes
- createArticleType {
- id
- name
- }
- mentions(first: $mentionsCount) {
- totalCount
- edges {
- node {
- ...ticketMention
- }
- cursor
- }
- }
- }
- }
|