Decorator to set FETCH FIRST limit. Limits the number of rows returned by a query.
Usage:
@Fetch(100) async *getTopUsers() { return await User.findAll({ limit: 100 }); } Copy
@Fetch(100) async *getTopUsers() { return await User.findAll({ limit: 100 }); }
Number of rows to fetch
Decorator to set FETCH FIRST limit. Limits the number of rows returned by a query.
Usage: