File tree Expand file tree Collapse file tree 2 files changed +12
-14
lines changed Expand file tree Collapse file tree 2 files changed +12
-14
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,14 @@ Transport
3
3
4
4
.. currentmodule :: gql.transport
5
5
6
- .. automodule :: gql.transport
7
- :member-order: bysource
6
+ .. autoclass :: gql.transport.transport.Transport
7
+
8
+ .. autoclass :: gql.transport.local_schema.LocalSchemaTransport
9
+
10
+ .. autoclass :: gql.transport.requests.RequestsHTTPTransport
11
+
12
+ .. autoclass :: gql.transport.async_transport.AsyncTransport
13
+
14
+ .. autoclass :: gql.transport.aiohttp.AIOHTTPTransport
15
+
16
+ .. autoclass :: gql.transport.websockets.WebsocketsTransport
Original file line number Diff line number Diff line change 1
1
from .async_transport import AsyncTransport
2
2
from .transport import Transport
3
- from .aiohttp import AIOHTTPTransport
4
- from .local_schema import LocalSchemaTransport
5
- from .requests import RequestsHTTPTransport
6
- from .websockets import WebsocketsTransport
7
3
8
- __all__ = [
9
- "AsyncTransport" ,
10
- "Transport" ,
11
- "AIOHTTPTransport" ,
12
- "LocalSchemaTransport" ,
13
- "RequestsHTTPTransport" ,
14
- "WebsocketsTransport" ,
15
- ]
4
+ __all__ = ["AsyncTransport" , "Transport" ]
You can’t perform that action at this time.
0 commit comments