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?