Class: GraphQL::BaseType

Inherits:
Object
  • Object
show all
Includes:
Define::InstanceDefinable, Define::NonNullWithBang
Defined in:
lib/graphql/base_type.rb

Overview

The parent for all type classes.

Defined Under Namespace

Modules: HasPossibleTypes, ModifiesAnotherType

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Define::InstanceDefinable

included

Methods included from Define::NonNullWithBang

#!

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



6
7
8
# File 'lib/graphql/base_type.rb', line 6

def description
  @description
end

#nameObject

Returns the value of attribute name.



6
7
8
# File 'lib/graphql/base_type.rb', line 6

def name
  @name
end

Instance Method Details

#==(other) ⇒ Boolean

Returns are these types equivalent? (incl. non-null, list).

Parameters:

Returns:

  • (Boolean)

    are these types equivalent? (incl. non-null, list)



11
12
13
14
15
16
17
# File 'lib/graphql/base_type.rb', line 11

def ==(other)
  if other.is_a?(GraphQL::BaseType)
    self.to_s == other.to_s
  else
    super
  end
end

#coerce_input(value) ⇒ Object



87
88
89
90
# File 'lib/graphql/base_type.rb', line 87

def coerce_input(value)
  return nil if value.nil?
  coerce_non_null_input(value)
end

#resolve_type(value) ⇒ Object

Find out which possible type to use for ‘value`. Returns self if there are no possible types (ie, not Union or Interface)



43
44
45
# File 'lib/graphql/base_type.rb', line 43

def resolve_type(value)
  self
end

#to_list_typeGraphQL::ListType

Returns a list version of this type.

Returns:



31
32
33
# File 'lib/graphql/base_type.rb', line 31

def to_list_type
  GraphQL::ListType.new(of_type: self)
end

#to_non_null_typeGraphQL::NonNullType

Returns a non-null version of this type.

Returns:



26
27
28
# File 'lib/graphql/base_type.rb', line 26

def to_non_null_type
  GraphQL::NonNullType.new(of_type: self)
end

#to_sObject Also known as: inspect

Print the human-readable name of this type using the query-string naming pattern



72
73
74
# File 'lib/graphql/base_type.rb', line 72

def to_s
  name
end

#unwrapObject

If this type is modifying an underlying type, return the underlying type. (Otherwise, return ‘self`.)



21
22
23
# File 'lib/graphql/base_type.rb', line 21

def unwrap
  self
end

#valid_input?(value) ⇒ Boolean

Returns:

  • (Boolean)


78
79
80
# File 'lib/graphql/base_type.rb', line 78

def valid_input?(value)
  validate_input(value).valid?
end

#validate_input(value) ⇒ Object



82
83
84
85
# File 'lib/graphql/base_type.rb', line 82

def validate_input(value)
  return GraphQL::Query::InputValidationResult.new if value.nil?
  validate_non_null_input(value)
end