field renamed

This commit is contained in:
Wyatt Johnson
2018-05-23 16:18:22 -06:00
parent 975448ec69
commit f36b6e2cb6
5 changed files with 12 additions and 12 deletions
+4 -4
View File
@@ -20,17 +20,17 @@ type Reliability {
# `null` if the reliability cannot be determined.
flagger: Boolean
# flaggerScore will contains the number of agreed flags vs disagred flag
# flaggerKarma will contains the number of agreed flags vs disagred flag
# count.
flaggerScore: Int!
flaggerKarma: 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
# commenterKarma the number of approved comments (not untouched) subtracted by
# the number of rejected comments.
commenterScore: Int!
commenterKarma: Int!
}
################################################################################