aboutsummaryrefslogtreecommitdiffstats
path: root/api/graphql/schema
diff options
context:
space:
mode:
authorSascha <GlancingMind@outlook.com>2021-05-05 17:18:31 +0200
committerSascha <GlancingMind@outlook.com>2021-05-20 17:03:19 +0200
commit4043f5da0965bca1ffc717c1ceca265ec8b9ae17 (patch)
treefe28abae16a509e4b92b3bd063df6a9200660123 /api/graphql/schema
parent13d9632fb888dde9962e122ef06614ca9e9da83d (diff)
downloadgit-bug-4043f5da0965bca1ffc717c1ceca265ec8b9ae17.tar.gz
GraphQL: Add AddCommandAndCloseBug mutation
Diffstat (limited to 'api/graphql/schema')
-rw-r--r--api/graphql/schema/mutations.graphql40
-rw-r--r--api/graphql/schema/root.graphql2
2 files changed, 34 insertions, 8 deletions
diff --git a/api/graphql/schema/mutations.graphql b/api/graphql/schema/mutations.graphql
index d7adde1e..36222e6b 100644
--- a/api/graphql/schema/mutations.graphql
+++ b/api/graphql/schema/mutations.graphql
@@ -1,7 +1,7 @@
input NewBugInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
- """"The name of the repository. If not set, the default repository is used."""
+ """The name of the repository. If not set, the default repository is used."""
repoRef: String
"""The title of the new bug."""
title: String!
@@ -23,11 +23,11 @@ type NewBugPayload {
input AddCommentInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
- """"The name of the repository. If not set, the default repository is used."""
+ """The name of the repository. If not set, the default repository is used."""
repoRef: String
"""The bug ID's prefix."""
prefix: String!
- """The first message of the new bug."""
+ """The message to be added to the bug."""
message: String!
"""The collection of file's hash required for the first message."""
files: [Hash!]
@@ -42,10 +42,34 @@ type AddCommentPayload {
operation: AddCommentOperation!
}
+input AddCommentAndCloseBugInput {
+ """A unique identifier for the client performing the mutation."""
+ clientMutationId: String
+ """The name of the repository. If not set, the default repository is used."""
+ repoRef: String
+ """The bug ID's prefix."""
+ prefix: String!
+ """The message to be added to the bug."""
+ message: String!
+ """The collection of file's hash required for the first message."""
+ files: [Hash!]
+}
+
+type AddCommentAndCloseBugPayload {
+ """A unique identifier for the client performing the mutation."""
+ clientMutationId: String
+ """The affected bug."""
+ bug: Bug!
+ """The resulting AddComment operation."""
+ commentOperation: AddCommentOperation!
+ """The resulting SetStatusOperation."""
+ statusOperation: SetStatusOperation!
+}
+
input EditCommentInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
- """"The name of the repository. If not set, the default repository is used."""
+ """The name of the repository. If not set, the default repository is used."""
repoRef: String
"""The bug ID's prefix."""
prefix: String!
@@ -69,7 +93,7 @@ type EditCommentPayload {
input ChangeLabelInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
- """"The name of the repository. If not set, the default repository is used."""
+ """The name of the repository. If not set, the default repository is used."""
repoRef: String
"""The bug ID's prefix."""
prefix: String!
@@ -108,7 +132,7 @@ type ChangeLabelPayload {
input OpenBugInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
- """"The name of the repository. If not set, the default repository is used."""
+ """The name of the repository. If not set, the default repository is used."""
repoRef: String
"""The bug ID's prefix."""
prefix: String!
@@ -126,7 +150,7 @@ type OpenBugPayload {
input CloseBugInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
- """"The name of the repository. If not set, the default repository is used."""
+ """The name of the repository. If not set, the default repository is used."""
repoRef: String
"""The bug ID's prefix."""
prefix: String!
@@ -144,7 +168,7 @@ type CloseBugPayload {
input SetTitleInput {
"""A unique identifier for the client performing the mutation."""
clientMutationId: String
- """"The name of the repository. If not set, the default repository is used."""
+ """The name of the repository. If not set, the default repository is used."""
repoRef: String
"""The bug ID's prefix."""
prefix: String!
diff --git a/api/graphql/schema/root.graphql b/api/graphql/schema/root.graphql
index 884fd98d..4b4e0e2f 100644
--- a/api/graphql/schema/root.graphql
+++ b/api/graphql/schema/root.graphql
@@ -8,6 +8,8 @@ type Mutation {
newBug(input: NewBugInput!): NewBugPayload!
"""Add a new comment to a bug"""
addComment(input: AddCommentInput!): AddCommentPayload!
+ """Add a new comment to a bug and close it"""
+ addCommentAndClose(input: AddCommentAndCloseBugInput!): AddCommentAndCloseBugPayload!
"""Change a comment of a bug"""
editComment(input: EditCommentInput!): EditCommentPayload!
"""Add or remove a set of label on a bug"""