INPUT_OBJECT

UpdateUserTeamMembershipInput

Inputs to the updateUserTeamMembership mutation.

link GraphQL Schema definition

1input UpdateUserTeamMembershipInput {
8
2# Whether or not the team should be the user's primary team.
3# Note only True values are effective here. A user must always have one and only
4# one primary team, and setting false would break that invariant.
5# Setting a team as Primary will make all of a user's other team memberships
6# non-primary.
7primary: Boolean
11
9# Whether or not the membership should reveal its revenue.
10revenueRevealed: Boolean!
14
12# Whether or not the membership should reveal its stats.
13statsRevealed: Boolean!
17
15# The team which the membership belongs to.
16teamID: ID!
20
18# The user whose membership is being modified.
19userID: ID!
21}