server side

This commit is contained in:
Wyatt Johnson
2018-05-17 11:38:00 -06:00
parent 6444e8c2ab
commit 887f7e17f4
5 changed files with 27 additions and 5 deletions
+8
View File
@@ -20,9 +20,17 @@ type Reliability {
# `null` if the reliability cannot be determined.
flagger: Boolean
# flaggerScore will contains the number of agreed flags vs disagred flag
# count.
flaggerScore: Int!
# Commenter will be `true` when the commenter is reliable, `false` if not, or
# `null` if the reliability cannot be determined.
commenter: Boolean
# commenterScore the number of approved comments (not untouched) subtracted by
# the number of rejected comments.
commenterScore: Int!
}
################################################################################