INPUT_OBJECT

EmoteOrder

The new order for the specified emote in a particular emote group.

link GraphQL Schema definition

1input EmoteOrder {
4
2# The ID of this emote.
3emoteID: ID!
10
5# The ID of the group we are setting this emote's order in. When emotes can exist
6# in multiple groups they may have different
7# order values in each group (as the other emotes in each group will be different)
8# so we must specify which group we are operating on.
9groupID: ID!
13
11# The new order value for this emote.
12order: Int!
14}