Closed galeksandrp closed 6 years ago
I need to make multiple PATCH requests for different entities in single $batch, how to do that?
PATCH
$batch
Have you tried the following?
o('/resouce1/2').put(data).batch('/resouce1/3').put(data).save(function () { // ready... });
I need to make multiple
PATCH
requests for different entities in single$batch
, how to do that?