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

Definition

input ClearCookiesOptions {
  domain: String
  name: String
  path: String
}

Fields

domain: String

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

name: String

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

path: String

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