Devin
04/14/2022, 7:01 PMcomicSeries: { title: 'whatevr', active: true/false }
and then customers haveMany
subscriptions that look like this
subscriptions: {[{ comicTitle: 'whatevr', active: true/false }]}
So a comic or subscription can be active
. This works great 🎉
When a comicSeries becomes inactive, I want to deactivate each subscription for each customer. Realistically, I can just do this in a lambda. But isn’t this technically a use for a queue?
My question is, how would you handle this in a robust way?thdxr
04/14/2022, 7:03 PMthdxr
04/14/2022, 7:06 PMthdxr
04/14/2022, 7:06 PMSeth Geoghegan
04/14/2022, 8:18 PMDerek Kershner
04/14/2022, 11:32 PMDerek Kershner
04/14/2022, 11:35 PMDerek Kershner
04/14/2022, 11:36 PMSeth Geoghegan
04/14/2022, 11:37 PMDevin
04/15/2022, 1:59 AMDerek Kershner
04/15/2022, 2:01 AMDevin
04/15/2022, 2:59 AM