OBJECT

Comment

A comment of an entry

link GraphQL Schema definition

  • type Comment {
  • # User who created comment
  • author: User
  • # The content of this comment
  • content: String
  • # The date on which the comment was posted
  • created_at: String!
  • # User who created comment
  • creator: User
  • # Pagination cursor
  • cursor: Cursor!
  • # The id of the entry associated with the comment
  • entry_id: String
  • # The unique identifier of the comment
  • id: ID!
  • # Indicates when posting an emoji reaction
  • is_reaction: Boolean!
  • # User who created comment
  • poster: User
  • # the owner of the comment
  • user_id: ID!
  • }