solr-node
solr-node copied to clipboard
Simple Solr Node Client Project.
in pr https://github.com/godong9/solr-node/pull/84 the line 36 of the index.d.ts has been changed to `suggestQuery(params: SuggestQueryParams | string): this;` however the interface itself on line 125 wasn't changed. This causes transpile...
As this package is no longer maintained and has an [active high-severity vulnerability through its dependency on node-fetch < 2.6.7](https://github.com/advisories/GHSA-r683-j2x4-v87g), please mark this package as deprecated in NPM. Thanks for...
As you can see in lib/query.js line 157 and 176 a filter query never really expects a string, only an object with field and value. If I'd send a string...
how to initialize the client with zk host string when solr is in cloud mode? like `zk1:2181,zk2:2181,zk3:2181/solr` based on the current code we have ``` var client = new SolrNode({...
I have a web app and solr both behind an api gateway. So i want to create a client which uses only a relative path. In the documentation you say...
When using a query object, one can now call setParam() to remove former params from the params list (f.e. fq=...) and then set the new given param.
Promisification was not working on this function when calling using single argument `.update(data)`
Added missing types to the suggest method
The doc shows using the addParams() method in the "Complex and Chained" as ``` client.query() .q({text:'test', title:'test'}) .addParams({ wt: 'json', indent: true }) .start(1) .rows(1) ; ``` This suggests the...