MongoDB के लिए हमें केस-संवेदी प्राप्त करने के लिए एक देशी mongo क्वेरी करने की आवश्यकता है:
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"'));
देशी मोंगो क्वेरी पर अधिक के लिए यहां देखें - https://stackoverflow.com/a/54830620/1828637ए>