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.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Fitness configuration this indicator belongs to.
  • entityFitness: EntityFitnessEntity
  • # Description of what the indicator measures, shown in the UI.
  • description: String!
  • # When true, description is treated as a translation key and localized in the UI.
  • descriptionUseLang: Boolean!
  • # Id of the fitness configuration.
  • entityFitnessId: ID!
  • # Suggested remediation text shown to the user when a record triggers this
  • # indicator.
  • howToFix: String!
  • # When true, how_to_fix is treated as a translation key and localized in the UI.
  • howToFixUseLang: Boolean!
  • # When false, the indicator is configured but not evaluated for records.
  • isEnabled: Boolean!
  • # Display name of the indicator.
  • name: String!
  • # When true, name is treated as a translation key and localized in the UI;
  • # otherwise the literal text is shown.
  • nameUseLang: Boolean!
  • # Indicator rules. For system indicators contains three thresholds (Notice,
  • # Warning, Error); for custom indicators contains user-defined filter rules.
  • settings: FitnessIndicatorSettings!
  • # Field whose values are strictly defined with an enumeration of values.
  • type: FitnessIndicatorTypeEnum!
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }