Description
The method getRawIndexes() is currently available in this SDK and allows the user to retrieve the results of indexes as String:
public String getRawIndexes() throws MeilisearchException
But this method does not accept query parameters as getIndexes method:
public Results<Index> getIndexes(IndexesQuery param) throws MeilisearchException
Basic example
The getRawIndexes should be overloaded to accept query parameters as:
public String getRawIndexes(IndexesQuery param) throws MeilisearchException
This implementation should be done in the Client file and the IndexesHandler files too.