ENUM

UpdateSquadStreamErrorCode

UpdateSquadStreamErrorCode are the possible errors that this mutation returns.

link GraphQL Schema definition

1enum UpdateSquadStreamErrorCode {
2
3# The squad is not found.
4SQUAD_NOT_FOUND
5
6# The squad cannot be updated (e.g. squad is not in pending status).
7SQUAD_CANNOT_BE_UPDATED
8
9# The squad has too few members to be updated to live.
10SQUAD_TOO_FEW_MEMBERS
11
12# The user is not authorized to update the squad.
13UNAUTHORIZED
14}