mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-22 09:37:07 +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
22 lines
434 B
Python
22 lines
434 B
Python
from .testing import GraphQLTestCase
|
|
from .utils import (
|
|
DJANGO_FILTER_INSTALLED,
|
|
camelize,
|
|
get_model_fields,
|
|
get_reverse_fields,
|
|
is_valid_django_model,
|
|
maybe_queryset,
|
|
bypass_get_queryset,
|
|
)
|
|
|
|
__all__ = [
|
|
"DJANGO_FILTER_INSTALLED",
|
|
"get_reverse_fields",
|
|
"maybe_queryset",
|
|
"get_model_fields",
|
|
"camelize",
|
|
"is_valid_django_model",
|
|
"GraphQLTestCase",
|
|
"bypass_get_queryset",
|
|
]
|