OBJECT

DocumentCommentLike

A DocumentCommentSeen representing all users that have liked a DocumentComment.

link GraphQL Schema definition

  • type DocumentCommentLike implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • documentCommentRowId: UUID!
  • likedBy: UUID!
  • createdAt: CreatedTime!
  • # Reads a single `DocumentComment` that is related to this `DocumentCommentLike`.
  • documentCommentByDocumentCommentRowId: DocumentComment!
  • # Reads a single `User` that is related to this `DocumentCommentLike`.
  • userByLikedBy: User!
  • }