DAL (Data Access Layer) - a proxy for SQL databases with MongoDB inspired query interface
Find a file
Anton Nesterov 0cecd1243f
[feat] generics for TS builder; [feat] support row formating as DTO class
Signed-off-by: Anton Nesterov <anton@demiurg.io>
2024-08-15 15:02:47 +02:00
dal [feat] generics for TS builder; [feat] support row formating as DTO class 2024-08-15 15:02:47 +02:00
pkg [feat] basic query builder for js; [feat] support chunked responses 2024-08-15 13:31:56 +02:00
.gitignore [wip] nodejs client 2024-08-15 10:20:11 +02:00
bun.lockb [wip] nodejs client 2024-08-15 10:20:11 +02:00
go.mod [wip] dal golang 2024-08-07 21:16:40 +02:00
package.json [feat] basic query builder for js; [feat] support chunked responses 2024-08-15 13:31:56 +02:00
README.md [wip] nodejs client 2024-08-15 10:20:11 +02:00
tsconfig.json [wip] nodejs client 2024-08-15 10:20:11 +02:00

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" }
]