# CookiePolicy Provides information about the cookie policy and user consents for the session. ## Type Definition ```graphql type CookiePolicy { value: String consents: [String] } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | value | String | Cookie 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 ```graphql query GetCookiePolicy { cookiePolicy { value consents } } ``` ## Implements This type does not implement any interfaces. ## Related Types - String