2025-12-01

This commit is contained in:
2026-03-17 14:58:51 -06:00
parent 183e865f8b
commit 4b82b57113
6846 changed files with 954887 additions and 162606 deletions
@@ -0,0 +1,16 @@
"""GraphQL Subscription
The :mod:`graphql.subscription` package is responsible for subscribing to updates
on specific data.
.. deprecated:: 3.2
This package has been deprecated with its exported functions integrated into the
:mod:`graphql.execution` package, to better conform with the terminology of the
GraphQL specification. For backwards compatibility, the :mod:`graphql.subscription`
package currently re-exports the moved functions from the :mod:`graphql.execution`
package. In v3.3, the :mod:`graphql.subscription` package will be dropped entirely.
"""
from ..execution import subscribe, create_source_event_stream, MapAsyncIterator
__all__ = ["subscribe", "create_source_event_stream", "MapAsyncIterator"]