diff options
author | Michael Muré <batolettre@gmail.com> | 2019-06-16 21:40:45 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-06-16 21:40:45 +0200 |
commit | bc03a89aa76cad37daf8cd4efdea463a9569c519 (patch) | |
tree | de48b53cefb9006bfa5029a7da512a6abc21885b /graphql/schema | |
parent | b2f8572c4493205535558fb9320689aaf4774dc1 (diff) | |
download | git-bug-bc03a89aa76cad37daf8cd4efdea463a9569c519.tar.gz |
fix tests
Diffstat (limited to 'graphql/schema')
-rw-r--r-- | graphql/schema/root.graphql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphql/schema/root.graphql b/graphql/schema/root.graphql index 3b497d95..4a89c825 100644 --- a/graphql/schema/root.graphql +++ b/graphql/schema/root.graphql @@ -6,7 +6,7 @@ type Query { } type Mutation { - """create a new bug""" + """Create a new bug""" newBug(input: NewBugInput!): NewBugPayload! """Add a new comment to a bug""" addComment(input: AddCommentInput!): AddCommentPayload! |