From e6b2ff19b8435cdc8e133cdf4e9ef1f81992dcc9 Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Fri, 12 May 2017 07:51:53 -0600 Subject: [PATCH] fixing graph merge error --- graph/typeDefs.graphql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/graph/typeDefs.graphql b/graph/typeDefs.graphql index e69a39f23..a8d13e80c 100644 --- a/graph/typeDefs.graphql +++ b/graph/typeDefs.graphql @@ -104,12 +104,12 @@ type TagLink { # The underlying Tag that is either duplicated from the global list or created # uniquely for this specific model. tag: Tag! - + # The user that assigned the tag. This TagLink could have been created by the # system, in which case this will be null. It could also be null if the # current user is not an Admin/Moderator. assigned_by: User - + # The date that the TagLink was created. created_at: Date! } @@ -767,7 +767,7 @@ input ModifyTagInput { # Response to the addTag or removeTag mutations. type ModifyTagResponse implements Response { - + # An array of errors relating to the mutation that occured. errors: [UserError!] } @@ -798,7 +798,7 @@ type CommentInfoAfterEdit { type EditCommentResponse implements Response { comment: CommentInfoAfterEdit! # An array of errors relating to the mutation that occured. - errors: [UserError] + errors: [UserError!] } # All mutations for the application are defined on this object.