import { Collection, WithId } from "mongodb"; import { getDb } from "../index"; import type { Product } from "./products.types"; export const getProductsCollection = (): Collection => { return getDb().collection("products"); }; /** Returns all product documents */ export const getAllProducts = (): Promise[]> => { return getProductsCollection().find().toArray(); };