OBJECT

ShortVideoReaction

An aggregated counter for the contained emote to display how many reactions to a ShortVideo there have been.

link GraphQL Schema definition

1type ShortVideoReaction {
2
3# The number of times this emote has been used to react to this video.
4count: Int!
5
6# The emote that was used to react.
7emote: Emote
8
9# The ID is the same as emote.ID.
10id: ID!
11
12}