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