INPUT_OBJECT

BuildRunStepInput

link GraphQL Schema definition

  • input BuildRunStepInput {
  • # Build run id the build step pertains to
  • buildRunId: ID!
  • # Finish time of the build step
  • finishedAt: DateTime
  • # Url to download the logs associated to this step
  • logs: String
  • # Name of the build step
  • name: String!
  • # Project id the build run step pertains to
  • projectId: String!
  • # Sequence of the steps
  • sequence: Int!
  • # Start time of the build step
  • startedAt: DateTime
  • # Current known state of the build step
  • state: BuildStepState!
  • }