BaseGraphQLWSHandler

Constructor:

Signature:

def __init__(
self,
schema: BaseSchema,
debug: bool,
keep_alive: bool,
keep_alive_interval: float,
) -> None:
...

Parameters:

  1. schema:

    Type
    BaseSchema
  2. debug:

    Type
    bool
  3. keep_alive:

    Type
    bool
  4. keep_alive_interval:

    Type
    float

Methods:

Attributes:

  1. schema:

  2. debug:

  3. keep_alive:

  4. keep_alive_interval:

  5. keep_alive_task:

    Type
    asyncio.Task | None
  6. subscriptions:

    Type
    Dict[str, AsyncGenerator]
  7. tasks:

    Type
    Dict[str, asyncio.Task]
  8. connection_params:

    Type
    ConnectionInitPayload | None