Ent API: selectBy() Unique Key Prefix
Ent.selectBy(vc, { field: "...", ... }): Ent[]
const schema = new PgSchema(
name,
{
id: { type: ID },
created_at: { type: Date, autoInsert: "now()" },
type: { type: String },
id1: { type: ID },
shard2: { type: Number },
},
["type", "id1", "shard2"],
)Simple Batching
Complex Batching
Last updated