Hey all! I have a "watch" feature on my app that would send a push notification to all users who are "watching" another user on certain actions. This could result in hundreds or more push notifications all at once (using FlutterFlow's built in multiple users push notification action) and I'm worried about the scalability of this as this is a lot for client to do.
Should I move this action to a cloud function? If yes, how might I go about doing this? E.g. do you have a recommendation on how to approach this, should I just query the users I want to send to and one at a time trigger a notif somehow?
Thanks ahead of time!