graphene-django-extras icon indicating copy to clipboard operation
graphene-django-extras copied to clipboard

Extras functionalities for Graphene-Django

Results 77 graphene-django-extras issues
Sort by recently updated
recently updated
newest added

I had an issue that i can't fix. I'm trying to use this package together with `graphene-django` defining types with the extra package and using `DjangoModelFormMutation` from the `graphene-django` package....

Cleaned up some verbage in pagination.py!

Most probably I am missing something as this is such a core thing that I can't be the first one who runs into the problem, so my apologies if it's...

Hi, just tried to upgrade to django from 3 => 4, but then I get this error at run server : ImportError: cannot import name 'force_text' from 'django.utils.encoding' File "/usr/local/lib/python3.10/site-packages/graphene_django_extras/converter.py",...

Hi , Could you please tell how i make pagination and also get the info about total number of pages or offset and counts with the data

We are big fans of graphene-django-extras but also wanted to upgrade to Django 4 (and the new graphne 3.0 official release). Changes are all covered by existing test cases.

It seems that using [https://github.com/flavors/django-graphql-geojson](https://github.com/flavors/django-graphql-geojson) raises error here: ``` Exception: Don't know how to convert the Django field ```

is there any implemented alternative for `graphene.Union` or a way to integrate the functionality?

Backward compatibility with client when using PageGraphqlPagination Issue: ``` //client query { users { totalCount results { id } } } ``` Output: ``` //old version { totalCount: 1, users:...

Hello I need to create a mutation with nested fields and i couldn't find any example to follow, so my code is : ```python class CharteredLivraisonMutation(CustomDjangoSerializerMutation): class Meta: serializer_class =...