Skip to main content

DataSubjectDocuments

DataSubjectDocuments returns document records associated with a specific email address. Used for GDPR data subject access requests via Organisation.dataSubjectConnection.

Fields

FieldTypeDescription
emailAWSEmailEmail address searched
firstNameStringFirst name of the data subject
lastNameStringLast name
documentNameStringDocument title
documentIdIDDocument ID
recipientIdIDRecipient ID
createdAWSDateTimeWhen the document was created
recipientStatusStringRecipient's status
documentStatusStringDocument's status
roleStringRole played by the data subject
groupIdStringGroup the document belongs to

Query

query SearchDataSubject($orgId: ID) {
organisation(id: $orgId) {
dataSubjectConnection(email: "jane@example.com", first: 50) {
documents {
email
firstName
lastName
documentName
documentId
recipientId
created
recipientStatus
documentStatus
role
groupId
}
totalCount
}
}
}

Export This Article

Save a copy of this page as PDF or plain text.