Hey @chiprana ,

I think for the instant notification part, I’d do the following:

  • Save who won somewhere in the database.
  • When anyone logs into the app or opens up the page to see this “notification”, it does a real-time check: Is the current user the winner? If yes > great, show a message. If no > ok, show a different message and let them know they’ll be credited soon.

So, rather than waiting for a notification record to be ready, you just do a real-time conditional check. You can still run a background recursive flow to create the data you need (“permanent” notification record, credit, etc.), but if thousands of users are logging in to check if they won or not, this will be a more instant way of letting them know.

Even better – you could have a yes/no field on the user. If won, field = yes. This way, you’ve eliminated the need to search at all.

Just a thought!


Cheers, Gaby
Co-Founder at Coaching No Code Apps
Free Bubble Masterclass
Private Help

2 Likes