OBJECT

DeploymentStatus

Describes the status of a given deployment attempt.

link GraphQL Schema definition

  • type DeploymentStatus implements Node {
  • # Identifies the user who triggered the deployment.
  • creator: User!
  • # Identifies the deployment associated with status.
  • deployment: Deployment!
  • # Identifies the description of the deployment.
  • description: String
  • # Identifies the environment url of the deployment.
  • environmentUrl: String
  • id: ID!
  • # Identifies the log url of the deployment.
  • logUrl: String
  • # Identifies the current state of the deployment.
  • state: DeploymentState!
  • }