# Orphaned Canonical Pages All pages referenced as a canonical page from another page, which are not linked from any other page discovered in the web crawl. **Priority**: High **Impact**: Negative ## What issues it may cause Canonical tags help search engines to identify the most representative page (canonical) among a set of duplicate pages. If a canonical page is unlinked it may potentially cause the following issues: ## How do you fix it You can use DeepRank to assess if canonical tags are pointing to the correct pages. You may assume that the canonical page should be the URL with highest DeepRank and most backlinks. ## What is the positive impact Correctly configured canonical tags can help you to consolidate both internal as well as external link authority to your canonical pages increasing the chances for them to rank higher in search results page and drive more traffic and conversions. ## 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 canonicalLinksInCount linksInCount foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"unlinked_canonical_pages"} ```