INPUT_OBJECT

CreateOrganizationInviteInput

Inputs to the CreateOrganizationInvite mutation.

link GraphQL Schema definition

1input CreateOrganizationInviteInput {
4
2# The Twitch ID of user being invited to join the organization.
3inviteeTwitchID: ID!
8
5# The Twitch ID of user being doing the inviting and is already a member of the
6# organization.
7inviterTwitchID: ID!
11
9# The ID of the organization.
10organizationID: ID!
14
12# The Role a Invite has in an organization.
13role: OrganizationMemberRole!
15}