Query records
Returns records matching a MongoDB-style filter, with sorting,
pagination, and field projection. Operators executing code or
cross-referencing data ($where, $function, $expr, $lookup,
$merge, $accumulator, $out) are rejected.
Text equality is exact and case-sensitive: {"category":"informatique"}
will not match a stored Informatique. For case-insensitive matching use
a regex, e.g. {"category":{"$regex":"^informatique$","$options":"i"}}, or
call the distinct endpoint first to get the exact stored value.
Rate limit: 100 requests/min per user.
Authorizations
User session JWT. Send as Authorization: Bearer <token>.
Path Parameters
Collection identifier returned at creation.
Query Parameters
JSON-encoded MongoDB-style filter.
JSON-encoded sort specification.
Page size (max 100).
1 <= x <= 100Page number.
x >= 1JSON-encoded field projection.