graphene-django-extras
graphene-django-extras copied to clipboard
Extras functionalities for Graphene-Django
# Problem I'm using custom logic for input validation of a model field (like, validate it as a string and then convert it into UUID v.5 before save). So, I...
Hi, I'm wondering if it's possible to limit the number of subresults as on the example: https://graphql.org/learn/pagination/ Like ``` query{ allBrand(brand:"3715ad6b"){ results{ name, feeds(limit: 2){ media{ image @resize(width:30) } }...
Hi, First, thanks for this amazing lib ! I'm wondering if the partial update would be accessible through the class DjangoSerializerMutation ? At the moment, I use to bypass this...
I have a type with a calculated field who depends on a model related field, can you add a way to tag it for prefetch? My idea: ```python class PersonType(DjangoObjectType):...
Is this package still being maintained? We'd like to use the latest version of django-filter but can't, since graphene-django-extras requires an older version. Also the current version requires an alpha...
As stated, I am adding a filter field that crosses 3 foreign keys. eg Filtering a TrainingSession object on `attendees__user__roles__office` When I filter with this method I get duplicate results...
When using DjangoListObjectField as DjangoListObjectType, the following error occurs if there is a BigInt field. "Int cannot represent non 32-bit signed integer value" Is there any way to use BigInt...
Updates `django-filter` from [^22.1](https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst#version-221-2022-6-17) to [^23.2](https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst#version-232-2023-4-30)
The logs on the server are only with status code and /graphql, It can be more informative like having details regarding the request. Can someone guide me on how I...
I recently upgraded from 0.4.9 to 1.0.0, since we are upgrading our application to Django 4.2. Suddenly my tests for filters that happen to be on enum fields, which assert...