mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 07:05:41 +08:00
11 lines
207 B
GraphQL
11 lines
207 B
GraphQL
query LoadCommentCounts($asset_id: ID, $limit: Int = 5, $sort: SORT_ORDER) {
|
|
asset(id: $asset_id) {
|
|
id
|
|
commentCount
|
|
comments(sort: $sort, limit: $limit) {
|
|
id
|
|
replyCount
|
|
}
|
|
}
|
|
}
|