OBJECT
TimeseriesItem
Single item of stats for the time series.
link GraphQL Schema definition
1 type TimeseriesItem { 2 3 # Deprecated: Number of follows during this timestamp. 4 : Int @deprecated( reason: "Use user.timeseriesStats.follows instead." ) 5 6 # Streamed duration (in minutes). 7 : Int! 8 9 # Timestamp of the broken down time series. 10 : Time! 11 12 # Value at the timestamp. 13 : Float! 14 15 }