Я с Parse Server 3.0. Я хотел бы вызвать Job из приложения. js или index. js (в зависимости от того, как было сгенерировано приложение Express JS).
В моем облачном коде main.js
// JOB
Parse.Cloud.job("myJob", async (request) => {
// params: passed in the job call
// headers: from the request that triggered the job
// log: the ParseServer logger passed in the request
// message: a function to update the status message of the job object
const { params, headers, log, message } = request;
message("I just started");
const query_log = new Parse.Query("Log");
const unique_aas_names = await query_log.distinct("aas_name");
// E.g.: {"result":["MHA-L29","MHA-L30"]}
message("I just finished");
console.log("unique_aas_names.length: " + unique_aas_names.length);
return unique_aas_names;
});
Можно ли вызвать задание из индекса. js в приложении Parse Server?