# Link in text block not distinct (A) This test checks that all links that appear in blocks of text are distinct from the surrounding text or have a color contrast difference of at least 3:1 with the surrounding text. If the link has a distinct style that does not rely on color, the test will pass. If the link has no distinct style and it has a contrast difference less than 3:1, it is a violation. When the link has no distinct style, and it has a contrast difference of 3:1 or higher, you should verify that the link gets distinct style on focus and hover (manual testing required), as this cannot be automated reliably. **Priority**: High **Impact**: Negative ## 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} ) { crawlAccessibilityIssues(after: $after, reportType: Basic) { nodes { issueDigest ruleId elementSource exampleUrl issueDescription gaPageviews urlCount elementSelectorCount exampleElementSelector issueSeverity fontColor contrastRatio bgMinColor } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"link_in_text_block_issues"} ```