diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-01 21:57:12 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-01 21:57:12 +0200 |
commit | e5a6a71b78b0d8c5ef0d52c3eeb279d5738b9cf7 (patch) | |
tree | b61cfb5f121a6988aa811566c8cc04e4834c87b8 /graphql/schema.graphql | |
parent | 15f282421941b90e1f62912cf68b7556a8ce7b33 (diff) | |
download | git-bug-e5a6a71b78b0d8c5ef0d52c3eeb279d5738b9cf7.tar.gz |
graphql: implement the missing mutations
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! } |