OBJECT
TimeseriesStats
Stats within a time frame broken down by granularity. This is used for per channel stats, per team stats use "CreatorTimeseriesMetrics".
link GraphQL Schema definition
1 type TimeseriesStats { 2 3 # Seconds of ads played per time chunk. 4 : [TimeseriesItem!] 5 6 # Ad time (in seconds) per hour per time chunk. 7 : [TimeseriesItem!] 8 9 # Average number of viewers per time chunk. 10 : [TimeseriesItem!] 11 12 # Number of chat messages per time chunk. 13 : [TimeseriesItem!] 14 15 # Number of clip views per time chunk. 16 : [TimeseriesItem!] 17 18 # Number of clips created per time chunk. 19 : [TimeseriesItem!] 20 21 # Number of follows during this timestamp. 22 : [TimeseriesItem!] 23 24 # Granularity of the time series, default unit is five minutes. 25 : Granularity! 26 27 # Host/Raid viewers per time chunk. 28 : [TimeseriesItem!] 29 30 # Deprecated: List of the number of follows within a time period, broken up by 31 # granularity. 32 : [TimeseriesItem!] @deprecated( reason: "Use specific metric from user.timeseriesStats instead." ) 33 34 # Live number of views per time chunk. 35 : [TimeseriesItem!] 36 37 # Max viewers per time chunk. 38 : [TimeseriesItem!] 39 40 # Minutes watched per time chunk. 41 : [TimeseriesItem!] 42 43 # Number of subscriptions per time chunk. 44 : [TimeseriesItem!] 45 46 # Promotion clicks for the time period. 47 : [TimeseriesItem!] 48 49 # Promotion displays for the time period. 50 : [TimeseriesItem!] 51 52 # Time streamed per time chunk. 53 : [TimeseriesItem!] 54 55 # Number of people chatting per time chunk. 56 : [TimeseriesItem!] 57 58 # Number of unique people watching per time chunk. 59 : [TimeseriesItem!] 60 61 }