We know that RESTHEART API can provide data using GET method. But if the list of paramaters grows then GET Rest call will hit the limit. Please confirm if we can use POST calls to fetch data via rest heart.
something like GET /test/coll?filter={'title':{ << 1000s.. params >>}}
Here I am just illustrating the long list of parameters using << 1000 params >>
Regards, Abhinav
RESTHeart strictly follows the HTTP protocol and the RESTful paradigm:
According to the RFC 261
POST
We have discussed between the community about allowing to GET data with a POST but rejected it.
Said that, your need is clear but it can be addressed with a RESTHeart custom Application Logic Handler.