Is there a way to modify the arguments of a schedule function?
args: {
id: v.id("_scheduled_functions"),
},
handler: async (ctx, args) => {
return await ctx.db.system.get(args.id);
},
});
I'd like to fetch the schedule, just like in the example document, and modify the arguments that are reserved.
Is there any good way?
