OBJECT

BuildQuery

Query the build subsystem

link GraphQL Schema definition

  • type BuildQuery {
  • # Query build run by unique id. Returns the matching build run if found for id
  • # and org context.
  • #
  • # Arguments
  • # id: The build run id
  • queryBuildRun(id: String!): BuildRun!
  • # Query build runs. Returns a relay-compatible BuildRunConnection.
  • #
  • # Arguments
  • # after: relay-compatible cursor of last entry on previous page
  • # before: relay-compatible cursor of first entry of previous page
  • # when paging back
  • # filter: standard field for providing filter criteria of build
  • # runs
  • # first: relay-compatible page size
  • # projects: A list of project ids to return build runs for
  • # sort: standard field for providing primary sort criteria of
  • # build runs
  • queryBuildRuns(
  • after: String,
  • before: String,
  • filter: QueryFilter,
  • first: Int,
  • projects: [String!]!,
  • sort: QuerySort
  • ): BuildRunConnection
  • # Query to look up and return the preferred container app build plan of a project
  • #
  • # Arguments
  • # projectId: Project to query build plan for
  • queryContainerAppBuildPlan(projectId: String!): BuildPlan!
  • }

link Require by