INPUT_OBJECT

UpdateEntityHealthInput

link GraphQL Schema definition

  • input UpdateEntityHealthInput {
  • # Optional client-supplied identifier passed on a mutation input and echoed back
  • # unchanged on its payload, so a client can correlate the response with its
  • # request (Relay convention).
  • clientMutationId: String
  • # Unique identifier of entity.
  • id: ID!
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # When false, health is configured but not evaluated for records of this type.
  • isEnabled: Boolean
  • # Timestamp of the last full health recalculation across all matching records.
  • lastRecalculation: DateTime
  • # Id of the account type.
  • typeId: ID
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Health configuration: indicator filter definitions for healthy and
  • # critical-health states. Stored as a versioned JSON document; updates create a
  • # new history entry.
  • settings: EntityHealthSettingsJSONString
  • }

link Require by