mirror of
https://github.com/wassname/talk.git
synced 2026-08-07 11:29:44 +08:00
23 lines
318 B
GraphQL
23 lines
318 B
GraphQL
#import "../fragments/actionSummaryView.graphql"
|
|
|
|
fragment commentView on Comment {
|
|
id
|
|
body
|
|
created_at
|
|
status
|
|
tags {
|
|
id
|
|
}
|
|
user {
|
|
id
|
|
name: username
|
|
}
|
|
action_summaries {
|
|
...actionSummaryView
|
|
}
|
|
editing {
|
|
edited
|
|
editableUntil
|
|
}
|
|
}
|