Skip to content

allDhrcScores

DHRC scores for the requested categories and time span.

Arguments

Argument Type Description
categories [DhrcCategory!] Optional list of categories to filter on.
beginTime DateTime Optional start of timespan to filter on.
timespan DhrcScoreTimespan Optional timespan to filter on.

Returns

[DhrcScore!]!

Sample

query {
  allDhrcScores {
    calculatedAt
    category
    date
    earliestMetric
    value
  }
}
{}
{
  "data": {
    "allDhrcScores": [
      {
        "calculatedAt": "2024-01-01T00:00:00.000Z",
        "category": "ANOMALIES_DETECTED",
        "date": "2024-01-01T00:00:00.000Z",
        "earliestMetric": "2024-01-01T00:00:00.000Z",
        "value": 0.0,
        "context": {}
      }
    ]
  }
}