Calling cloud function through another cloud function

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?

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

1 Like