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

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

  • Parameters

    Returns Promise<{
        doc_ids: {
            moved: {
                dest: string;
                src: string;
            }[];
            skipped: string[];
        };
        message: string;
    }>