mirror of
https://github.com/wassname/talk.git
synced 2026-07-09 23:28:05 +08:00
22 lines
317 B
GraphQL
22 lines
317 B
GraphQL
fragment commentView on Comment {
|
|
id
|
|
body
|
|
created_at
|
|
status
|
|
user {
|
|
id
|
|
name: displayName
|
|
settings {
|
|
bio
|
|
}
|
|
}
|
|
actions {
|
|
type: action_type
|
|
count
|
|
current: current_user {
|
|
id
|
|
created_at
|
|
}
|
|
}
|
|
}
|