2025-12-01
This commit is contained in:
@@ -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"]
|
||||
Reference in New Issue
Block a user