mirror of
https://github.com/wassname/talk.git
synced 2026-08-08 11:28:12 +08:00
19 lines
272 B
GraphQL
19 lines
272 B
GraphQL
fragment commentView on Comment {
|
|
id
|
|
body
|
|
created_at
|
|
status
|
|
user {
|
|
id
|
|
name: displayName
|
|
}
|
|
actions {
|
|
type: action_type
|
|
count
|
|
current: current_user {
|
|
id
|
|
created_at
|
|
}
|
|
}
|
|
}
|