Simple POST endpoint to create a customer record and also a customer address record with associated foreign key
// create: customer and associated address record
app.post("/", (req, res) => {
// Customer rec
let insertCustomer = "INSERT INTO Customers (Name) VALUES(?)";
const customerValues = [req.body.name];
insertCustomer = mysql.format(insertCustomer, customerValues);