linkUpdates.graphql 425 B

12345678910111213141516171819202122
  1. subscription linkUpdates($objectId: ID!, $targetType: String!) {
  2. linkUpdates(objectId: $objectId, targetType: $targetType) {
  3. links {
  4. item {
  5. ... on Ticket {
  6. id
  7. internalId
  8. title
  9. state {
  10. id
  11. name
  12. }
  13. stateColorCode
  14. }
  15. ... on KnowledgeBaseAnswerTranslation {
  16. id
  17. }
  18. }
  19. type
  20. }
  21. }
  22. }