CreateDeployInput
Autogenerated input type of CreateDeploy
input CreateDeployInput {
assetId: ID!
diffContent: Upload!
previousCommit: String!
currentCommit: String!
previousTag: String
currentTag: String
branchName: String
clientMutationId: String
}
Fields
CreateDeployInput.assetId
● ID!
non-null scalar
Asset that the deploy could belongs to.
CreateDeployInput.diffContent
● Upload!
non-null scalar
The uploaded file containing the .git folder content.
CreateDeployInput.previousCommit
● String!
non-null scalar
The commit hash representing the previous state in the version control system.
CreateDeployInput.currentCommit
● String!
non-null scalar
The commit hash representing the current state in the version control system.
CreateDeployInput.previousTag
● String
scalar
The tag name for the previous release or version, if applicable.
CreateDeployInput.currentTag
● String
scalar
The tag name for the current release or version, if applicable.
CreateDeployInput.branchName
● String
scalar
The name of the branch associated with the current deploy.
CreateDeployInput.clientMutationId
● String
scalar
A unique identifier for the client performing the mutation.
Member Of
createDeploy
mutation