Untitled
unknown
plain_text
a year ago
301 B
5
Indexable
const updateProductName = async (id, name) => { const product = await productsModel.findById(id); if (!product) { throw new Error('Product not found'); } await productsModel.updateProductName(id, name); const updatedProduct = await productsModel.findById(id); return updatedProduct; };
Editor is loading...
Leave a Comment