# Target Search Queries with High Relevance Landing Pages **Priority**: None **Impact**: Neutral ## What issues it may cause High relevance landing pages can lose their edge if content becomes outdated, competitors improve their coverage, or page changes inadvertently reduce alignment with the target query. Without regular monitoring, strong relevance scores can degrade without notice. ## How do you fix it ## What is the positive impact Well-optimised landing pages for target queries give your site the strongest foundation to rank competitively for strategic queries, supporting both visibility and organic traffic growth. ## 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_high_relevance_landing_page"} ```