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

My team is using `graphene-django` for our backend and we're interested in using a tool like Apollo Studio. In particular, field-level performance monitoring and client aware metrics/traces are useful and...

✨ enhancement

Unfortunately it seems that the current maintainers of Graphene no longer have the time to maintain the library so I'm taking the liberty of putting out this call for anyone...

I met a query whose operation name contains space ``` schema = Schema(query=Query) result = schema.execute( ''' query user login ($un: String, $pw: String) { r: User (username: $un, password:...

🐛 bug

My problem: I have a method foo that takes an InputObjectType as input and does some logic, from those InputObjectType, I need to create, dynamically in the backend, other InputObjectType...

✨ enhancement

I know graphql-core dropped support for promises, but the author seems to think promise-support can be added via hooks like middleware and execution context (see response to my identical issue...

✨ enhancement

It seems that an edge, within the connection edges, cannot be marked as `NonNull`. I believe this is the result of https://github.com/graphql-python/graphene/blob/master/graphene/relay/connection.py#L103 where the `edges` field is hard coded to...

✨ enhancement

The failure in the CI exists on master as well. You can find the fix on the PR #1412

Solution for issue https://github.com/graphql-python/graphene/issues/1276

* **What is the current behavior?** `graphene.validation.disable_introspection.DisableIntrospection` doesn't allow to query `__typename` * **If the current behavior is a bug, please provide the steps to reproduce and if possible a...

🐛 bug

It will be interesting to introduce all network representation for multiple purpose (represents ip address with an easy way, networks address). I wrote some scalar compatible and tested with graphene...

✨ enhancement