mirror of
https://github.com/wassname/talk.git
synced 2026-07-03 14:37:11 +08:00
19 lines
263 B
GraphQL
19 lines
263 B
GraphQL
#import "../fragments/actionSummaryView.graphql"
|
|
|
|
fragment commentView on Comment {
|
|
id
|
|
body
|
|
created_at
|
|
status
|
|
tags {
|
|
name
|
|
}
|
|
user {
|
|
id
|
|
name: username
|
|
}
|
|
action_summaries {
|
|
...actionSummaryView
|
|
}
|
|
}
|