M Aswin Kishore

Results 3 issues of M Aswin Kishore

Supported versions, v1.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7 All directives are purely based on [apollo-specs](https://specs.apollo.dev/#sec-All-Schemas). Some non existent directive like`@extend` which acted like `@key` was deprecated. Migration Guide...

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...

🐛 bug