Class: GraphQL::Types::Int

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

Overview

See Also:

  • for handling integers outside 32-bit range.

Constant Summary collapse

MIN =
-(2**31)
MAX =
(2**31) - 1

Constants included from Schema::Member::HasDirectives

Schema::Member::HasDirectives::NO_DIRECTIVES

Constants included from Schema::Member::GraphQLTypeNames

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

Instance Attribute Summary

Attributes included from Schema::Member::BaseDSLMethods

#default_graphql_name

Class Method Summary collapse

Methods inherited from Schema::Scalar

default_scalar, default_scalar?, kind, specified_by_url, validate_non_null_input

Methods included from Schema::Member::ValidatesInput

#coerce_isolated_input, #coerce_isolated_result, #valid_input?, #valid_isolated_input?, #validate_input

Methods included from Schema::Member::BaseDSLMethods

#authorized?, #description, #graphql_name, #introspection, #introspection?, #mutation, #name, #visible?

Methods included from Schema::Member::BaseDSLMethods::ConfigurationExtension

#inherited

Methods included from Schema::Member::TypeSystemHelpers

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

Methods included from Schema::Member::Scoped

#scope_items

Methods included from Schema::Member::RelayShortcuts

#connection_type, #connection_type_class, #edge_type, #edge_type_class

Methods included from Schema::Member::HasPath

#path

Methods included from Schema::Member::HasAstNode

#ast_node

Methods included from Schema::Member::HasDirectives

add_directive, #directive, #directives, get_directives, #remove_directive, remove_directive

Class Method Details

.coerce_input(value, ctx) ⇒ Object



12
13
14
15
16
17
18
19
20
21
# File 'lib/graphql/types/int.rb', line 12

def self.coerce_input(value, ctx)
  return if !value.is_a?(Integer)

  if value >= MIN && value <= MAX
    value
  else
    err = GraphQL::IntegerDecodingError.new(value)
    ctx.schema.type_error(err, ctx)
  end
end

.coerce_result(value, ctx) ⇒ Object



23
24
25
26
27
28
29
30
31
# File 'lib/graphql/types/int.rb', line 23

def self.coerce_result(value, ctx)
  value = value.to_i
  if value >= MIN && value <= MAX
    value
  else
    err = GraphQL::IntegerEncodingError.new(value, context: ctx)
    ctx.schema.type_error(err, ctx)
  end
end