mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-13 05:07:02 +03:00
0de35ca3b0
* fix: fk resolver permissions leak * fix: only one query for 1o1 relation * tests: added queries count check * fix: docstring * fix: typo * docs: added warning to authorization * feat: added bypass_get_queryset decorator
14 lines
294 B
Python
14 lines
294 B
Python
from .fields import DjangoConnectionField, DjangoListField
|
|
from .types import DjangoObjectType
|
|
from .utils import bypass_get_queryset
|
|
|
|
__version__ = "3.1.3"
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"DjangoObjectType",
|
|
"DjangoListField",
|
|
"DjangoConnectionField",
|
|
"bypass_get_queryset",
|
|
]
|