I want to create multiple records and I don’t want a follow-up SELECT
to be executed.
Is there a way to avoid the automatic SELECT
query?
Currently doing this:
my_relation.command(:create, result: :one).call records
And it still executes a SELECT
with the IDs of ALL the new records.