12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- 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 {
- name
- }
- }
- group {
- id
- name
- }
- priority @include(if: $showPriority) {
- id
- name
- uiColor
- defaultCreate
- }
- objectAttributeValues @include(if: $withObjectAttributes) {
- ...objectAttributeValues
- }
- stateColorCode
- }
- cursor
- }
- pageInfo {
- endCursor
- hasNextPage
- }
- }
- }
|