# 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: ```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 linksOutCount deeprank level externalLinksCount internalLinksCount nofollowedPage metaNofollow foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"max_links"} ```