diff options
author | Nejc Habjan <nejc.habjan@siemens.com> | 2022-05-04 00:16:41 +0200 |
---|---|---|
committer | Nejc Habjan <nejc.habjan@siemens.com> | 2022-12-11 13:33:02 +0100 |
commit | 097997a6fd4a5e09474b3bffd48d879491018361 (patch) | |
tree | e6015c0323b4f597f7241d5d3c4493a934cc2537 /gitlab/__init__.py | |
parent | c7cf0d1f172c214a11b30622fbccef57d9c86e93 (diff) | |
download | gitlab-feat/graphql.tar.gz |
feat: add basic GraphQL support (wip)feat/graphql
Diffstat (limited to 'gitlab/__init__.py')
-rw-r--r-- | gitlab/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index e7aafda..a7b7ef7 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -29,7 +29,7 @@ from gitlab._version import ( # noqa: F401 __title__, __version__, ) -from gitlab.client import Gitlab, GitlabList # noqa: F401 +from gitlab.client import Gitlab, GitlabList, GraphQLGitlab # noqa: F401 from gitlab.exceptions import * # noqa: F401,F403 warnings.filterwarnings("default", category=DeprecationWarning, module="^gitlab") |