INPUT_OBJECT

InsightDeltaInput

Input specifying changes to a specific namespace of an entity

link GraphQL Schema definition

  • input InsightDeltaInput {
  • # Email address of new user assignee of an insight
  • assigneeEmailAddress: String
  • # Comment/Description. Any change by user needs an explanation. This can also be
  • # used to add comments of progress
  • comment: String
  • # Remove insight tags
  • dropTags: [String!]
  • # The observations to be added to insight
  • observationsToAdd: [ID!]
  • # The observations to be removed from an insight
  • observationsToRemove: [ID!]
  • # The new status of an insight
  • status: InsightStatus
  • # Insert or Update insight tags
  • upsertTags: [TagInput!]
  • }