> ## Documentation Index
> Fetch the complete documentation index at: https://docs.extractbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ClearCookiesOptions

Input options for the 'clearCookies' mutation.
If no options are provided, all cookies in the current browser context are cleared.

## Definition

```graphql theme={null}
input ClearCookiesOptions {
  domain: String
  name: String
  path: String
}
```

## Fields

### `domain`

[String](/reference/graphql/scalars/string)

Clear cookies matching this domain. Example: `"example.com"`.

### `name`

[String](/reference/graphql/scalars/string)

Clear cookies with this specific name. Example: `"session_id"`.

### `path`

[String](/reference/graphql/scalars/string)

Clear cookies matching this path. Example: `"/app"`.
