Skip to content

Commit

Permalink
improvement: convert decimal field to graphene decimal (#1083)
Browse files Browse the repository at this point in the history
  • Loading branch information
zbyte64 committed Dec 30, 2020
1 parent e559a42 commit 2d0b9dd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions graphene_django/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
DateTime,
Date,
Time,
Decimal,
)
from graphene.types.json import JSONString
from graphene.utils.str_converters import to_camel_case
Expand Down Expand Up @@ -160,6 +161,10 @@ def convert_field_to_boolean(field, registry=None):


@convert_django_field.register(models.DecimalField)
def convert_field_to_decimal(field, registry=None):
return Decimal(description=field.help_text, required=not field.null)


@convert_django_field.register(models.FloatField)
@convert_django_field.register(models.DurationField)
def convert_field_to_float(field, registry=None):
Expand Down
4 changes: 4 additions & 0 deletions graphene_django/tests/test_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,10 @@ def test_should_float_convert_float():
assert_conversion(models.FloatField, graphene.Float)


def test_should_float_convert_decimal():
assert_conversion(models.DecimalField, graphene.Decimal)


def test_should_manytomany_convert_connectionorlist():
registry = Registry()
dynamic_field = convert_django_field(Reporter._meta.local_many_to_many[0], registry)
Expand Down

0 comments on commit 2d0b9dd

Please sign in to comment.