aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/models
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-02-12 22:02:11 +0100
committerMichael Muré <batolettre@gmail.com>2020-02-12 22:02:11 +0100
commit0c17d248ee1536aa02ab5beb0c935607421a6b8d (patch)
tree523e39e06f5e52cf75f7518e37567f5acb20dfd2 /graphql/models
parent929480fa0a7fa40ba14850aed17158a20cdf6391 (diff)
downloadgit-bug-0c17d248ee1536aa02ab5beb0c935607421a6b8d.tar.gz
graphql: server side take responsability to commit
Diffstat (limited to 'graphql/models')
-rw-r--r--graphql/models/gen_models.go32
1 files changed, 0 insertions, 32 deletions
diff --git a/graphql/models/gen_models.go b/graphql/models/gen_models.go
index b3e14655..cbece6fe 100644
--- a/graphql/models/gen_models.go
+++ b/graphql/models/gen_models.go
@@ -111,38 +111,6 @@ type CommentEdge struct {
Node *bug.Comment `json:"node"`
}
-type CommitAsNeededInput struct {
- // A unique identifier for the client performing the mutation.
- ClientMutationID *string `json:"clientMutationId"`
- // "The name of the repository. If not set, the default repository is used.
- RepoRef *string `json:"repoRef"`
- // The bug ID's prefix.
- Prefix string `json:"prefix"`
-}
-
-type CommitAsNeededPayload struct {
- // A unique identifier for the client performing the mutation.
- ClientMutationID *string `json:"clientMutationId"`
- // The affected bug.
- Bug BugWrapper `json:"bug"`
-}
-
-type CommitInput struct {
- // A unique identifier for the client performing the mutation.
- ClientMutationID *string `json:"clientMutationId"`
- // "The name of the repository. If not set, the default repository is used.
- RepoRef *string `json:"repoRef"`
- // The bug ID's prefix.
- Prefix string `json:"prefix"`
-}
-
-type CommitPayload struct {
- // A unique identifier for the client performing the mutation.
- ClientMutationID *string `json:"clientMutationId"`
- // The affected bug.
- Bug BugWrapper `json:"bug"`
-}
-
type IdentityConnection struct {
Edges []*IdentityEdge `json:"edges"`
Nodes []IdentityWrapper `json:"nodes"`