-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support async_client=False with custom operations
* support async_client with custom operations * Update changelog
- Loading branch information
1 parent
d311712
commit 137608c
Showing
18 changed files
with
1,522 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
tests/main/clients/custom_sync_query_builder/expected_client/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
from .base_client import BaseClient | ||
from .base_model import BaseModel, Upload | ||
from .client import Client | ||
from .enums import MetadataErrorCode | ||
from .exceptions import ( | ||
GraphQLClientError, | ||
GraphQLClientGraphQLError, | ||
GraphQLClientGraphQLMultiError, | ||
GraphQLClientHttpError, | ||
GraphQLClientInvalidResponseError, | ||
) | ||
|
||
__all__ = [ | ||
"BaseClient", | ||
"BaseModel", | ||
"Client", | ||
"GraphQLClientError", | ||
"GraphQLClientGraphQLError", | ||
"GraphQLClientGraphQLMultiError", | ||
"GraphQLClientHttpError", | ||
"GraphQLClientInvalidResponseError", | ||
"MetadataErrorCode", | ||
"Upload", | ||
] |
Oops, something went wrong.