graphene icon indicating copy to clipboard operation
graphene copied to clipboard

GraphQL framework for Python

Results 189 graphene issues
Sort by recently updated
recently updated
newest added

Hi all, I am trying to incorporate Dataloaders (https://docs.graphene-python.org/en/latest/execution/dataloader/) to our schemas to reduce load on our DB. However, I was wondering if anyone has had experience using either a...

✨ enhancement

**Is your feature request related to a problem? Please describe.** There is a [stale report](https://github.com/graphql-python/graphene/issues/888) on this, but I just wanted to know if this is the expected behavior of...

✨ enhancement

Is there a way to override the default serialization for UUIDs (or any object type)? In order to not serialize UUIDs with dashes, I'm having to do this for every...

✨ enhancement

* **What is the current behavior?** * **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem** via...

🐛 bug

Due to fact that python's Enum [doesn't support inheritance](https://docs.python.org/3/library/enum.html#restricted-enum-subclassing), and in some cases it might be useful, so I added this functionality to graphene's Enum.

* **What is the current behavior?** - Get blank screen when I hit my `/graphql` AWS gateway API hooked to AWS lambda running Django + graphene. I deployed using zappa...

🐛 bug

* **What is the current behavior?** It breaks when a literal null value is provided to a nullable field argument ```python from graphene import ObjectType, String, Schema, Argument class Query(ObjectType):...

🐛 bug

Hello. First of all, thanks for all graphene developers and contributors. * **What is the current behavior?** Interface is ignored when define mutation. This is my code. ```python class CreatePlan(Mutation):...

🐛 bug

The [dataloader documentation](https://docs.graphene-python.org/en/latest/execution/dataloader/) is quite unclear in the current state, especially this piece of code: ```python class User(graphene.ObjectType): name = graphene.String() best_friend = graphene.Field(lambda: User) friends = graphene.List(lambda: User) def...

🐛 bug