I have multiple clients that connect to Appwrite. If any of them change a document in the database, a realtime event is triggert. That event is then send to all subscribers. So far, so good. Now my question: Is it possible to identify which client triggered the event? Because my flutter-client needs the ability to ignore events that it itself caused.
TL;DR
The user has multiple clients connected to Appwrite, and when any of them change a document, a realtime event is triggered and sent to all subscribers. The user wants to know if it's possible to identify which client triggered the event, as their flutter-client needs to ignore events that it caused itself.