linkAdd.graphql 408 B

1234567891011121314151617181920212223242526
  1. mutation linkAdd($input: LinkInput!) {
  2. linkAdd(input: $input) {
  3. link {
  4. type
  5. item {
  6. ... on Ticket {
  7. id
  8. internalId
  9. title
  10. state {
  11. id
  12. name
  13. }
  14. stateColorCode
  15. }
  16. ... on KnowledgeBaseAnswerTranslation {
  17. id
  18. }
  19. }
  20. }
  21. errors {
  22. message
  23. field
  24. }
  25. }
  26. }