INPUT_OBJECT

AddCompetitionTeamInput

Inputs adding a competition team to a competition.

link GraphQL Schema definition

1input AddCompetitionTeamInput {
4
2# ID of the competition team captain.
3captainID: ID
7
5# ID of the competition.
6competitionID: ID!
10
8# The user ids of the team members.
9members: [ID!]
13
11# The name of the team.
12name: String!
14}