OBJECT
DocumentComment
A DocumentComment representing a comment left on a Document.
link GraphQL Schema definition
- type DocumentComment implements Node {
- # A globally unique identifier. Can be used in various places throughout the
- # system to identify this single value.
- : ID!
- : UUID!
- : UUID!
- : UUID!
- : JSON!
- : CreatedTime!
- # Reads a single `Document` that is related to this `DocumentComment`.
- : Document!
- # Reads a single `User` that is related to this `DocumentComment`.
- : User!
- # Reads and enables pagination through a set of `DocumentCommentLike`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `DocumentCommentLike`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentCommentLikesOrderBy!],
- : DocumentCommentLikeCondition
- ): DocumentCommentLikesConnection!
- # Reads and enables pagination through a set of `DocumentCommentSeen`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `DocumentCommentSeen`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentCommentSeensOrderBy!],
- : DocumentCommentSeenCondition
- ): DocumentCommentSeensConnection!
- # Reads and enables pagination through a set of `DocumentCommentMessagePart`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor
- ): DocumentCommentMessagePartsConnection!
- : String!
- }
link Require by
- CreateDocumentCommentPayloadThe output of our `createDocumentComment` mutation.
- DeleteDocumentCommentPayloadThe output of our `deleteDocumentComment` mutation.
- DocumentCommentLikeA `DocumentCommentSeen` representing all users that have liked a `DocumentComment`.
- DocumentCommentsConnectionA connection to a list of `DocumentComment` values.
- DocumentCommentsEdgeA `DocumentComment` edge in the connection.
- DocumentCommentSeenA `DocumentCommentSeen` representing all users that have seen/viewed a `DocumentComment`.
- QueryThe root query type which gives access points into the data universe.