OBJECT
Team
Team represents a Twitch Team. Teams are collections of streaming channels, and are owned by a Twitch user. Teams have landing pages, e.g. https://www.twitch.tv/team/clg.
link GraphQL Schema definition
1 type Team { 2 3 # ID to an image meant to be the background of the Team's landing page. 4 : ID 5 6 # URL to an image meant to be the background of the Team's landing page. 7 : String 8 9 # ID to the Team's banner image. 10 : ID 11 12 # URL to the Team's banner image. 13 : String 14 15 # Retrieves team stats within the start and end time broken down by granularity. 16 # Default end time will be the current time (now). 17 # Granularity defaults to 5 minutes. 18 # ChannelIDs defaults to all team members. 19 ( 20 : Time!, 21 : Time, 22 : String!, 23 : Granularity, 24 : [ID!] 25 ): CreatorTimeseriesMetrics 26 27 # Information about the team, formatted in Markdown. 28 : String 29 30 # Display version of the team name. 31 : String! 32 33 # The Team's ID. 34 : ID! 35 36 # Channels that the Team owner have opted to highlight that are currently live. 37 # These channels may or may not also be members of the Team. 38 # They will be returned in the order configured by the Team admin. 39 (: Int, : Cursor): UserConnection 40 41 # Users that belong to the team that are currently live. 42 # They will be returned in the order configured by the Team admin. 43 (: Int, : Cursor): UserConnection 44 45 # ID to the Team's logo image. 46 : ID 47 48 # URL to the Team's logo image. 49 : String 50 51 # The list of users that belong to this team. 52 # They will be returned in the order configured by the Team admin. 53 # metricsRevealed allows the client to return all `none`, `statsRevealed`, or 54 # `revenueRevealed` members. 55 # Defaults to all members to avoid breaking changes. 56 ( 57 : Int, 58 : Cursor, 59 : MemberMetricsRevealedParams 60 ): UserConnection 61 62 # The alphanumeric Twitch name of the team. 63 : String! 64 65 # Owner is the User that owns and manages the Team. 66 : User 67 68 # Aggregated analytics for several video referral sources, for use in teams 69 # dashboard. 70 # ChannelIDs defaults to all team members. 71 ( 72 : Time!, 73 : Time!, 74 : ReferralsFilter, 75 : ReferralsDimension!, 76 : Int, 77 : [ID!] 78 ): VideoPlayReferrals 79 80 }