All Orphaned 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:
- Query
- Variables
- cURL
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
}
}
}
}
{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"all_orphaned_pages"}
curl -X POST -H "Content-Type: application/json" -H "apollographql-client-name: docs-example-client" -H "apollographql-client-version: 1.0.0" -H "x-auth-token: YOUR_API_SESSION_TOKEN" --data '{"query":"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":{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"all_orphaned_pages"}}' https://api.lumar.io/graphql