mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 23:34:14 +08:00
14 lines
208 B
GraphQL
14 lines
208 B
GraphQL
#import "../fragments/commentView.graphql"
|
|
|
|
query commentQuery($id: ID!) {
|
|
comment(id: $id) {
|
|
...commentView
|
|
parent {
|
|
...commentView
|
|
replies {
|
|
...commentView
|
|
}
|
|
}
|
|
}
|
|
}
|