Full-text search query issue

Hello there. I’m having issues with the full-text search query.
If I send a string with 3 characters as a parameter no object matches, but if I send a string with 4 or more characters then it does return the matching object.

I leave the code I used for the search below:

const query = new Moralis.Query(“Metadata”);
query.fullText(“name”, filter.search);
let response = await query.find({ useMasterKey: true });
return response;

Looks like fullText can be problematic. In the example I tried, it only worked for full matches (similar behaviour to equalTo). What is the example of 3 characters and 4 characters you have tested with and the returned data (and what should be returned)?

You can try using some other query constraints.

I just used fullText() in a project and it works fine with 1 character or more.

How is your code setup?