Pages with Moderate Description Relevance
Priority: None
Impact: Neutral
What issues it may cause
A medium description relevance score suggests this element is partially aligned with top queries, but not fully optimized.
How do you fix it
Refine the description using language and structure that better mirrors user search behavior. Ensure it complements the rest of the page content.
What is the positive impact
A partially optimised description can lead to inconsistent performance: some click-throughs from search, but falling short of what a more relevant description could achieve.
How to fetch the data for this report template
You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query:
GetReportStatForCrawlTry in Explorer
GraphQL
query GetReportStatForCrawl(
$crawlId: ObjectID!
$reportTemplateCode: String!
$after: String
) {
getReportStat(
input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode}
) {
crawlUrls(after: $after, reportType: Basic) {
nodes {
pageTitle
url
description
foundAtSitemap
descriptionRelevance
searchConsoleTotalClicks
searchQueriesSummary
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
totalCount
pageInfo {
endCursor
hasNextPage
}
}
}
}