mirror of
https://github.com/wassname/talk.git
synced 2026-07-08 04:19:15 +08:00
29 lines
581 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
}
|