I've setup solr (8.6.3) and managed to index my data. So everything seems fine.
I can do filter searches correctly but when I try a simple search like ?q=test, I get no results. Leaving q empty returns all results.
All used fields are indexed, as text (_t), so there should be results in the index.
I'm thinking that my solrconfig.xml is not correct because I also get the following warning in the mapping form:
_This core seems to have no default field. If there are no results to a default query, add the copy field "text" with source "*"._
I've setup solr (8.6.3) and managed to index my data. So everything seems fine.
I can do filter searches correctly but when I try a simple search like ?q=test, I get no results. Leaving q empty returns all results.
All used fields are indexed, as text (_t), so there should be results in the index.
I'm thinking that my solrconfig.xml is not correct because I also get the following warning in the mapping form: _This core seems to have no default field. If there are no results to a default query, add the copy field "text" with source "*"._
Is there an example of a working solrconfig.xml?