OBJECT

CompetitionTeam

A Team is scheduled or has competed in a Competition.

link GraphQL Schema definition

1type CompetitionTeam {
2
3# The captain of the team is a Competition Player.
4captain: CompetitionPlayer
5
6# CompetitionID we are a part of.
7competitionID: ID!
8
9# Unique ID for competition team.
10id: ID!
11
12# Indicates whether the team is disqualified.
13isDisqualified: Boolean!
14
15# The members of the team are Competition Players.
16members: [CompetitionPlayer!]
17
18# The name of the competition team.
19name: String!
20
21# The relationship between the authenticated user and the competition team.
22self: CompetitionTeamSelfEdge
23
24# The total score for the competition team.
25totalScore: Int!
26
27}