Fixed bug on full search

This commit is contained in:
dbroqua 2019-03-15 13:55:10 +01:00
parent 338eeb4562
commit 218f5de6a0

View file

@ -141,7 +141,7 @@ class Vegetables {
vegetables.findAndCountAll({ vegetables.findAndCountAll({
where: { where: {
name: { name: {
[Op.iLike]: req.query.q [Op.like]: `%${req.query.q}%`
} }
}, },
include: ['Type'], include: ['Type'],