Đối với MongoDB, chúng ta cần thực hiện một truy vấn mongo gốc để phân biệt chữ hoa chữ thường:
const collection = Pet.getDatastore().manager.collection(Pet.tableName);
const res = await collection.find({ name: { $regex: /blue/, $options: 'i' } });
const dataWithObjectIds = await res.toArray();
const dataWithIds = JSON.parse(JSON.stringify(rawDataArr).replace(/"_id"/g, '"id"'));
Xem tại đây để biết thêm về truy vấn mongo gốc - https://stackoverflow.com/a/54830620/1828637