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

Extras functionalities for Graphene-Django

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

Hi, just tried to installed your library, but then I get this error : ERROR: pip's dependency resolver does not currently take into account all the packages that are installed....

There are cases(I had it), when users want explicitly pass input/output types to DjangoSerializerMutation. There may be a conflict with my other [pull request](https://github.com/eamigo86/graphene-django-extras/pull/156), as it's the same file, I...

Hi all, I want to protect all mutations and want to use JWT as the authorization method. So I decided to inherit from DjangoSerializerMutation to have variation of it were...

Just wondering if it is possible to define custom resolver for the fields exposed by graphene-django-extras. My project has two Apps (with separate databases) but with relationships across apps. I...

Using the following simple schema and the default `User` model. ```python import graphene from graphene_django import DjangoObjectType from graphene_django_extras import DjangoObjectType as DjangoObjectTypeGDE from django.contrib.auth.models import User class UserType(DjangoObjectType): class...

Dear contributors. I create this issue in order to have a channel for project's further **improvement / development / maintainance**. Everyone who has any thoughts about where we should go...

help wanted
todo

Hi, **Feature to be included Auth for mutation and Queries** I was working on my personal project and had to use auth checking for mutations so i wrote a child...

There was no distinction between `create` and `update` operations, thus `update` did not have an ID argument in it. I made it so `update` takes ID argument not from `input`...

`_parse` function was fist checking if `partial_dt` is a datetime object, then if it was date objects. datetime objects will pass both those checks, that's why you need to check...