OBJECT

PostReaction

link GraphQL Schema definition

  • type PostReaction implements Node {
  • id: ID!
  • # The time that the user reacted to the post.
  • reactedAt: Time!
  • # The text value of the reaction.
  • value: String!
  • userID: ID!
  • postID: ID!
  • # The user that created the reaction.
  • user: User!
  • # The post that the user reacted to.
  • post: Post!
  • }

link Require by