1234567891011121314151617181920212223242526 |
- mutation linkAdd($input: LinkInput!) {
- linkAdd(input: $input) {
- link {
- type
- item {
- ... on Ticket {
- id
- internalId
- title
- state {
- id
- name
- }
- stateColorCode
- }
- ... on KnowledgeBaseAnswerTranslation {
- id
- }
- }
- }
- errors {
- message
- field
- }
- }
- }
|