google-drive-batch-requests
Sends Batch Requests to Google Drive REST API
Unfortunately google-drive-client-nodejs API doesn't support batch requests
So we decided fork Pradeep Mishra's library to make simple interface for drive api batch calling
The library used for sending batch requests for DRIVE API
{
var batch = new googleBatch();
batch.setAuth(authClient.gapi.token);
batch.add({
method: 'PUT',
fileId: myId,
addParents: addParents.join(','),
removeParents: removeParents.join(','),
fields: ['title', 'id', 'parents'].join(',')
});
batch.add({
method: 'PUT',
fileId: myId,
body: {
title: 'myNewTitle'
}
});
batch.exec(function(errors, responses){
// your stuff
});
}
(C) Pradeep Mishra pradeep23oct@gmail.com
(C) @blackrabbit99 myzlio@gmail.com
npm install google-drive-batch-requestsh --save