Files
server/opt/psa/admin/cp/queries/WebsiteDiagnosticProblemReport.graphql
cutemeli 0bfc6c8425 Initial
2025-12-22 10:32:59 +00:00

42 lines
1.2 KiB
GraphQL

query WebsitesDiagnosticProblem($domainId: ID, $problemCode: String) {
server {
websitesDiagnostic {
settings {
timezoneOffset
}
domains(filter: { domainId: $domainId }) {
id
name(idn: false)
siteUrl
baseDomain {
id
}
websitesDiagnosticChecks {
type
date
depth
problems(filter: { code: $problemCode }) {
name
code
cause
description
examples {
line
path
}
solutions {
title
text
}
plotItems {
timestamp
errorsCount
requestsCount
}
}
}
}
}
}
}