Result row type produced by a SelectProjection selector.
Each entry's value is the InferType of the property schema the descriptor points at, so .select(t => ({ id: t.id, n: t.title })) yields { id: number; n: string }.
.select(t => ({ id: t.id, n: t.title }))
{ id: number; n: string }
Result row type produced by a SelectProjection selector.
Each entry's value is the InferType of the property schema the descriptor points at, so
.select(t => ({ id: t.id, n: t.title }))yields{ id: number; n: string }.