Hey! I have used a fetch to post & get information from a route planning site in the backend. I need to automatically pass the data to a frontend page daily. I know I can use the job scheduler to run the backend code but i don’t know to put the returned info from the backend code on the front end. Can anyone help?
Because Job Scheduler is pure backend and is not even aware of a frontend, I think the best thing to do would be to store those data in a collection using Job Scheduler and then simply let the frontend load these data when somebody requests the page.