12345678910111213141516171819202122 |
- subscription linkUpdates($objectId: ID!, $targetType: String!) {
- linkUpdates(objectId: $objectId, targetType: $targetType) {
- links {
- item {
- ... on Ticket {
- id
- internalId
- title
- state {
- id
- name
- }
- stateColorCode
- }
- ... on KnowledgeBaseAnswerTranslation {
- id
- }
- }
- type
- }
- }
- }
|