Skip to main content

Max Links

All pages exceeding the maximum number of links specified in Advanced settings > Report settings.

Priority: Low

Impact: Negative

What issues it may causeโ€‹

Pages with a very large number of links are likely to be very large, which may be slow to load and affect user-experience and consume more crawl budget.

PageRank will be distributed through a very large number of pages, instead of being focused on the most important pages.

How do you fix itโ€‹

The links should be reviewed to determine if they all pointing to valuable pages, and any low value links should be removed.

What is the positive impactโ€‹

The page size may be reduced resulting in faster loading pages and a better user-experience.

PageRank will be focused on the most important pages, helping them to rank higher in search results 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:

query GetReportForCrawl($crawlId: ObjectID!, $reportTemplateCode: String!) {
getCrawl(id: $crawlId) {
reportsByCode(
input: {
reportTypeCodes: Basic
reportTemplateCodes: [$reportTemplateCode]
}
) {
rows {
nodes {
... on CrawlUrls {
pageTitle
url
description
foundAtUrl
linksOutCount
deeprank
level
externalLinksCount
internalLinksCount
nofollowedPage
metaNofollow
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer