aboutsummaryrefslogtreecommitdiffstats
path: root/graphql
diff options
context:
space:
mode:
Diffstat (limited to 'graphql')
-rw-r--r--graphql/graph/gen_graph.go2
-rw-r--r--graphql/schema/root.graphql2
2 files changed, 2 insertions, 2 deletions
diff --git a/graphql/graph/gen_graph.go b/graphql/graph/gen_graph.go
index e788b2a2..36dc9735 100644
--- a/graphql/graph/gen_graph.go
+++ b/graphql/graph/gen_graph.go
@@ -2286,7 +2286,7 @@ type Repository {
}
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!
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!