mirror of
https://github.com/wassname/talk.git
synced 2026-08-01 13:00:55 +08:00
22 lines
300 B
GraphQL
22 lines
300 B
GraphQL
fragment commentView on Comment {
|
|
id
|
|
body
|
|
created_at
|
|
status
|
|
tags {
|
|
name
|
|
}
|
|
user {
|
|
id
|
|
name: displayName
|
|
}
|
|
actions {
|
|
type: action_type
|
|
count
|
|
current: current_user {
|
|
id
|
|
created_at
|
|
}
|
|
}
|
|
}
|