INPUT_OBJECT

CreatePartnershipApplicationInput

CreatePartnershipApplication accepts a userID and other parameters to create the partnership application of a given user. The required input for a createPartnershipApplicationInput mutation.

link GraphQL Schema definition

1input CreatePartnershipApplicationInput {
5
2# Broadcast category (selected by the applicant).
3# eg: gaming, creative.
4category: String!
9
6# Country from where the applicant belongs (selected by the applicant).
7# eg: US, NZ, UK.
8country: String!
12
10# Description why the applicant wants to be a partner.
11description: String!
15
13# First and last name of the applicant.
14fullName: String!
18
16# Broadcast language (selected by the applicant).
17language: String!
19}