DeploymentLeaf
A deployment returned in list results.
type DeploymentLeaf {
id: ID!
status: DeploymentStatus!
action: DeploymentAction!
version: String!
message: String
createdAt: DateTime!
updatedAt: DateTime!
lastTransitionedAt: DateTime
elapsedTime: Int!
deployedBy: String
package: PackageLeaf
}
Fields
DeploymentLeaf.id ● ID! non-null scalar {#id}
DeploymentLeaf.status ● DeploymentStatus! non-null enum {#status}
Current state of the deployment
DeploymentLeaf.action ● DeploymentAction! non-null enum {#action}
Type of operation
DeploymentLeaf.version ● String! non-null scalar {#version}
Bundle version being deployed
DeploymentLeaf.message ● String scalar {#message}
Deployment message or commit info
DeploymentLeaf.createdAt ● DateTime! non-null scalar {#created-at}
When this deployment started (UTC)
DeploymentLeaf.updatedAt ● DateTime! non-null scalar {#updated-at}
When this deployment was last updated (UTC)
DeploymentLeaf.lastTransitionedAt ● DateTime scalar {#last-transitioned-at}
When the status last changed (UTC)
DeploymentLeaf.elapsedTime ● Int! non-null scalar {#elapsed-time}
How long the deployment has been running, in seconds.
DeploymentLeaf.deployedBy ● String scalar {#deployed-by}
Who started this deployment.
DeploymentLeaf.package ● PackageLeaf object {#package}
The package being deployed.
Member Of
DeploymentsPage object