diff options
Diffstat (limited to 'graphql/schema.graphql')
-rw-r--r-- | graphql/schema.graphql | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/graphql/schema.graphql b/graphql/schema.graphql index b481d2d7..52623301 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -166,8 +166,6 @@ type Bug { type Repository { allBugs(input: ConnectionInput!): BugConnection! bug(prefix: String!): Bug - - mutation: RepositoryMutation! } type Query { @@ -175,7 +173,6 @@ type Query { repository(id: String!): Repository } - -type RepositoryMutation { - newBug(title: String!, message: String!): Bug! +type Mutation { + newBug(repoRef: String, title: String!, message: String!): Bug! } |