ThreadCommentVariables is an interface representing the variables for the ThreadCommentQuery. It includes optional parameters for querying thread comment data.

interface ThreadCommentVariables {
    asHtml?: boolean;
    id?: number;
    sort?: ThreadSort[];
    threadId?: number;
    userId?: number;
}

Properties

asHtml?: boolean

asHtml is a boolean indicating whether to return the result as HTML.

id?: number

id is a number representing the id of the thread comment.

sort?: ThreadSort[]

sort is an array of strings representing the sort order of the thread comment.

threadId?: number

threadId is a number representing the id of the thread.

userId?: number

userId is a number representing the id of the user.