dal/README.md
Anton Nesterov 60d213f21c
[chore] format ts
Signed-off-by: Anton Nesterov <anton@demiurg.io>
2024-08-15 15:04:44 +02:00

320 B

DAL [WIP]

Data Accees Layer for SQL databases written in Go.

Mongodb inspired query interface:

const query = Db.In("users")
  .Find({
    fullname: { $glob: "*son" },
  })
  .Query();

// Result:
console.log(users)[
  ({ id: 25, fullname: "John Menson" }, { id: 76, fullname: "John Johnson" })
];