# Data Breaches

### Fields

| Field                | Type   | Description                           |
| -------------------- | ------ | ------------------------------------- |
| affectedRecordsCount | Int    | Number of affected records            |
| date                 | String | ISO 8601 formatted date of the breach |
| description          | String | Description of the breach             |
| source               | String | Source label                          |
| sourceUrl            | String | Source URL                            |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        dataBreaches {
            affectedRecordsCount
            date
            description
            source
            sourceUrl
        }
    }
}


# variables
{ "domain": "meta.com" }
```
