joyent-portal/packages/cp-gql-mock-server/test/tags/instances-filtered.gql

37 lines
546 B
Plaintext
Raw Normal View History

query Instances(
2017-07-21 17:08:15 +03:00
$dgSlug: String!
$sSlug: String!
$iName: String!
$biName: String!
) {
portal {
id
deploymentGroups(slug: $dgSlug) {
id
name
slug
status
2017-07-21 17:08:15 +03:00
services(slug: $sSlug) {
id
name
slug
status
2017-07-21 17:08:15 +03:00
instances(name: $iName) {
id
name
status
2017-07-21 17:08:15 +03:00
}
branches {
name
slug
instances(name: $biName) {
id
name
status
2017-07-21 17:08:15 +03:00
}
}
}
}
}
}