commentReplies.graphql
1 # last updated 2024/11/27 2 3 fragment CommentFields on Comment { 4 author { 5 avatar 6 channelId 7 name 8 permalink 9 __typename 10 } 11 id 12 createdAt 13 hasChildren 14 isDeleted 15 isEdited 16 message 17 parentCommentId 18 __typename 19 } 20 21 query Replies($page: Int!, $parentCommentId: Int!, $perPage: Int) { 22 commentReplies(parentCommentId: $parentCommentId, page: $page, perPage: $perPage) { 23 comments { 24 ...CommentFields 25 __typename 26 } 27 meta { 28 page 29 perPage 30 totalPages 31 __typename 32 } 33 __typename 34 } 35 }