OBJECT

SubCountSeries

Sub Count Series shows a user's sub counts broken down by type, tier, and date.

link GraphQL Schema definition

1type SubCountSeries {
2
3# The duration each datapoint spans (ex: Day).
4period: TimeSeriesPeriod!
5
6# The datapoints in the timeseries, ordered ascending order by timestamp.
7subCountSeriesDataPoints: [SubCountSeriesDataPoint!]!
8
9# The total number of subscriptions for the given time period (ex: 957).
10totalCount: Int!
11
12}