OBJECT
EntityFitnessIndicatorEntity
link GraphQL Schema definition
- type EntityFitnessIndicatorEntity {
- # 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
- # Fitness configuration this indicator belongs to.
- : EntityFitnessEntity
- # Description of what the indicator measures, shown in the UI.
- : String!
- # When true, description is treated as a translation key and localized in the UI.
- : Boolean!
- # Id of the fitness configuration.
- : ID!
- # Suggested remediation text shown to the user when a record triggers this
- # indicator.
- : String!
- # When true, how_to_fix is treated as a translation key and localized in the UI.
- : Boolean!
- # When false, the indicator is configured but not evaluated for records.
- : Boolean!
- # Display name of the indicator.
- : String!
- # When true, name is treated as a translation key and localized in the UI;
- # otherwise the literal text is shown.
- : Boolean!
- # Indicator rules. For system indicators contains three thresholds (Notice,
- # Warning, Error); for custom indicators contains user-defined filter rules.
- : FitnessIndicatorSettings!
- # Field whose values are strictly defined with an enumeration of values.
- : FitnessIndicatorTypeEnum!
- # Revision when entity was lastly changed.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }