Christian Fritzsche
05/20/2025, 10:46 AM$searchParameters = [
"q" => "leip*",
"query_by" => "seo_query",
"filter_by" => "main_entry:=true"
];
then 65 documents are found in my index, which is great.
But I want to use the filter to find cities. When I search like this:
$searchParameters = [
"q" => "*",
"query_by" => "seo_query",
"filter_by" => "seo_query:=leip* && main_entry:=true"
];
then there are no documents found. Why?