graphene icon indicating copy to clipboard operation
graphene copied to clipboard

GraphQL framework for Python

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

#513 ### all the solution mentioned in this issue are for mutation, is there a way to send custom output for a query? **I am trying to handle permissions for...

✨ enhancement

I don't know, maybe it's not a bug and problem caused by rx, but i have this mutation ```python class ExtendedMutation(graphene.Mutation): ok = graphene.Boolean() code = graphene.Int() message = graphene.String()...

For our use case, we send a few thousand objects to the client. We're currently using a normal JSON API, but are considering using GraphQL instead. However, when returning a...

✨ enhancement
work in progress

Here is the problem, I need to create a custom resolve method but the path for the logic to might not always require the logic added in the custom resolve...

✨ enhancement

Would fix #927. When using forms in the frontend, it's often useful for the "null" value of the form field to be an empty string, as HTML Input elements don't...

This pull request addresses the issue in #1368 where we want to be able to use UnforgivingExecutionContext to deal with unexpected errors. The tests for UnforgivingExecutionContext are re-instated as they...

* **What is the current behavior?** Installing `graphene==v3.0.0b5` does not auto install `promise` which is required when writing tests using `graphene.test.Client` (see here) ```/tmp/graphene master venv 福 pip install graphene==3.0.0b5...

🐛 bug

Similar to https://github.com/graphql-python/graphene/blob/master/UPGRADE-v2.0.md, is there a guide to upgrading to v3 from v2? I cannot seem to find any information beyond the list of changes from the GH release: https://github.com/graphql-python/graphene/releases/tag/v3.0.0

✨ enhancement

_This issue is a **feature discussion**._ For now, the way to write a ObjectType is as below: ```Python class Hero(ObjectType): name = Field(List(String), only_first_name=Boolean()) age = Int() def resolve_name(self, info,...

✨ 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?** Not 100% sure this is a...

🐛 bug