# 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 information associated with a user session. It contains scalar string values that define the policy state and individual consent choices made by the user. ## Example ```graphql { cookiePolicy { value consents } } ``` ## Implements This type does not implement any interfaces. ## Related Types - String