graphene
graphene copied to clipboard
GraphQL framework for Python
i updated the libs from former version ( from 2.x to 3.x ) and when i tried to access to graphl explorer i got following initial error Unknown operation named...
**Is your feature request related to a problem? Please describe.** I'm designing a stable external API that needs to wrap our existing fast-moving internal API. Sometimes, I want to call...
**Is your feature request related to a problem? Please describe.** I'm facing a authentication issue when I use GraphQL playground. My server need a custom header to verify if the...
Hi guys, I'm using `graphene==1.1.3` with `graphene-django==1.2.1`. I'm following the Relay specification and I'm having an issue with pagination on connections. When paginating forward using the `first` and `after` arguments...
I want to understand and know the overall roadmap and support model for Graphene in future. Is it boudn to be release in a cadence or its done unplanned ,...
Fixes https://github.com/graphql-python/graphene/issues/1593 Example:- `Decimal(0.01)` created a value `Decimal("0.01000000000000000020816681711721685132943093776702880859375")` Additional: The Decimal field now accepts string, int & float. Previously, it was just string & int
## Current Behavior The `parse_value` function currently converts the input using `_Decimal(value)`. When a float is passed as input, this conversion may lead to precision loss due to the inherent...
* **What is the current behavior?** In order for us to have consistent IDs and unique IDs for all our entities we made all entities were inheriting from this class:...