• Fetches all documents from a specified Firestore collection path.

    Parameters

    • collection_path: string

      The path of the collection to fetch

    Returns Promise<{
        document: firestore.DocumentData;
        full_path: string;
        id: string;
    }[]>

    A Promise resolving to an array of objects with the shape { id, full_path, document }