Skip to main content

ModerationQueue

ModerationQueue returns the Comments associated with a Moderation Queue.

type ModerationQueue {  id: ID!  count: Int  comments(    first: Int = 10    after: Cursor    orderBy: COMMENT_SORT = "CREATED_AT_DESC"  ): CommentsConnection!}

Fields#

id (ID!)#

id is a canonical identifier for this specific moderation queue.

count (Int)#

count will return the number of Comments that are in this queue.

comments (CommentsConnection!)#

comments are the comments on the ModerationQueue.