TeamPlayer
Represents a player in a tournament team.
type TeamPlayer {
playerId: Int
captain: Boolean
amateur: Boolean
firstName: String
lastName: String
displayName: String
code: String
}
Fields
TeamPlayer.playerId
● Int
scalar
Player ID.
TeamPlayer.captain
● Boolean
scalar
Indicates if the player is the captain of the team.
TeamPlayer.amateur
● Boolean
scalar
Indicates if the player is an amateur.
TeamPlayer.firstName
● String
scalar
The first name of the player.
TeamPlayer.lastName
● String
scalar
The last name of the player.
TeamPlayer.displayName
● String
scalar
The display name of the player.
TeamPlayer.code
● String
scalar
The code associated with the player.
Member of
TournamentTeam
object