Defines GraphQL subscriptions available for receiving real-time updates. Subscriptions allow clients to listen for specific events or data changes as they happen.

Definition

object Subscription {
  console: ConsoleMessage
  execution: Execution
  pageError: Error
  request: Request
  response: Response
  screencastFrame: ScreencastFrame
}

Fields

console

ConsoleMessage Subscribes to console messages from the currently active page. This is useful for debugging and logging.

execution

Execution Subscribes to field execution events from the currently active operation. This is useful for debugging and logging.

pageError

Error Subscribes to page errors from the currently active page. This is useful for debugging and logging.

request

Request Subscribes to network requests from the currently active page. This is useful for debugging and logging.

response

Response Subscribes to network responses from the currently active page. This is useful for debugging and logging.

screencastFrame

ScreencastFrame Subscribes to a stream of screencast frames from the currently active page. Each frame provides an image of the page content and associated metadata. This is useful for live-streaming or recording page interactions.