Skip to Content

CookiePolicy

Provides information about the cookie policy and user consents for the session.

Type Definition

type CookiePolicy { value: String consents: [String] }

Fields

FieldTypeDescription
valueStringCookie policy value for the session (e.g., null, required, all, custom).
consents[String]User’s consent choices for the cookie policy.

Relationships

The CookiePolicy type represents cookie consent data within the session context. It provides structured information about the current cookie policy status and user consent selections. This type is typically returned as part of session or configuration queries to inform the application of privacy and consent requirements.

Example

query GetCookiePolicy { cookiePolicy { value consents } }

Implements

This type does not implement any interfaces.

  • String