Files
talk/client/coral-framework/graphql/queries/streamQuery.graphql
T
2017-02-09 17:56:28 -08:00

29 lines
602 B
GraphQL

#import "../fragments/commentView.graphql"
query AssetQuery($asset_url: String!) {
asset(url: $asset_url) {
id
title
url
closedAt
created_at
settings {
moderation
infoBoxEnable
infoBoxContent
closeTimeout
closedMessage
charCountEnable
charCount
requireEmailConfirmation
}
commentCount
comments(limit: 10) {
...commentView
replies(limit: 3) {
...commentView
}
}
}
}