I am planning to implement notifications in my Angular 4 web app using Google Firebase. Every user in my application will have his own set of notifications. I have seen that Firebase can broadcast the messages to a user group or to the subscribers of a topic. But, is there any way to send customized notifications to independent users? If I have to use Pub-Sub pattern, is it a right approach to create a topic for every user id and push notifications to those topics?
Thanks in advance.