2022-08-24 05:35:49 +00:00
|
|
|
query AllServices {
|
|
|
|
services {
|
|
|
|
allServices {
|
|
|
|
description
|
|
|
|
displayName
|
|
|
|
dnsRecords {
|
2023-06-23 02:22:48 +00:00
|
|
|
...fragmentDnsRecords
|
2022-08-24 05:35:49 +00:00
|
|
|
}
|
|
|
|
id
|
|
|
|
isEnabled
|
|
|
|
isMovable
|
|
|
|
isRequired
|
2023-06-29 10:51:38 +00:00
|
|
|
canBeBackedUp
|
2023-07-02 11:41:31 +00:00
|
|
|
backupDescription
|
2022-08-24 05:35:49 +00:00
|
|
|
status
|
|
|
|
storageUsage {
|
|
|
|
title
|
|
|
|
usedSpace
|
|
|
|
volume {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
svgIcon
|
|
|
|
url
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation EnableService($serviceId: String!) {
|
|
|
|
enableService(serviceId: $serviceId) {
|
|
|
|
...basicMutationReturnFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation DisableService($serviceId: String!) {
|
|
|
|
disableService(serviceId: $serviceId) {
|
|
|
|
...basicMutationReturnFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation StopService($serviceId: String!) {
|
|
|
|
stopService(serviceId: $serviceId) {
|
|
|
|
...basicMutationReturnFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation StartService($serviceId: String!) {
|
|
|
|
startService(serviceId: $serviceId) {
|
|
|
|
...basicMutationReturnFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation RestartService($serviceId: String!) {
|
|
|
|
restartService(serviceId: $serviceId) {
|
|
|
|
...basicMutationReturnFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation MoveService($input: MoveServiceInput!) {
|
|
|
|
moveService(input: $input) {
|
|
|
|
...basicMutationReturnFields
|
|
|
|
job {
|
2023-06-29 18:38:46 +00:00
|
|
|
...basicApiJobsFields
|
2022-08-24 05:35:49 +00:00
|
|
|
}
|
|
|
|
}
|
2023-06-16 01:30:46 +00:00
|
|
|
}
|