ENUM

AcceptSquadStreamInvitationErrorCode

Possible errors from this mutation.

link GraphQL Schema definition

1enum AcceptSquadStreamInvitationErrorCode {
2
3# Invitation to be accepted does not exist.
4INVITATION_NOT_FOUND
5
6# Squad associated with the invitation does not exist.
7SQUAD_NOT_FOUND
8
9# User does not have permissions to accept invitation.
10UNAUTHORIZED
11
12# Invitation not in pending state cannot be accepted.
13INVITATION_CANNOT_BE_ACCEPTED
14
15# The recipient does not have access to squad streams.
16USER_CANNOT_ACCESS_SQUADS
17}