I'm trying to use Cloud Firestore to create my app and I have a problem. I have 2 docs that contains reference the same other doc. Which the best way to create this?
Ex:
doc1 = {name: 'name 1', doc3: doc3}
doc2 = {descricao: 'desc 1', doc3: doc3}
doc3 = {.....}
Anybody help me?