-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deleted unused iso8601 package import to avoid error after update to …
…graphene-django==2.2
- Loading branch information
Showing
4 changed files
with
311 additions
and
312 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
# -*- coding: utf-8 -*- | ||
from graphene.pyutils.version import get_version | ||
|
||
from .directives import all_directives | ||
from .fields import DjangoObjectField, DjangoFilterListField, DjangoFilterPaginateListField, \ | ||
DjangoListObjectField | ||
from .middleware import ExtraGraphQLDirectiveMiddleware | ||
from .mutation import DjangoSerializerMutation | ||
from .paginations import LimitOffsetGraphqlPagination, PageGraphqlPagination, CursorGraphqlPagination | ||
from .types import DjangoObjectType, DjangoInputObjectType, DjangoListObjectType, DjangoSerializerType | ||
|
||
VERSION = (0, 3, 8, 'beta', '8') | ||
|
||
__version__ = get_version(VERSION) | ||
|
||
__all__ = ( | ||
'__version__', | ||
|
||
# FIELDS | ||
'DjangoObjectField', | ||
'DjangoFilterListField', | ||
'DjangoFilterPaginateListField', | ||
'DjangoListObjectField', | ||
|
||
# MUTATIONS | ||
'DjangoSerializerMutation', | ||
|
||
# PAGINATIONS | ||
'LimitOffsetGraphqlPagination', | ||
'PageGraphqlPagination', | ||
# 'CursorGraphqlPagination', # Not implemented yet | ||
|
||
# TYPES | ||
'DjangoObjectType', | ||
'DjangoListObjectType', | ||
'DjangoInputObjectType', | ||
'DjangoSerializerType', | ||
|
||
# DIRECTIVES | ||
'all_directives', | ||
'ExtraGraphQLDirectiveMiddleware' | ||
) | ||
# -*- coding: utf-8 -*- | ||
from graphene.pyutils.version import get_version | ||
|
||
from .directives import all_directives | ||
from .fields import DjangoObjectField, DjangoFilterListField, DjangoFilterPaginateListField, \ | ||
DjangoListObjectField | ||
from .middleware import ExtraGraphQLDirectiveMiddleware | ||
from .mutation import DjangoSerializerMutation | ||
from .paginations import LimitOffsetGraphqlPagination, PageGraphqlPagination, CursorGraphqlPagination | ||
from .types import DjangoObjectType, DjangoInputObjectType, DjangoListObjectType, DjangoSerializerType | ||
|
||
VERSION = (0, 3, 8, 'final', '') | ||
|
||
__version__ = get_version(VERSION) | ||
|
||
__all__ = ( | ||
'__version__', | ||
|
||
# FIELDS | ||
'DjangoObjectField', | ||
'DjangoFilterListField', | ||
'DjangoFilterPaginateListField', | ||
'DjangoListObjectField', | ||
|
||
# MUTATIONS | ||
'DjangoSerializerMutation', | ||
|
||
# PAGINATIONS | ||
'LimitOffsetGraphqlPagination', | ||
'PageGraphqlPagination', | ||
# 'CursorGraphqlPagination', # Not implemented yet | ||
|
||
# TYPES | ||
'DjangoObjectType', | ||
'DjangoListObjectType', | ||
'DjangoInputObjectType', | ||
'DjangoSerializerType', | ||
|
||
# DIRECTIVES | ||
'all_directives', | ||
'ExtraGraphQLDirectiveMiddleware' | ||
) |
Oops, something went wrong.