ENUM

UpdateEmoteOrdersErrorCode

The expected errors that can be returned from the UpdateEmoteOrders mutation.

link GraphQL Schema definition

1enum UpdateEmoteOrdersErrorCode {
2
3# The user is not permitted to update the orders of the requested emotes or group.
4UNAUTHORIZED
5
6# No emote was found with the requested emote ID.
7BAD_EMOTE_REQUEST
8
9# No group was found with the requested group ID.
10BAD_GROUP_REQUEST
11
12# The orders provided result in an invalid set of orders in a particular group.
13BAD_NON_UNIQUE_ORDERS_REQUEST
14
15# An unexpected error occurred.
16UNKNOWN_ERROR
17}