mirror of
https://github.com/wassname/talk.git
synced 2026-07-25 13:30:59 +08:00
modQueue Query
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
query ModQueue {
|
||||
flagged_comments: comments(query: {
|
||||
action_type: FLAG,
|
||||
asset_id: $asset_id
|
||||
}) {
|
||||
id
|
||||
}
|
||||
accepted_comments: comments(query: {
|
||||
statuses: [ACCEPTED],
|
||||
asset_id: $asset_id
|
||||
}) {
|
||||
id
|
||||
}
|
||||
rejected_comments: comments(query: {
|
||||
statuses: [REJECTED],
|
||||
asset_id: $asset_id
|
||||
}) {
|
||||
id
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user