DataDeletion
A DataDeletion is a GDPR-related request to remove all data for a specified account within an Organisation.
Implements: Node
Fields
| Field | Type | Description |
|---|---|---|
id | ID! | Unique identifier |
email | AWSEmail! | Email account to delete data for |
created | AWSDateTime | When the request was created |
Relationships
| Field | Type | Description |
|---|---|---|
organisation | Organisation | The organisation |
Query
DataDeletions are accessed via Organisation.dataDeletionConnection:
query GetDataDeletions($orgId: ID) {
organisation(id: $orgId) {
dataDeletionConnection {
dataDeletions {
id
email
created
}
totalCount
}
}
}
Related
- Organisation — the parent organisation
- DataStop — stop processing requests