How to make a delete route for multiple items with Node js + Express + MySQL?
Trying to delete an group of items coming from the client by their sku code. import express from 'express'; import { pool } from './mysql'; import cors from 'cors'; import { config } from 'dotenv'; config(); const app = express();…