# Target Search Queries with Low Relevance Landing Pages **Priority**: Critical **Impact**: Negative ## What issues it may cause Target queries with low relevance landing pages are unlikely to rank well in search results. Without a page that closely matches the search intent, Google has little reason to surface your site for these queries, meaning your strategic query targets remain out of reach. ## How do you fix it ## What is the positive impact Improving landing page relevance for target queries increases the likelihood of ranking for strategic queries, helping to expand your site's visibility beyond its current search footprint. ## 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} ) { crawlSearchQueries(after: $after, reportType: Basic) { nodes { searchQuery searchQueryRelevance searchVolume landingPagesCount landingPagesSummary } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"target_queries_with_low_relevance_landing_page"} ```