OBJECT

CreatorTimeseriesMetric

List of timestamp, value metric pairs and total for that metric.

link GraphQL Schema definition

1type CreatorTimeseriesMetric {
2
3# CreatorTimeseries data (timestamp, value) associated with this metric.
4items: [CreatorTimeseriesItem!]
5
6# Total (sum) of all CreatorTimeseriesMetrics values.
7total: Int!
8
9}