Disabling (or increasing size of) pagination

Hi @chrzan,

It is strongly suggested to keep the rate limit at 100, because it can cause performance and memory issues. However, you can modify these numbers in your API configuration.

// path: ./config/api.js

module.exports = ({ env }) => ({
  responses: {
    privateAttributes: ['_v', 'id', 'created_at'],
  },
  rest: {
    defaultLimit: 100,
    maxLimit: 250,
  },
});

I hope it helps!