Christian Fritzsche
05/21/2025, 8:09 AMcurl '<http://localhost:8108/multi_search?query_by=seo_query>' -X POST -H "X-TYPESENSE-API-KEY: ${TYPESENSE_API_KEY}" -d '
{
"searches": [
{
"collection": "geodb",
"q": "leip*",
"filter_by": "main_entry:=true",
"sort_by": "label:asc"
}
]
}'
But when I use the wildcard in the filter, I only get 64 results ('leipheim' is missing):
curl '<http://localhost:8108/multi_search>' -X POST -H "X-TYPESENSE-API-KEY: ${TYPESENSE_API_KEY}" -d '
{
"searches": [
{
"collection": "geodb",
"q": "*",
"filter_by": "seo_query: leip* && main_entry:=true",
"sort_by": "label:asc"
}
]
}'
Can you help me to understand the difference?