ENUM

CelebrationErrorCode

Vote in celebration error code.

link GraphQL Schema definition

1enum CelebrationErrorCode {
2
3# Attempted to preform operation on celebration that does not exist.
4CELEBRATION_NOT_FOUND
5
6# A celebration with that same event type and threshold already exists.
7CELEBRATION_ALREADY_EXISTS
8
9# Requesting user does not have permission.
10PERMISSION_DENIED
11
12# The user has reached the limit (20) of celebrations they can have.
13OVER_CELEBRATION_LIMIT
14
15# An unknown error occurred.
16UNKNOWN
17}