Commentable
No description
type Commentable {
id: UUID!
type: CommentableType!
comments(
parentCommentId: UUID
offset: Int! = 0
limit: Int! = 10
): CommentPaged!
commenters(
offset: Int! = 0
limit: Int! = 10
): UserPaged!
topComment: Comment
totalComments: Int!
}
Fields
Commentable.id ● UUID! non-null scalar
Commentable.type ● CommentableType! non-null enum
Commentable.comments ● CommentPaged! non-null object
Commentable.comments.parentCommentId ● UUID scalar
Commentable.comments.offset ● Int! non-null scalar
Commentable.comments.limit ● Int! non-null scalar
Commentable.commenters ● UserPaged! non-null object
Commentable.commenters.offset ● Int! non-null scalar
Commentable.commenters.limit ● Int! non-null scalar
Commentable.topComment ● Comment object
Commentable.totalComments ● Int! non-null scalar
Returned By
commentable query