Skip to content

A time series with metadata

graphql
type Series {
  key: String!
  label: String
  points: [SeriesPoint!]!
}

Fields

Series.key ● String! non-null scalar

Unique identifier for this series (e.g., store ID, product SKU)

Series.label ● String scalar

Human-readable label for this series (e.g., store name)

Series.points ● [SeriesPoint!]! non-null object

Data points in chronological order

Member Of

SeriesResult object