OBJECT

DhrcActiveRecommendation

Description

Recommendation represents a single textual recommendation how to increase the score for a specific category. Recommendations are derived from a set of metrics.

link GraphQL Schema definition

  • type DhrcActiveRecommendation {
  • # The key uniquely identifies the type of the recommendation. One use-case is
  • # for translation of the recommendation message.
  • key: DhrcRecommendationKey!
  • # The category that the recommendation belong to.
  • category: DhrcCategory!
  • # The time that the recommendation was compiled from the set of metrics.
  • compiledAt: DateTime
  • # The earliest (oldest) metric used to compile the recommendation.
  • earliestMetric: DateTime
  • # The weight of the issue this recommendation aims to resolve. Heavier means
  • # the issue is more severe.
  • weight: Float!
  • # The textual recommendation compiled by the service, always in English.
  • message: String!
  • # The translation arguments of the recommendation. Stored as key/value pairs.
  • translationArgs: [DhrcKeyValue!]!
  • }

link Require by