joyent-portal/packages/cp-frontend/src/graphql/DeploymentGroupConfig.gql

23 lines
487 B
Plaintext
Raw Normal View History

#import "./ServiceInfo.gql"
2017-07-05 16:33:16 +03:00
query config($deploymentGroupName: String!, $type: ManifestType!, $format: ManifestFormat!, $environment: String!, $raw: String!) {
config(deploymentGroupName: $deploymentGroupName, type: $type, format: $format, environment: $environment, raw: $raw) {
...ServiceInfo
2017-07-05 16:33:16 +03:00
config {
id
image
ports
environment {
id
name
value
}
labels {
id
name
value
}
}
}
}