DataStop
A DataStop is a GDPR-related request to stop all data processing for a specified email account within an Organisation.
Implements: Node
Fields
| Field | Type | Description |
|---|---|---|
id | ID! | Unique identifier |
email | AWSEmail! | Email account to stop processing |
userId | String! | User who created the request |
created | AWSDateTime | When the request was created |
Relationships
| Field | Type | Description |
|---|---|---|
organisation | Organisation | The organisation |
Query
DataStops are accessed via Organisation.dataStopConnection:
query GetDataStops($orgId: ID) {
organisation(id: $orgId) {
dataStopConnection {
dataStops {
id
email
userId
created
}
totalCount
}
}
}
Related
- Organisation — the parent organisation
- DataDeletion — full data deletion requests