2017-06-23 01:01:21 +03:00
|
|
|
#import "./ServiceInfo.gql"
|
|
|
|
|
2017-07-26 17:28:14 +03:00
|
|
|
query config(
|
|
|
|
$deploymentGroupName: String!
|
|
|
|
$type: ManifestType!
|
|
|
|
$format: ManifestFormat!
|
|
|
|
$environment: String!
|
|
|
|
$files: [KeyValueInput]!
|
|
|
|
$raw: String!
|
|
|
|
) {
|
|
|
|
config(
|
|
|
|
deploymentGroupName: $deploymentGroupName
|
|
|
|
type: $type
|
|
|
|
format: $format
|
|
|
|
environment: $environment
|
|
|
|
files: $files
|
|
|
|
raw: $raw
|
|
|
|
) {
|
2017-06-23 01:01:21 +03:00
|
|
|
...ServiceInfo
|
2017-07-05 16:33:16 +03:00
|
|
|
config {
|
|
|
|
id
|
|
|
|
image
|
|
|
|
ports
|
|
|
|
environment {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
value
|
|
|
|
}
|
|
|
|
labels {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
value
|
|
|
|
}
|
|
|
|
}
|
2017-06-23 01:01:21 +03:00
|
|
|
}
|
|
|
|
}
|