Class: GraphQL::Schema::LateBoundType

Inherits:
Object
  • Object
show all
Defined in:
lib/graphql/schema/late_bound_type.rb

Overview

A stand-in for a type which will be resolved in a given schema, by name. TODO: support argument types too, make this a public API somehow

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(local_name) ⇒ LateBoundType

Returns a new instance of LateBoundType.



10
11
12
# File 'lib/graphql/schema/late_bound_type.rb', line 10

def initialize(local_name)
  @name = local_name
end

Instance Attribute Details

#nameObject (readonly) Also known as: graphql_name



8
9
10
# File 'lib/graphql/schema/late_bound_type.rb', line 8

def name
  @name
end

Instance Method Details

#inspectObject Also known as: to_s



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

def inspect
  "#<LateBoundType @name=#{name}>"
end

#to_list_typeObject



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

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

#to_non_null_typeObject



18
19
20
# File 'lib/graphql/schema/late_bound_type.rb', line 18

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

#unwrapObject



14
15
16
# File 'lib/graphql/schema/late_bound_type.rb', line 14

def unwrap
  self
end