FE for the Staff Tag. Modifed typedfs graphql.

This commit is contained in:
gaba
2017-02-10 10:20:34 -08:00
parent 10937cf717
commit 71fcf9cd3f
4 changed files with 14 additions and 13 deletions
+4 -6
View File
@@ -27,6 +27,9 @@ input CommentsQuery {
# limit the number of results to be returned.
limit: Int = 10
# filter by a specific tag name.
tag: [String]
# skip results from the last created_at timestamp.
cursor: Date
@@ -65,7 +68,7 @@ type User {
type Tag {
# the actual tag for the comment.
name: COMMENT_TAG
name: String!
# the user that assigned the tag. If NULL then the system automatically tagged it.
assigned_by: String
@@ -179,11 +182,6 @@ type Asset {
created_at: Date
}
enum COMMENT_TAG {
# For the comments submitted by staff members (ADMIN or MODERATOR users).
STAFF
}
enum COMMENT_STATUS {
ACCEPTED
REJECTED