If a cloud function is called trough another cloud function.
Will the original
- request
- params
- user
arguments from the original cloud function call be forwarded?
If a cloud function is called trough another cloud function.
Will the original
arguments from the original cloud function call be forwarded?
I think that you could call explicitly another function from your cloud functions and send the original request parameter
And if you donโt pass the arguments explicitly, what is the default value?
I donโt know exactly, didnโt test it, you can use logger.info(JSON.stringify(request))
to see what you have there