Extending Typescript Client Model(Table)
I have a simple question that would really help me.
Let's say I have table
I define my table using drizzle.
When I get the resultant from Users query.
I want it to have a
Is it possible to extend
Let's say I have table
Users with columns, firstName, LastName.I define my table using drizzle.
When I get the resultant from Users query.
I want it to have a
function that returns fullName.Is it possible to extend
Model(Tables) with custom functions ?