With a structure like this:
.doc Name
.colection 1
.doc sub_doc
.colection sub_col1
.doc sub_doc
.colection 2
.doc sub_doc
How can I clone the document(with all of the sub collections etc) in to a new document in Firestore? Basicly creating a 1:1 copy of the document.
Is this a matter of querying the entire document first and rebuilding it from there?
Thanks in advance.