OBJECT

TimeseriesItem

Single item of stats for the time series.

link GraphQL Schema definition

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