A decimal separator is a symbol used to separate the integer part from the fractional part of a number written in decimal form (e.g. "." in 12.45). Different countries officially designate different ...
I've been using my own implementation of a Decimal type -- maybe it should be included as a standard type? from graphene.types import Scalar from graphql.language import ast class Decimal(Scalar): """ ...