Description
In order to be able to create multiple records in an optimal manner, it would be desirable to use the batched bulk way. Salesforce implement it (documentation) but not sure if the restforce gem that we are using in the middle has compatibility with this API. In the worst scenario ever, we can always use the composite API and composite batch API (implemented in restforce) for this purpose.
Acceptance Criteria
- We have implemented the methods
insert_all and insert_all! for creating objects in a bulk way on Salesforce.
Description
In order to be able to create multiple records in an optimal manner, it would be desirable to use the batched bulk way. Salesforce implement it (documentation) but not sure if the
restforcegem that we are using in the middle has compatibility with this API. In the worst scenario ever, we can always use the composite API and composite batch API (implemented in restforce) for this purpose.Acceptance Criteria
insert_allandinsert_all!for creating objects in a bulk way on Salesforce.