Method: TinyGQL::Nodes::InputObjectTypeExtension#initialize

Defined in:
lib/tinygql/nodes.rb

#initialize(pos, name, directives, input_fields_definition) ⇒ InputObjectTypeExtension

Returns a new instance of InputObjectTypeExtension.



1018
1019
1020
1021
1022
1023
# File 'lib/tinygql/nodes.rb', line 1018

def initialize pos, name, directives, input_fields_definition
  super(pos)
  @name = name
  @directives = directives
  @input_fields_definition = input_fields_definition
end