meilisearch-php icon indicating copy to clipboard operation
meilisearch-php copied to clipboard

`SearchQuery` doesn't have `setRetrieveVectors` method

Open tognee opened this issue 2 months ago • 0 comments

Description The documentation says you can get the vector data from a search call by setting retrieveVectors to true.

https://www.meilisearch.com/docs/reference/api/search#display-vectors-in-response

Expected behavior Be able to do this

$searchQuery = (new SearchQuery())
    ->setRetrieveVectors(true);

Current behavior Method setRetrieveVectors doesn't exist

This is similar to my previous issue #809 that has the option missing for getDocument

tognee avatar Nov 07 '25 13:11 tognee