v3.9.0
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
});
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
});