24 lines
632 B
GraphQL
24 lines
632 B
GraphQL
mutation ToggleDnsZone($enable: Boolean!) {
|
|
toggleDnsTemplateZone(input: { enable: $enable }) {
|
|
query {
|
|
dns {
|
|
template {
|
|
templateNotSynchronized
|
|
soaTemplateNotSynchronized
|
|
isEnabled
|
|
records {
|
|
id
|
|
type
|
|
host
|
|
val
|
|
ttl
|
|
displayHost
|
|
displayVal
|
|
domainName
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|