module Ariadne::Forms::Dsl::InputMethods

def multi(**options, &block)

Parameters:
  • block (Proc) -- A block that will be yielded a reference to the input object so it can be customized.
  • options (Hash) -- The options accepted by the multi input (see forms docs).
def multi(**options, &block)
  add_input(MultiInput.new(builder: builder, form: form, **options, &block))
end