Query and list documents with filtering, pagination, sorting, and field projection
max_result_size (default 10000)- for descending order.Examples:created_at - Sort by created_at ascending-created_at - Sort by created_at descendingstatus,-created_at - Sort by status ascending, then created_at descending_id is always included.Example: name,email,created_at?status=active?age={"$gt":18}?status=active&role=adminfind operation with cursor-based pagination:
total count is only computed on the first page (when no cursor is provided) because:
max_result_size)