I don't mean filters, I mean settings: https://docs.meilisearch.com/reference/api/settings.html
So let's say I wanted to change the default Meilisearch 'stopword' setting for a specific model (or even all models)
$client->index('movies')->updateStopWords(['the', 'of', 'to']);
how could I do this?