Files
server/opt/psa/admin/cp/queries/ToggleDnsZone.graphql
2026-01-07 20:52:11 +01:00

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
}
}
}
}
}
}