Is there a way for a user to only be able to read a document only if they have the exact document ID?
// should fail:
db.collection(`docs`).get()
// should succeed:
db.doc(`docs/${docId}`).get()
It'll be like how if you have link sharing on in a Google Doc and you can only access the Doc if you have the link.