query BuildConfigurations {
buildConfigurations {
repository {
iosAppProject {
id
type
repository {
__typename
}
configurations {
__typename
}
allowedScripts {
__typename
}
createdAt
}
latestBuild {
id
requestId
jobId
status
action
destinationType
}
id
canonicalOrigin
displayOrigin
name
}
id
name
iconKey
source {
id
kind
relativePath
}
scheme
}
}{
"data": {
"buildConfigurations": [
{
"repository": {
"iosAppProject": {
"id": "id",
"type": "IOS_APP",
"repository": {
"__typename": "CodebaseRepository"
},
"configurations": [
{
"__typename": "BuildConfiguration"
}
],
"allowedScripts": [
{
"__typename": "AllowedBuildScript"
}
],
"createdAt": "string"
},
"latestBuild": {
"id": "id",
"requestId": "id",
"jobId": "id",
"status": "QUEUED",
"action": "BUILD",
"destinationType": "SIMULATOR"
},
"id": "id",
"canonicalOrigin": "string",
"displayOrigin": "string",
"name": "string"
},
"id": "id",
"name": "string",
"iconKey": "string",
"source": {
"id": "id",
"kind": "PROJECT",
"relativePath": "string"
},
"scheme": "string"
}
]
}
}buildConfigurations
Returns saved configurations, optionally scoped to a repository or app.
buildConfigurations(repositoryId: ID, appId: ID): [BuildConfiguration!]!Arguments
Repository whose configurations to return.
App whose repositories to include.
Returns
Repository that owns this reusable configuration.
Stable identifier for this build configuration.
Display name of this build configuration.
The icon key associated with this build configuration. May be null when unavailable or not applicable.
The source associated with this build configuration.
The scheme associated with this build configuration.
The build configuration associated with this build configuration.
The default action associated with this build configuration.
The advanced settings associated with this build configuration.
Whether the auto export condition is true for this build configuration.
The export settings associated with this build configuration. May be null when unavailable or not applicable.
The observation associated with this build configuration. May be null when unavailable or not applicable.
ISO 8601 timestamp when this build configuration was created.
ISO 8601 timestamp when this build configuration was last updated.
query BuildConfigurations {
buildConfigurations {
repository {
iosAppProject {
id
type
repository {
__typename
}
configurations {
__typename
}
allowedScripts {
__typename
}
createdAt
}
latestBuild {
id
requestId
jobId
status
action
destinationType
}
id
canonicalOrigin
displayOrigin
name
}
id
name
iconKey
source {
id
kind
relativePath
}
scheme
}
}{
"data": {
"buildConfigurations": [
{
"repository": {
"iosAppProject": {
"id": "id",
"type": "IOS_APP",
"repository": {
"__typename": "CodebaseRepository"
},
"configurations": [
{
"__typename": "BuildConfiguration"
}
],
"allowedScripts": [
{
"__typename": "AllowedBuildScript"
}
],
"createdAt": "string"
},
"latestBuild": {
"id": "id",
"requestId": "id",
"jobId": "id",
"status": "QUEUED",
"action": "BUILD",
"destinationType": "SIMULATOR"
},
"id": "id",
"canonicalOrigin": "string",
"displayOrigin": "string",
"name": "string"
},
"id": "id",
"name": "string",
"iconKey": "string",
"source": {
"id": "id",
"kind": "PROJECT",
"relativePath": "string"
},
"scheme": "string"
}
]
}
}