class GraphQL::IntegerEncodingError

This error is raised when ‘Types::Int` is asked to return a value outside of 32-bit integer range.

For values outside that range, consider:

@see GraphQL::Types::Int which raises this error

Attributes

field[R]

@return [GraphQL::Schema::Field] The field that returned a too-big integer

integer_value[R]

The value which couldn’t be encoded

path[R]

@return [Array<String, Integer>] Where the field appeared in the GraphQL response

Public Class Methods

new(value, context:) click to toggle source
Calls superclass method
# File lib/graphql/integer_encoding_error.rb, line 21
def initialize(value, context:)
  @integer_value = value
  @field = context[:current_field]
  @path = context[:current_path]
  message = "Integer out of bounds: #{value}".dup
  if @path
    message << " @ #{@path.join(".")}"
  end
  if @field
    message << " (#{@field.path})"
  end
  message << ". Consider using ID or GraphQL::Types::BigInt instead."
  super(message)
end