Re: Possible to add a default "appends" fq except for queries in the admin GUI?

2020-10-22 Thread Batanun B
Well, we are not making the http requests to solr, we are using a 3rd party component for that, which as configuration basically only takes a base URL (ie domain, port etc, without path) and the name of the collection. So it is not possible to define the request parser here. So we would have to

Re: Possible to add a default "appends" fq except for queries in the admin GUI?

2020-10-22 Thread Alexandre Rafalovitch
Why not have a custom handler endpoint for your online queries? You will be modifying them anyway to remove fq. Or even create individual endpoints for every significant use-case. You can share the configuration between them with initParams or useParams, but have more flexibility going forward.

Possible to add a default "appends" fq except for queries in the admin GUI?

2020-10-22 Thread Batanun B
Hi, We have multiple components that uses the Solr search feature on our websites. But we have some documents in the index that we never want to display in the search results (nothing secret or anything, just uninteresting for the user to see). So far, we have added a fq to all our queries,