OBJECT

MetricDataPointType

A data point for a metric

link GraphQL Schema definition

  • type MetricDataPointType {
  • # The time the data point was created
  • created_at: String!
  • # The entry id of the data point
  • entry_id: String
  • # The value of the data point
  • flex_value: String
  • # The value of the data point
  • value: Float @deprecated( reason: "Use flex value, which supports both string and number values" )
  • }