I’m trying to update my collection with a recurring jo, it works manually with a button but not with the recurring jobs.
any idea if I’m missing something.
// The following code is an example of a job. Adapt the code for your specific use case.
{
"jobs": [{
// Option 1: Define execution interval using a cron expression
"functionLocation": "/dataUpdate.jsw", // Relative to Backend folder, started by slash
"functionName": "dataUpdateFunction",
"description": "Update data every minute", // Optional
"executionConfig": {
"cronExpression": "* * * * *" // Set a recurrence of no less than 1 hour
// Read about Cron expressions: [https://en.wikipedia.org/wiki/Cron#CRON_expression]
}
},
]
}