query GetComments($commentableId: String!, $commentableType: String!, $orderBy: String) { session { user { name avatarUrl } ...AddCommentFormSession } commentable(id: $commentableId, type: $commentableType) { acceptsNewComments commentsHaveAlignment commentsHaveVotes comments(orderBy: $orderBy) { id ...CommentThread } ...AddCommentFormCommentable } }