# Pages with Nosnippet Directive **Priority**: High **Impact**: Negative ## What issues it may cause Without a descriptive snippet, users are less likely to click on your result. This directive also signals to prevent your content from being used by Google's AI models for answers. ## How do you fix it For pages where a rich snippet is desirable, remove the 'nosnippet' meta tag from the HTML section or the X-Robots-Tag in the HTTP header. ## What is the positive impact Using 'nosnippet' severely limits how your page appears in search, making it less appealing. It also prevents content from being used in Google's generative AI experiences. ## 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 nosnippet httpStatusCode indexable foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"pages_with_nosnippet"} ```