OBJECT
SubCountSeries
Sub Count Series shows a user's sub counts broken down by type, tier, and date.
link GraphQL Schema definition
1 type SubCountSeries { 2 3 # The duration each datapoint spans (ex: Day). 4 : TimeSeriesPeriod! 5 6 # The datapoints in the timeseries, ordered ascending order by timestamp. 7 : [SubCountSeriesDataPoint!]! 8 9 # The total number of subscriptions for the given time period (ex: 957). 10 : Int! 11 12 }