# Pages with High Content Relevance **Priority**: None **Impact**: Neutral ## What issues it may cause A high content relevance score shows strong alignment with user queries, helping the page stand out in search results. ## How do you fix it Maintain the quality of the content by updating it when content changes or query trends shift. Reinforce consistency with other on-page elements. ## What is the positive impact This typically leads to higher visibility, improved click-through rates, and more engaged users. ## 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: ```graphql query GetReportStatForCrawl( $crawlId: ObjectID! $reportTemplateCode: String! $after: String ) { getReportStat( input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode} ) { crawlUrls(after: $after, reportType: Basic) { nodes { pageTitle url mainContent foundAtSitemap mainContentRelevance searchConsoleTotalClicks searchQueriesSummary foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"high_content_relevance"} ```