[SOLVED] Unable to work the full text search?

const collectionItem = new Collection({name:'kkkkkkk',displayImage:'description',symbol:'description',description:'description',urlPath:'urlPath',contractAddress:'contractAddress',account:''});
collectionItem.save(); 
const query = new Moralis.Query(Collection);
query.fullText("urlPath", "urlPath");
//query.equalTo("urlPath", "urlPath");
const collectionResult =  await query.find();
console.log(collectionResult);

in here query.equalTo works but query.fullText does not provide any results?
Can someone help me on this?

I get error on first line with new Collection

you could try to use a string like kkkkkkk rrr ccc ggg ssa gt as value and try to search for ccc for example

got it thank you :grinning: