OBJECT

CommentLike

link GraphQL Schema definition

  • type CommentLike implements Node {
  • id: ID!
  • # The time that the user liked the comment.
  • likedAt: Time!
  • userID: ID!
  • commentID: ID!
  • # The user that created this like.
  • user: User!
  • # The comment that the user liked.
  • comment: Comment!
  • }