Files
talk/client/coral-framework/graphql/fragments/commentView.graphql
T
2017-02-09 12:23:40 -08:00

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
}
}
}