mirror of
https://github.com/wassname/talk.git
synced 2026-07-07 13:06:29 +08:00
27 lines
396 B
GraphQL
27 lines
396 B
GraphQL
query Users ($action_type: ACTION_TYPE) {
|
|
users (query:{action_type: $action_type}){
|
|
id
|
|
username
|
|
status
|
|
roles
|
|
actions{
|
|
id
|
|
created_at
|
|
... on FlagAction {
|
|
reason
|
|
message
|
|
user {
|
|
id
|
|
username
|
|
}
|
|
}
|
|
}
|
|
action_summaries {
|
|
count
|
|
... on FlagActionSummary {
|
|
reason
|
|
}
|
|
}
|
|
}
|
|
}
|