OBJECT

StatForecast

Forecast data for this times-eries

link GraphQL Schema definition

  • type StatForecast {
  • # Forecast data
  • data: [Float!]
  • # Confidence lower band
  • lower: [Float!]
  • # Predicted timestamp when requested threshold is reached (in milliseconds since
  • # epoch)
  • # It is not set if threshold is already reached before forecastStartTime, and it
  • # is -1 if threshold
  • # cannot be determined (e.g., a trend line could not be determined).
  • predictedThresholdReachedTimestampMillis: Long
  • # Forecast timestamps in milliseconds since epoch
  • timestampsMillis: [Long!]
  • # Confidence upper band
  • upper: [Float!]
  • }