I made an app in that user can bookmark a page for that I create a collection in firestore
UserList(collection)
-> UserIdgenerated(document)
-> profile(sub-collection)
-> fav(sub-collection)
-> service_page (document)
-> details
and I got another(say second collection) collection
service(collection)
-> service_page(document)
-> details
now I want to bookmark second collection document and display bookmarks in fragments. MY solution is to copy service_page details to userList fav collection
Question Is there any way to create bookmark by creating second collection document link to fav collection?