aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/schema/mutations.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'graphql/schema/mutations.graphql')
-rw-r--r--graphql/schema/mutations.graphql32
1 files changed, 0 insertions, 32 deletions
diff --git a/graphql/schema/mutations.graphql b/graphql/schema/mutations.graphql
index 3eeeae6a..e6b70faf 100644
--- a/graphql/schema/mutations.graphql
+++ b/graphql/schema/mutations.graphql
@@ -136,35 +136,3 @@ type SetTitlePayload {
"""The resulting operation"""
operation: SetTitleOperation!
}
-
-input CommitInput {
- """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!
-}
-
-type CommitPayload {
- """A unique identifier for the client performing the mutation."""
- clientMutationId: String
- """The affected bug."""
- bug: Bug!
-}
-
-input CommitAsNeededInput {
- """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!
-}
-
-type CommitAsNeededPayload {
- """A unique identifier for the client performing the mutation."""
- clientMutationId: String
- """The affected bug."""
- bug: Bug!
-}