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

I ran into this error when dynamically creating an dataclass: "Field names must not be keywords: {name!r}" https://github.com/graphql-python/graphene/blob/master/graphene/pyutils/dataclasses.py#L1196-L1197 The field names come from a defined external dataset, and one field...

✨ enhancement

**Is your feature request related to a problem? Please describe.** I was very surprised to find that graphene-python doesn't follow the same order for the execution of the middlewares, as...

✨ enhancement

I would like to define an Argument that derives its value from an enum but can take multiple values at the same time from the enum. so maybe like a...

✨ enhancement

**Is your feature request related to a problem? Please describe.** I would like to be able to solve the N+1 problem on the application-layer. For dataloader components, there will be...

✨ enhancement

* **What is the current behavior?** The current [documentation for ObjectType](https://docs.graphene-python.org/en/latest/types/objecttypes/) states the following under the "Parent Value Object" heading: ``` from graphene import ObjectType, String, Field class Person(ObjectType): full_name...

🐛 bug

Hi guys, We would like to use graphql internally in our project without share graphql interface with any client, to gather data from different apis for our internal tasks. So...

✨ enhancement

What is the idiomatic approach for testing subscriptions? It seems that the `client.execute` option in `graphene.test` is more appropriate for `Query` testing. P.S. There is a subscription execution example in...

✨ enhancement

**Note: for support questions, please use stackoverflow**. This repository's issues are reserved for feature requests and bug reports. * **What is the current behavior?** ``` File "/Users/noj/recurrency/legacy-api/v4/graphql.py", line 1, in...

🐛 bug

* **What is the current behavior?** Since the introduction of https://github.com/graphql-python/graphene/pull/1255 by @AlecRosenbaum it was possible to raise unexpected errors to the backend processing, as examplained in https://github.com/graphql-python/graphene/issues/902#issuecomment-672952043. This is...

🐛 bug

I think in the case of token authentication, it would make sense to be able to return a 401, **even if** only one field errors out this way (referring to...