OBJECT
CompetitionTeam
A Team is scheduled or has competed in a Competition.
link GraphQL Schema definition
1 type CompetitionTeam { 2 3 # The captain of the team is a Competition Player. 4 : CompetitionPlayer 5 6 # CompetitionID we are a part of. 7 : ID! 8 9 # Unique ID for competition team. 10 : ID! 11 12 # Indicates whether the team is disqualified. 13 : Boolean! 14 15 # The members of the team are Competition Players. 16 : [CompetitionPlayer!] 17 18 # The name of the competition team. 19 : String! 20 21 # The relationship between the authenticated user and the competition team. 22 : CompetitionTeamSelfEdge 23 24 # The total score for the competition team. 25 : Int! 26 27 }
link Required by
- CompetitionParticipantA CompetitionParticipant is either a CompetitionPlayer who is playing solo or a CompetitionTeam who plays as a team.
- CompetitionPlayerA player is solo participant in a Competition.
- CompetitionTeamEdgeContains information about a Team relationship to a given page (connection), and the Team themselves.