[I know how to call a function and pass values from index.js to Cloud Code](https://github.com/parse-community/parse-server/issues/4013) How to do this in reverse side? Calling a function in Index.js from a Cloud function. index.js ```javascript //Parse Server Initialization var api = new ParseServer({ databaseURI: databaseUri, ...... }); function call_this_function_from_cloud_code(req ,res){ } ``` cloud/main.js ```node function cloud_function_to_call(){ //How to call //call_this_function_from_cloud_code } ```