You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
objQuery.q({ Name : req.query.search })
.matchFilter("ProductAddedOn","["+todaydate+" TO "+currentDateTime+" ]")
.facet({on:true,field:"MerchantCampaignName"})
.facet({field:"Colour"})
.facet({field:"Brand"})
.facet({field:"Size"})
.facet({query:"Price:[* TO 300]"})
.facet({query:"Price:[301 TO 500]"})
.facet({query:"Price:[501 TO *]"})
.start(0)
.rows(50)
;
below is my query:
var objQuery = client.createQuery();
objQuery.q({ Name : req.query.search })
.matchFilter("ProductAddedOn","["+todaydate+" TO "+currentDateTime+" ]")
.facet({on:true,field:"MerchantCampaignName"})
.facet({field:"Colour"})
.facet({field:"Brand"})
.facet({field:"Size"})
.facet({query:"Price:[* TO 300]"})
.facet({query:"Price:[301 TO 500]"})
.facet({query:"Price:[501 TO *]"})
.start(0)
.rows(50)
;
how to implement spellcheck with this query?
I checked this file for function
https://github.com/lbdremy/solr-node-client/blob/master/lib/query.js
spellcheck function is not available here (which is available in another module solr-node == https://github.com/godong9/solr-node/blob/master/lib/query.js)
I want to use your plugin because bq query is not available on solr-node plugin. so spellcheck is missing or as there another way to implement?
The text was updated successfully, but these errors were encountered: