ENUM

DeleteSquadStreamInvitationErrorCode

Possible errors that this mutation returns.

link GraphQL Schema definition

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