OBJECT

CreatorMetricsByIntervalItem

Creator metrics for the given time period.

link GraphQL Schema definition

1type CreatorMetricsByIntervalItem {
2
3# Ad breaks in seconds for the time period.
4adBreaksInSecondsString: String!
5
6# Ad seconds per hour for the time period.
7adSecondsPerHour: Float!
8
9# Average viewers for the time period.
10averageViewers: Float!
11
12# Clips views for the time period.
13clipViewsString: String!
14
15# Clips created for the time period.
16clipsCreatedString: String!
17
18# Number of follows for the time period.
19followsString: String!
20
21# Host raids percentage for the time period.
22hostRaidsPercentage: Float!
23
24# Live views for the time period.
25liveViewsString: String!
26
27# Max viewers for the time period.
28maxViewersString: String!
29
30# Time streamed (in minutes) for the time period.
31minutesStreamedString: String!
32
33# Minutes watched for the time period.
34minutesWatchedString: String!
35
36# New subscriptions for the time period.
37newSubscriptionsString: String!
38
39# Promotion clicks for the time period.
40promotionClickString: String!
41
42# Promotion displays for the time period.
43promotionDisplayString: String!
44
45# Starting timestamp for the time period.
46timestamp: Time!
47
48# Total chat messages for the time period.
49totalChatMessagesString: String!
50
51# Total chatters for the time period.
52totalChattersString: String!
53
54# Unique viewers for the time period.
55uniqueViewersString: String!
56
57}