Schedule function invocations using standard crontab configurations (e.g. `*/5 * * * *` to execute every 5 minutes).
Configure cron schedules visually inside the dashboard editor. You can view schedule records, enable/disable timers, inspect triggered executions outputs, and execute manual runs to test cron actions.
// CRON Expression: "0 0 * * *" (Every day at midnight)
export default async function handler(context) {
const { database, logger } = context;
logger.info("Executing daily cleanup of temporary logs...");
const col = database.collection("temp_logs");
// ... execute cleaning logic ...
}