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

* **What is the current behavior?** When trying to use the test client in unit tests, it is still based on Promises which is no longer imported. * **What is...

🐛 bug

I find myself making this mutation often: ```gql mutation { createMember(input: {name: "new name", email: "[email protected]", password: "123"}) { member { id } errors { field message } } }...

🐛 bug

**Note: for support questions, please use stackoverflow**. This repository's issues are reserved for feature requests and bug reports. * **What is the current behavior?** When converting a schema object to...

🐛 bug

I was hoping that `graphql-relay` could be removed as a base requirement in setup.py if it isn't actually required for people who have no need for relay. Perhaps a specific...

✨ enhancement

* **What is the current behavior?** I have a query that returns a semi-large amount of data (1.3MB, maybe 100,000 objects). When I run the query using `response = schema.execute(query)`,...

🐛 bug

Declaring a DateTime with default_value in InputObjectType makes schema unprintable due to unsupported conversion in `graphql/utils/ast_from_value.py` InputObjectType declared as: ``` class Filters(InputObjectType): datetime_after = DateTime(required=False, default_value=datetime.min) datetime_before = DateTime(required=False, default_value=datetime.max)...

🐛 bug

I followed the steps in https://graphene-django-murali.readthedocs.io/en/latest/rest-framework.html ``` class Produto(models.Model): nome = models.CharField(max_length=50, unique=True) tamanho = models.IntegerField(null=True, blank=True) preco = models.DecimalField(max_digits=8, decimal_places=2) quantidade = models.IntegerField() def __str__(self): return self.nome class Meta:...

🐛 bug

I used graphene for my project and it worked quite well, but I had a really tough time modifying json response, for example adding count of total matched records. I...

✨ 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?** You can't actually execute the example...

🐛 bug

I want to update a django model that has a one to many relation with the model that has the mutation. I know this is possible with queries and also...

✨ enhancement