Adding DontAgreeActionSummaries

This commit is contained in:
David Jay
2017-02-17 11:14:42 -05:00
parent e4e7ff27d2
commit d10936749d
+13
View File
@@ -307,6 +307,19 @@ type FlagActionSummary implements ActionSummary {
current_user: FlagAction
}
# Summary for Don't Agree Action with a a unique reason.
type DontAgreeActionSummary implements ActionSummary {
# The total count of flags with this reason.
count: Int!
# The reason for which the Flag Action was created.
reason: String
# The don't agree action by the current user against the parent entity with this reason.
current_user: DontAgreeAction
}
################################################################################
## Settings
################################################################################