Listen for update events on documents from a set using set streaming

Hi,

Is there a way to listen for update events on documents using set streaming?
For example if I use the set streaming for a User collection and I want to be notified when a User document has changed. Because right now, as I see in the docs, we are notified only a document is added or removed from the set.

Thank you,
Claudia

Hello Claudia, set streaming can only detect add and remove action. If you want to listen to the updates on a document, you can do document streaming. You can not do a set streaming and listen to document updates. That would be heavy on computation, and it’s a solution that will not scale.
If you could share more about the type of application you are building, I can help map out a solution.