1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- query ticketsByOverview(
- $overviewId: ID!
- $orderBy: String
- $orderDirection: EnumOrderDirection
- $cursor: String
- $showPriority: Boolean!
- $showUpdatedBy: Boolean!
- $pageSize: Int = 10
- $withObjectAttributes: Boolean = false
- ) {
- ticketsByOverview(
- overviewId: $overviewId
- orderBy: $orderBy
- orderDirection: $orderDirection
- after: $cursor
- first: $pageSize
- ) {
- totalCount
- edges {
- node {
- id
- internalId
- number
- title
- createdAt
- updatedAt
- updatedBy @include(if: $showUpdatedBy) {
- id
- fullname
- }
- customer {
- id
- firstname
- lastname
- fullname
- }
- organization {
- id
- name
- }
- state {
- id
- name
- stateType {
- id
- name
- }
- }
- group {
- id
- name
- }
- priority @include(if: $showPriority) {
- id
- name
- uiColor
- defaultCreate
- }
- objectAttributeValues @include(if: $withObjectAttributes) {
- ...objectAttributeValues
- }
- stateColorCode
- }
- cursor
- }
- pageInfo {
- endCursor
- hasNextPage
- }
- }
- }
|