We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When trying to import with parameters i get ArgumentError: wrong number of arguments (given 1, expected 0)
data.import(**import_options) do |response| ... end
import_options is a hash obviously. Same error when calling import like data.import(batch_size:500) do |response|
data.import(batch_size:500) do |response|