OBJECT
Consent
The consent status returned for the current user.
link GraphQL Schema definition
1 type Consent { 2 3 # The unique identifier of a consent status. 4 : ID! 5 6 # Identifier to determine whether consent is denied due to user underage. 7 : Boolean! 8 9 # Privacy law, e.g. CCPA or GDPR. 10 : PrivacyLawName! 11 12 # Identifier to determine whether should notification to the user. 13 : Boolean! 14 15 # Identifier to determine whether should show the consent settings page to the 16 # user. 17 : Boolean! 18 19 # A list of vendor consent status of a user. 20 : VendorConsent! 21 22 # A list of vendor consent status of a user. 23 : [VendorConsentStatus!]! @deprecated( reason: "Use vendorConsentStatus instead" ) 24 25 }