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

Hello, I am using custom middleware to mesure complexity of graphql query, but it throws an error `FragmentSpread' object has no attribute 'selection_set' with custom Middleware` when using fragments. Query...

🐛 bug

Im always frustrated when my model has a null able boolean field and the method `from graphene_django.types import construct_fields` returns a Boolean Scalar field which can only be True or...

✨ enhancement

```py class Query(graphene.ObjectType): # ... schema = Schema(query=Query) ``` ![image](https://user-images.githubusercontent.com/50928/69422797-eb8b9a80-0d24-11ea-9eaf-463bd027aa03.png) Related to #814 which was automatically closed due to staleness. Any ideas?

When defining this query: ``` class Episode(graphene.Enum): NEWHOPE = 4 EMPIRE = 5 JEDI = 6 class ListAvailableSubscriptionPlans(graphene.ObjectType): available_subscription_plans = graphene.List( graphene.NonNull(graphql.SubscriptionPlanObject), subscriber_id=graphene.Int(required=True), subscriber_type=Episode, target_currency=graphene.String(required=True), ) def resolve_available_subscription_plans( self, info,...

[![enter image description here][1]][1] [1]: https://i.stack.imgur.com/giki5.png I'm using Graphene as a GraphQL server in Django. I set up a MySQL replica in Django. My setting is pretty simple. Read requests...

✨ enhancement

Hi, I am new to graphene and my company has big application running over django and graphene. I have to segregate some services but that takes djangoobjectype with a model...

✨ enhancement

When upgrading from 2 to 3, the default value of Argument's has changed from undefined to none which changes the schema. An example from `test_relay_connection`: ``` type Query { letters(before:...

I'm building an authorization middleware and I want to include functions/data in the Meta class to store the relevant information in the class itself. However, all custom args in Meta...

I am using pytest-django graphene-django and the first test went well, but one I add a query with an order by. I always get ascending records while I want the...

✨ enhancement

**Is your feature request related to a problem? Please describe.** I'm using graphene_django, which auto-converts model fields to `JSONString`, which doesn't allow customizing the JSONEncoder class. I'm doing this for...

✨ enhancement