# 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
-
Review the title, H1, meta description, and body content of the mapped landing page against the target query intent
- Where no suitable page exists, plan new content that directly addresses the query
-
Where a page exists but is a poor match, assess whether a significant rewrite or a new dedicated page would better
serve the intent
- Use Page Relevance diagnostics to identify which page elements are contributing most to the low score
## 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"}
```