hi guy how to write a resolver that schedule actio...
# orm-help
v
hi guy how to write a resolver that schedule action at specific timing? (time set by post body)
h
I think you can use a cron queue for this. Try using this package: https://www.npmjs.com/package/node-cron
v
thanks but this will run cron (every period of time). would like to run once only at specific time
h
Then you can use a job queue like bull: https://github.com/OptimalBits/bull
v
thanks looking into it but seem no specific time schedule
j