Server-side configuration of the default query result size limit?

By default, all queries have a limit of 100 on the returned collection size. This limit can be changed by invoking query.limit(<some number>) in JS or analogous methods in other SDKs. That’s great, but cumbersome and error-prone.
Is there a way to change the default limit of 100 on the server side, such that it will apply to queries from any client?

There’s a Parse Server option called maxLimit that you can use to set that.

Unfortunately, maxLimit is a different feature, so it looks like what I want to achieve isn’t supported yet.
I opened an issue in GitHub for a new feature (approved) and submitted a PR. Will appreciate if anyone could assist me in merging it.