OBJECT

Reaction

link GraphQL Schema definition

1type Reaction {
2
3# count of users that reacted with a particular Emote.
4count: Int!
5
6# The Emote associated with the Reaction.
7emote: Emote!
8
9# The authenticated user's relationship with this reaction.
10self: ReactionSelfConnection!
11
12}