modQueue Query

This commit is contained in:
Belen Curcio
2017-02-03 16:05:27 -03:00
parent 03c240054a
commit 8664a16bfc
@@ -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
}
}