Class: GraphQL::Types::Float

Inherits:
Schema::Scalar show all
Defined in:
lib/graphql/types/float.rb

Constant Summary

Constants included from Schema::Member::GraphQLTypeNames

Schema::Member::GraphQLTypeNames::Boolean, Schema::Member::GraphQLTypeNames::ID, Schema::Member::GraphQLTypeNames::Int

Class Method Summary collapse

Methods inherited from Schema::Scalar

default_scalar, kind, to_graphql

Methods included from Schema::Member::TypeSystemHelpers

#kind, #list?, #non_null?, #to_list_type, #to_non_null_type, #to_type_signature

Methods included from Schema::Member::BaseDSLMethods

#accessible?, #authorized?, #description, #graphql_name, #introspection, #mutation, #name, #overridden_graphql_name, #to_graphql, #visible?

Methods included from Relay::TypeExtensions

#connection_type, #define_connection, #define_edge, #edge_type

Methods included from Schema::Member::CachedGraphQLDefinition

#graphql_definition, #initialize_copy

Class Method Details

.coerce_input(value, _ctx) ⇒ Object



8
9
10
# File 'lib/graphql/types/float.rb', line 8

def self.coerce_input(value, _ctx)
  value.is_a?(Numeric) ? value.to_f : nil
end

.coerce_result(value, _ctx) ⇒ Object



12
13
14
# File 'lib/graphql/types/float.rb', line 12

def self.coerce_result(value, _ctx)
  value.to_f
end