Data Breaches
The reported data breaches that affected this company
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
query findCompanyByDomain($domain: String!) {
company(domain: $domain) {
dataBreaches {
affectedRecordsCount
date
description
source
sourceUrl
}
}
}
# variables
{ "domain": "facebook.com" }
Last modified 3yr ago