OBJECT
EntityHealthEntity
link GraphQL Schema definition
- type EntityHealthEntity {
- # Tells if the entity instance is protected against delete (Entities that need to
- # be present in the system at any time). Delete action still may fail if entity is
- # deletable, due some other additional validations.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Account type this health configuration applies to.
- : AccountTypeEntity
- # Field whose values are strictly defined with an enumeration of values.
- : BaseEntityTypeEnum!
- # When false, health is configured but not evaluated for records of this type.
- : Boolean!
- # Timestamp of the last full health recalculation across all matching records.
- : DateTime
- # Id of the account type.
- : ID!
- # Revision when entity was lastly changed.
- : Int
- # Health configuration: indicator filter definitions for healthy and
- # critical-health states. Stored as a versioned JSON document; updates create a
- # new history entry.
- : EntityHealthSettings!
- # Progress of the in-flight health recalculation as a percentage (0-100). Null
- # when no recalculation has been queued.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }