Method: Filemaker::Api::QueryCommands#findany

Defined in:
lib/filemaker/api/query_commands/findany.rb

#findany(options = {}) ⇒ Object

Find a random record.

If data cannot be coerced, it will crash! Acceptable params are: -script -script.param -script.prefind -script.prefind.param -relatedsets.filter -relatedsets.max



15
16
17
18
19
20
21
22
23
# File 'lib/filemaker/api/query_commands/findany.rb', line 15

def findany(options = {})
  valid_options(options,
                :script,
                :script_prefind,
                :relatedsets_filter,
                :relatedsets_max)

  perform_request('-findany', {}, options)
end