INPUT_OBJECT

UpdateLobbyParticipantScoreInput

Inputs for updating the score for the lobby participant, who is a competition player or competition team, in a competition.

link GraphQL Schema definition

1input UpdateLobbyParticipantScoreInput {
4
2# ID of the competition.
3competitionID: ID!
7
5# ID of the competition lobby.
6lobbyID: ID!
10
8# ID of the competition player or competition team.
9participantID: ID!
13
11# ID of the competition phase.
12phaseID: ID!
16
14# The assigned score value.
15score: Int!
17}