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

Hi, * **What is the current behavior?** When I am working with the following set up of graphene Mutation: ```python class AnimalFarm(graphene.Mutation): class Arguments: animals = graphene.List(graphene.String, default_value=[]) output =...

I'm currently attempting to upload files using Graphene and have explored several packages in my search. Unfortunately, none of them have proven effective. It seems to be a notable issue...

✨ enhancement

In my current project which depends on `graphene` (3.3) I encountered my logs unusable since they were heavily polluted with the following warning: ``` /home/wagtail/.local/lib/python3.9/site-packages/graphene/utils/subclass_with_meta.py:46: DeprecationWarning: Creating a DjangoObjectType without...

## What is the expected behavior? I expect the following code to always succeed. It succeeds in simple scripts. But in a larger code base it fails: ```python class Kind(graphene.Enum):...

🐛 bug

- upgrade test packages to latest - revise tests to be compatible with pytest v7 and onwards

Python 3.12 will be released on 2023-10-02. Test package `snapshottest` failed to import due to `imp` [dropped](https://github.com/syrusakbary/snapshottest/issues/166#issue-1689681982) in py3.12 This PR aim at python 3.12 can pass all tests.

python 3.7 is already EOL, suggest to keep supported version as official 3.8-3.11, and set 3.11 as default in the pipeline

Added test cases for Context util class.