Invoking many OpenWhisk actions from another one
I have a project where I need to store a number of items into a data store. I have an OpenWhisk action that stores the items so I wrote an action that takes advantage of the OpenWhisk JS client library to do invoke my store action once for each item in an array that this action receives. This is the JavaScript code that I used: "use strict"; const openwhisk = require('openwhisk'); async function main(params) {… continue reading.