Skip to content

v3.9.0

Choose a tag to compare

@lroal lroal released this 08 May 08:09
· 232 commits to master since this release

Possible to elevate associated column on a related table to a parent table when fetching. Example with the customer.balance column below.

  const orders = await db.order.getAll({
    balance: x => x.customer.balance
  });