Links

Data Breaches

The reported data breaches that affected this company

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

# query
query findCompanyByDomain($domain: String!) {
company(domain: $domain) {
dataBreaches {
affectedRecordsCount
date
description
source
sourceUrl
}
}
}
# variables
{ "domain": "facebook.com" }