Consent
A Consent records whether a User has accepted a specific term or condition.
Fields
| Field | Type | Description |
|---|---|---|
id | ID! | Unique identifier |
description | String! | The terms of the consent |
answer | Boolean | Whether the user has accepted |
Query
Accessed via User.consents:
query GetMyConsents {
user {
consents {
id
description
answer
}
}
}
Related
- User — the user this consent belongs to