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
- 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
- (
- String, :
- String, :
- QueryFilter, :
- Int, :
- String!]!, : [
- 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
- String!): BuildPlan! ( :
- }