OBJECT

UserTeamMembership

UserTeamMembership represents a User's membership to a Twitch Team. UserTeamMemberships are collections of teams that the User is a part of.

link GraphQL Schema definition

1type UserTeamMembership {
2
3# Whether the team is the primary team for the given User.
4isPrimary: Boolean!
5
6# Whether the team is revenue revealed for the given User.
7isRevenueRevealed: Boolean!
8
9# Whether the team is stats revealed for the given User.
10isStatsRevealed: Boolean!
11
12# The Team the user is a member of.
13team: Team!
14
15}