function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Hazee.LiHazee.Li 

Mobile SDK 2.x,Hybrid, how to save array of records at once to Salesforce (in online mode)

I have been trying to save array of records with smartSync, unfortunatly smartSync does not provide a way to save an array at once. What I had to do was that iterate through the array with calling the save method for each object/record, which causes the slowliness of my mobile app. 
Apperently I found that there is a saveAll method though it saves records only to the cache which does not fullfill my requirnment (I need to save all the records in one call to SFDC).

my question is, is there a way to save collection/array of records at once with smartSync?