# Pages with Low Query Relevance **Priority**: Critical **Impact**: Negative ## What issues it may cause A low overall page relevance score indicates that several key elements poorly reflect high-performing queries, weakening the page's connection to user intent. ## How do you fix it Audit each element (title, description, H1, content) to identify weak points. Prioritize updates based on their importance and relevance gaps to high-click queries. ## What is the positive impact This usually results in low rankings, reduced visibility, and missed opportunities to attract organic traffic from relevant searches. ## 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 foundAtSitemap pageRelevance searchConsoleTotalClicks searchQueriesSummary foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"low_page_relevance"} ```