Untitled

Anonymous
plain_text
01/23/2024 2:26 AM
404 B
13
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