()
| 122 | lines.push(`count users: ${await orm.count("users")}`); |
| 123 | |
| 124 | const getBob = () => |
| 125 | orm.findFirst("users", { where: (b) => b("id", "=", "bob") }); |
| 126 | const upsertBob = (v: string) => |
| 127 | orm.upsert("users", { |
| 128 | where: (b) => b("id", "=", "bob"), |