Reference
?

db.toArray

Read every row in the table.
Table.toArray() → Query<T[]>

Reads every row in the table into memory, so it is fine for small, bounded tables. On anything that grows, prefer a db.filter that narrows in SQL, or a db.aggregate that reduces without fetching.

Read all rows
const all = await Vendors.toArray();