# Primary Pages Not in SERPs without Followed Links Primary pages (unique indexable pages, or the primary indexable page of a duplicate set) that did not have any impressions in Google Organic SERP and have no internal followed links pointing to them. **Priority**: Medium **Impact**: Neutral ## What issues it may cause These pages are unique and indexable but did not generate any impressions in Google's search results which may be due to a lack of internal followed links. Pages that are not indexed by Search Engines like Google cannot rank and will not generate traffic to your website. ## How do you fix it You should investigate these pages to check why they are not linked. You may want to review your site architecture to ensure that all these pages are appropriately linked within your website. ## What is the positive impact Adding internal links to those pages will increase the chances of these pages to get indexed in search engines. Once the pages are indexed they can start ranking in search result, and potentially generate additional visits 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 foundAtUrl deeprank level searchConsoleTotalImpressions followedLinksInCount httpStatusCode indexable duplicatePage foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"primary_pages_not_in_serp_without_followed_links"} ```