pub const DEFAULT_LIMIT: u32 = 100;Expand description
Parse’s default page size when a query does not ask for one.
Not unlimited. An omitted limit used to produce an unbounded Mongo query, which is both
the wrong answer and a denial-of-service surface: one request could ask for every row in a
collection.