Copies all Firestore documents matching the provided query to a Firestore collection dest_collection.

This is a Firestore transaction. Either all documents are copied, or none is.

  • Parameters

    Returns Promise<{
        doc_ids: {
            copied: string[];
            skipped: string[];
        };
        message: string;
    }>