You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php// the code below will never work.$params = [
'filter' => ['category_id' => $params['category_id']],
]
// it will only work if you set the exact value like:$params = [
'filter' => ["category_id=20"],
]
meilisearch-php version 1.15.0
meilisearch version 1.13.2