Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 1.14 KB

File metadata and controls

38 lines (33 loc) · 1.14 KB

Meadows ORM

Features

  • Declarative style
  • Supporting of ... builtin
    • Caching
    • One-to-one relationships
    • Joins
    • Async
    • Enum support
  • Automatically type casting (for types as boolean, json, timestamp)

Example

local users = users:findMany({
  where = {
    group = "superadmin"
  }
})

assert(#users == 4)

See the detailed example in the example.lua file