adds new mutations: setCommentStatus

This commit is contained in:
Belen Curcio
2017-02-13 14:32:48 -03:00
parent 90ed1f1056
commit e2ebac7176
13 changed files with 101 additions and 15 deletions
+4 -1
View File
@@ -491,8 +491,11 @@ type RootMutation {
# Delete an action based on the action id.
deleteAction(id: ID!): DeleteActionResponse
# Sets user status
# Sets User status
setUserStatus(id: ID!, status: USER_STATUS!): Boolean
# Sets Comment status
setCommentStatus(id: ID!, status: COMMENT_STATUS!): Boolean
}
################################################################################