OBJECT

DailyTaskMetrics

link GraphQL Schema definition

1type DailyTaskMetrics {
2
3# The date when the tasks run
4date: String!
5
6# The number of tasks created in this date
7taskCount: Int!
8
9# The storage in bytes used by these tasks
10storageBytes: Int!
11
12# The media length in seconds associated with these tasks
13mediaSecs: Int!
14
15}