# Orphaned Web Pages **Priority**: Low **Impact**: Negative ## What issues it may cause The pages may be discovered by search engines in non-anchor link types such as canonical tags, but may rank less effectively if they do not have any anchor links from other pages. They are less likely to be selected as a canonical URL, and more likely to be deduplicated where the page is in a set of duplicates. ## How do you fix it The pages should be reviewed to determine if they have value for search engines, and internal links to the orphaned pages should be added on other pages. The valuable pages are likely to be linked, so the orphan pages may also be URLs which are not expected to be linked with anchors, but were found through a link such as a malformed canonical tag URL or hreflang. ## What is the positive impact The pages are more likely to be crawled and indexed, and selected as a canonical URL. ## 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 description foundAtUrl deeprank level linksInCount foundInWebCrawl foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"indexable_orphaned_web_pages"} ```