本文整理汇总了Python中graphene.Float方法的典型用法代码示例。如果您正苦于以下问题:Python graphene.Float方法的具体用法?Python graphene.Float怎么用?Python graphene.Float使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类graphene
的用法示例。
在下文中一共展示了graphene.Float方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: convert_ndb_float_property
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def convert_ndb_float_property(ndb_prop, registry=None):
return convert_ndb_scalar_property(Float, ndb_prop)
示例2: testFloatProperty_shouldConvertToString
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def testFloatProperty_shouldConvertToString(self):
self.__assert_conversion(ndb.FloatProperty, graphene.Float)
示例3: convert_column_to_float_or_id
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def convert_column_to_float_or_id(type, attribute, registry=None):
if attribute.is_hash_key:
return ID(description=attribute.attr_name, required=not attribute.null)
return Float(description=attribute.attr_name, required=not attribute.null)
示例4: test_should_number_convert_float
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def test_should_number_convert_float():
assert_attribute_conversion(NumberAttribute(), graphene.Float)
示例5: __init__
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def __init__(self):
self._typeMap = {}
self.Field = create_registry_field(self)
self.Argument = create_registry_argument(self)
self.List = create_registry_list(self)
self.NonNull = create_registry_nonnull(self)
registering_metaclass = create_registering_metaclass(self)
self.Union = create_union(registering_metaclass, self)
self.Enum = create_enum(registering_metaclass)
self.Mutation = graphene.Mutation
# Not looping over GRAPHENE_TYPES in order to not fool lint
self.ObjectType = create_registering_class(graphene.ObjectType, registering_metaclass)
self.InputObjectType = create_registering_class(
graphene.InputObjectType, registering_metaclass
)
self.Interface = create_registering_class(graphene.Interface, registering_metaclass)
self.Scalar = create_registering_class(graphene.Scalar, registering_metaclass)
# Not looping over GRAPHENE_BUILTINS in order to not fool lint
self.String = graphene.String
self.addType(graphene.String)
self.Int = graphene.Int
self.addType(graphene.Int)
self.Float = graphene.Float
self.addType(graphene.Float)
self.Boolean = graphene.Boolean
self.addType(graphene.Boolean)
self.ID = graphene.ID
self.addType(graphene.ID)
self.GenericScalar = GenericScalar
self.addType(GenericScalar)
示例6: test_should_float_convert_float
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def test_should_float_convert_float():
assert get_field(types.Float()).type == graphene.Float
示例7: convert_field_to_float
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def convert_field_to_float(field, registry=None):
return graphene.Float(
description=get_field_description(field, registry), required=field.required
)
示例8: test_should_decimal_convert_float
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def test_should_decimal_convert_float():
assert_conversion(mongoengine.DecimalField, graphene.Float)
示例9: test_should_float_convert_float
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def test_should_float_convert_float():
assert_conversion(mongoengine.FloatField, graphene.Float)
示例10: convert_form_field_to_float
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def convert_form_field_to_float(field):
return Float(description=field.help_text, required=field.required)
示例11: test_should_float_convert_float
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def test_should_float_convert_float():
assert_conversion(serializers.FloatField, graphene.Float)
示例12: test_should_decimal_convert_float
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def test_should_decimal_convert_float():
assert_conversion(
serializers.DecimalField, graphene.Float, max_digits=4, decimal_places=2
)
示例13: test_should_auto_convert_duration
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def test_should_auto_convert_duration():
assert_conversion(models.DurationField, graphene.Float)
示例14: test_should_float_convert_float
# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def test_should_float_convert_float():
assert_conversion(models.FloatField, graphene.Float)