diff options
Diffstat (limited to 'graphql/schema.graphql')
-rw-r--r-- | graphql/schema.graphql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/graphql/schema.graphql b/graphql/schema.graphql index 3a8cf02f..970166cb 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -183,4 +183,12 @@ type Query { type Mutation { newBug(repoRef: String, title: String!, message: String!): Bug! + + addComment(repoRef: String, prefix: String!, message: String!): Bug! + changeLabels(repoRef: String, prefix: String!, added: [String!], removed: [String!]): Bug! + open(repoRef: String, prefix: String!): Bug! + close(repoRef: String, prefix: String!): Bug! + setTitle(repoRef: String, prefix: String!, title: String!): Bug! + + commit(repoRef: String, prefix: String!): Bug! } |