TypeScript req.Query.Query
// req.query.shopEventId is possibly === undefined
if (!req.query.shopEventId) {
return res.status(400).send()
}
const shopEventId: string = String(req.query.shopEventId)
florinrelea