Is it possible to create a screen with all the push notifications a user has received?

Let’s say I figured out how to set up push notifications outside the app, but is there a way to display these notifications in a list on a separate screen? For example, so that it shows when a user has subscribed to you, when a user has liked your comment, and so on. Essentially, there’s no separate collection for push notifications. If notifications were within the app, then a collection could be used.

Hi @olga.solovyeva60

You have to create a collection to achieve this. And you need to trigger CREATE function accordingly.

So, as I understand it, the only option is that the action that triggers the push notification should simultaneously create a record in the collection? If so, that would mean a lot of records in the collection… since there are a lot of users and a lot of notifications.

Hi,

One collection can save multiple records, I’m not sure why you are thinking to add lot of collections.

I’m talking about a single collection. So, to implement this feature, I need to create a record in that collection for each notification?

@olga.solovyeva60 that’s the only feasible way to implement this. You need to store the information about push notifications somewhere.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.