class GraphQL::Argument

def type=(new_input_type)

Parameters:
  • new_input_type (GraphQL::BaseType, Proc) -- Assign a new input type for this argument (if it's a proc, it will be called after schema initialization)
def type=(new_input_type)
  @clean_type = nil
  @dirty_type = new_input_type
end