当前位置: 首页>>代码示例>>Python>>正文


Python graphene.Float方法代码示例

本文整理汇总了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) 
开发者ID:graphql-python,项目名称:graphene-gae,代码行数:4,代码来源:converter.py

示例2: testFloatProperty_shouldConvertToString

# 需要导入模块: import graphene [as 别名]
# 或者: from graphene import Float [as 别名]
def testFloatProperty_shouldConvertToString(self):
        self.__assert_conversion(ndb.FloatProperty, graphene.Float) 
开发者ID:graphql-python,项目名称:graphene-gae,代码行数:4,代码来源:test_converter.py

示例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) 
开发者ID:yfilali,项目名称:graphql-pynamodb,代码行数:7,代码来源:converter.py

示例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) 
开发者ID:yfilali,项目名称:graphql-pynamodb,代码行数:4,代码来源:test_converter.py

示例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) 
开发者ID:dagster-io,项目名称:dagster,代码行数:34,代码来源:dauphin_registry.py

示例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 
开发者ID:graphql-python,项目名称:graphene-sqlalchemy,代码行数:4,代码来源:test_converter.py

示例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
    ) 
开发者ID:graphql-python,项目名称:graphene-mongo,代码行数:6,代码来源:converter.py

示例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) 
开发者ID:graphql-python,项目名称:graphene-mongo,代码行数:4,代码来源:test_converter.py

示例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) 
开发者ID:graphql-python,项目名称:graphene-mongo,代码行数:4,代码来源:test_converter.py

示例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) 
开发者ID:graphql-python,项目名称:graphene-django,代码行数:4,代码来源:converter.py

示例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) 
开发者ID:graphql-python,项目名称:graphene-django,代码行数:4,代码来源:test_field_converter.py

示例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
    ) 
开发者ID:graphql-python,项目名称:graphene-django,代码行数:6,代码来源:test_field_converter.py

示例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) 
开发者ID:graphql-python,项目名称:graphene-django,代码行数:4,代码来源:test_converter.py

示例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) 
开发者ID:graphql-python,项目名称:graphene-django,代码行数:4,代码来源:test_converter.py


注:本文中的graphene.Float方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。