mirror of
https://github.com/wassname/talk.git
synced 2026-08-09 12:30:42 +08:00
16 lines
238 B
GraphQL
16 lines
238 B
GraphQL
#import "../fragments/actionSummaryView.graphql"
|
|
|
|
fragment commentView on Comment {
|
|
id
|
|
body
|
|
created_at
|
|
status
|
|
user {
|
|
id
|
|
name: displayName
|
|
}
|
|
action_summaries {
|
|
...actionSummaryView
|
|
}
|
|
}
|