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: ModifiesAnotherType

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Define::InstanceDefinable

#define, #metadata, #redefine

Methods included from Define::NonNullWithBang

#!

Instance Attribute Details

#descriptionString?

Returns a description for this type.

Returns:

  • (String, nil)

    a description for this type



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

def description
  @description
end

#nameString

Returns the name of this type, must be unique within a Schema.

Returns:

  • (String)

    the name of this type, must be unique within a Schema



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

def name
  @name
end

Class Method Details

During schema definition, types can be defined inside procs or as strings. This function converts it to a type instance

Returns:



99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/graphql/base_type.rb', line 99

def self.resolve_related_type(type_arg)
  case type_arg
  when Proc
    # lazy-eval it
    type_arg.call
  when String
    # Get a constant by this name
    Object.const_get(type_arg)
  else
    type_arg
  end
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)



29
30
31
32
33
34
35
# File 'lib/graphql/base_type.rb', line 29

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

#coerce_input(value) ⇒ Object



84
85
86
87
# File 'lib/graphql/base_type.rb', line 84

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

#connection_typeGraphQL::ObjectType

Returns The default connection type for this object type.

Returns:



113
114
115
# File 'lib/graphql/base_type.rb', line 113

def connection_type
  @connection_type ||= define_connection
end

#define_connection(**kwargs, &block) ⇒ GraphQL::ObjectType

Define a custom connection type for this object type

Returns:



119
120
121
# File 'lib/graphql/base_type.rb', line 119

def define_connection(**kwargs, &block)
  GraphQL::Relay::ConnectionType.create_type(self, **kwargs, &block)
end

#define_edge(**kwargs, &block) ⇒ GraphQL::ObjectType

Define a custom edge type for this object type

Returns:



130
131
132
# File 'lib/graphql/base_type.rb', line 130

def define_edge(**kwargs, &block)
  GraphQL::Relay::EdgeType.create_type(self, **kwargs, &block)
end

#edge_typeGraphQL::ObjectType

Returns The default edge type for this object type.

Returns:



124
125
126
# File 'lib/graphql/base_type.rb', line 124

def edge_type
  @edge_type ||= define_edge
end

#get_field(name) ⇒ GraphQL::Field?

Types with fields may override this

Parameters:

  • name (String)

    field name to lookup for this type

Returns:



92
93
94
# File 'lib/graphql/base_type.rb', line 92

def get_field(name)
  nil
end

#initialize_copy(other) ⇒ Object



14
15
16
17
18
19
# File 'lib/graphql/base_type.rb', line 14

def initialize_copy(other)
  super
  # Reset these derived defaults
  @connection_type = nil
  @edge_type = nil
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)



61
62
63
# File 'lib/graphql/base_type.rb', line 61

def resolve_type(value)
  self
end

#to_list_typeGraphQL::ListType

Returns a list version of this type.

Returns:



49
50
51
# File 'lib/graphql/base_type.rb', line 49

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:



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

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



66
67
68
# File 'lib/graphql/base_type.rb', line 66

def to_s
  name
end

#unwrapObject

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



39
40
41
# File 'lib/graphql/base_type.rb', line 39

def unwrap
  self
end

#valid_input?(value, warden) ⇒ Boolean

Returns:

  • (Boolean)


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

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

#validate_input(value, warden) ⇒ Object



76
77
78
79
80
81
82
# File 'lib/graphql/base_type.rb', line 76

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