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

**Note: for support questions, please use stackoverflow**. This repository's issues are reserved for feature requests and bug reports. * **What is the current behavior?** TestUnforgivinExeuctionContext.test_unexpected_error fails. ``` ============================= test session...

🐛 bug

I'm using `SyncExecutor` from `graphql-core` and `ImmediateScheduler` from the `promise` library with `graphene` v2.1.8. My understanding is that these should synchronously and immediately execute any promises when they are created....

✨ enhancement

Hi all, We did implement GraphQL API for [Saleor](https://github.com/mirumee/saleor) using graphene and want to extend it using federation. Supporting federation seems pretty straightforward, you need to provide _service type with...

🙋 help wanted

In `graphql-core`, the `default_value` for a `GraphQLArgument` [is set to `Undefined` if it is not given](https://github.com/graphql-python/graphql-core/blob/eb2aeebedd7dc2dde0917c79e18fc91e17584b1e/src/graphql/type/definition.py#L615). This corresponds to the behavior in `value_from_ast`, in which an argument that has not...

🐛 bug

I need to pass some validation check when defining `Arguments` for Mutation. I know I can check it inside the `mutate` function but I need this check before that (similar...

The code example in docstring starts with `from graphene import Mutation` and defines a `class Mutation` later. This definition would shadow previously imported name and (which is more important) confuses...

Currently, setting the value of an input with the wrong type is not raising an error. For example if the input as the type `UUID` and that you provide the...

🐛 bug

**I am trying to add token to graphene-django headers using pytest. But It always return that user is anonymous as shown at the end but it should return user as...

🐛 bug

graphql-core dropped support for the Promise library (since asyncio is now the official way to do async code in Python). @syrusakbary has already created an asyncio version of dataloader: https://github.com/syrusakbary/aiodataloader...

📖 documentation
3.0

Hey. I was attempting to add a global filter on some DjangoObjectTypes [(from docs)](https://docs.graphene-python.org/projects/django/en/latest/authorization/#global-filtering), but the "get_queryset" method was not hit when I was using graphene.List I found [this issue](https://github.com/graphql-python/graphene-django/issues/698)...

🐛 bug