ENUM

CreateRaidErrorCode

CreateRaidErrorCode are the possible errors that this mutation returns.

link GraphQL Schema definition

1enum CreateRaidErrorCode {
2
3# The user is already raiding another channel.
4ALREADY_RAIDING
5
6# The user tries to raid themselves.
7CANNOT_RAID_YOURSELF
8
9# The user tries to raid an unraidable channel.
10CANNOT_RAID_THIS_CHANNEL
11
12# The request is missing valid channel parameters.
13INVALID_CHANNEL
14
15# The user tries to raid with too many viewers.
16TOO_MANY_VIEWERS_TO_RAID
17}