AMAKA
4
Off the top of my head I think you can try this
First: In Option sets, if you already have an option set with roles assigned for users (you should have this anyway to secure your app)
example:
User Roles: (Admin, Other User Type)
You can use this to mark the articles you uploaded by creating a field in the article data type as follows:
Field Name: Uploader
Field Type: Roles (Option set)
If you don’t already have roles or something similar, just add a new field to the article data type as above.
Then you will need to mark all the articles you have uploaded to your database as follows:
uploader= Admin
I am assuming you already have a lot of articles so you will need to run an api flow to change this field for all articles by batch. (Search how to make batch changes to database in bubble if you’re not sure how to do this).
Once you have assigned the uploader field, you can then use RG data source as
RG all list of articles filtered:
list filter
uploader=admin
This should pull up only articles you uploaded. It worked for me. See screenshot