Kolapo Immanuel
Kolapo Immanuel
Hello! I am using Django 3.1.4 alongside the most recent version of this library and trying to obtain a token but I keep getting: ``` { "errors": [ { "message":...
DjangoFilterPaginateListField simply returns `manager.all()` and ignores all parameters passed to the field. For instance, l have the following: ``` class Query(graphene.ObjectType): variable = DjangoFilterPaginateListField( SomeType, id=graphene.ID(required=True) ) @login_required def resolve_variable(self,...
Hello! Please take a look at the code below: ``` class Query(graphene.ObjectType): variable = DjangoFilterPaginateListField( types.SomeListType, id=graphene.ID(required=True), pagination=LimitOffsetGraphqlPagination() ) @login_required def resolve_variable(self, info, id): return models.Model.objects.filter(model__id=id) ``` 1. Calling this...