OBJECT

DocumentCommentSeen

A DocumentCommentSeen representing all users that have seen/viewed a DocumentComment.

link GraphQL Schema definition

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