ENUM

CompetitionParticipantType

The participant type signifies whether the competition will be played as team or solo.

link GraphQL Schema definition

1enum CompetitionParticipantType {
2
3# Participants are represented as a team.
4TEAM
5
6# Participant is represented as solo.
7SOLO
8
9# Unknown participant type.
10UNKNOWN
11}