class Graphql::Generators::TypeGeneratorBase::NormalizedField

def initialize(name, type_expr, null)

def initialize(name, type_expr, null)
  @name = name
  @type_expr = type_expr
  @null = null
end

def to_ruby

def to_ruby
  "field :#{@name}, #{@type_expr}, null: #{@null}"
end