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