Files
talk/client/coral-framework/graphql/queries/streamQuery.graphql
T
2017-01-27 15:52:05 -07:00

29 lines
581 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 {
...commentView
replies {
...commentView
}
}
}
}