I want keyword search in nodejs with mongodb as DB, I tried few things but din't work.
const response = await db.collection.find({ $text: { $search: searchstring }});
this is working for text search but not for keyword search.
for ex: if I am searching John , it is giving me all doc containing John but if I am searching with jo , it is giving empty result.
Can anyone please suggest how to search with keyword.