Skip to content

MetricDataPointType

A data point for a metric

Fields

created_at · String! · required · The time the data point was created
entry_id · String · The entry id of the data point
flex_value · String · The value of the data point
value · Float · The value of the data point
deprecated Use flex value, which supports both string and number values

Used By

Definition

"""
A data point for a metric
"""
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"
)
}