INPUT_OBJECT
UpdateUserTeamMembershipInput
Inputs to the updateUserTeamMembership mutation.
link GraphQL Schema definition
1 input 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. 7 : Boolean 11 9 # Whether or not the membership should reveal its revenue. 10 : Boolean! 14 12 # Whether or not the membership should reveal its stats. 13 : Boolean! 17 15 # The team which the membership belongs to. 16 : ID! 20 18 # The user whose membership is being modified. 19 : ID! 21 }