OBJECT

Reaction

An emoji reaction to a particular piece of content.

link GraphQL Schema definition

  • type Reaction implements Node {
  • # Identifies the emoji reaction.
  • content: ReactionContent!
  • # Identifies the date and time when the object was created.
  • createdAt: DateTime!
  • # Identifies the primary key from the database.
  • databaseId: Int @deprecated( reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs." )
  • id: ID!
  • # Identifies the user who created this reaction.
  • user: User!
  • }