Files
talk/client/coral-framework/graphql/queries/getCounts.graphql
T
2017-02-08 08:59:38 -08:00

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
}
}
}