ENUM

RejectSquadStreamInvitationErrorCode

Possible errors from this mutation.

link GraphQL Schema definition

1enum RejectSquadStreamInvitationErrorCode {
2
3# Invitation to be rejected 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 reject invitation.
10UNAUTHORIZED
11
12# Invitation not in pending state cannot be rejected.
13INVITATION_CANNOT_BE_REJECTED
14}