Skip to content

Swift ORM (queries, models, and relations) for NoSQL and SQL databases

License

Notifications You must be signed in to change notification settings

vapor/fluent-kit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FluentKit

Documentation Team Chat MIT License Continuous Integration Swift 5.10+


An Object-Relational Mapper (ORM) for Swift. It allows you to write type safe, database agnostic models and queries. It takes advantage of Swift's type system to provide a powerful, yet easy to use API.

An example query looks like:

let planets = try await Planet.query(on: database)
    .filter(\.$type == .gasGiant)
    .sort(\.$name)
    .with(\.$star)
    .all()

For more information, see the Fluent documentation.

About

Swift ORM (queries, models, and relations) for NoSQL and SQL databases

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Sponsor this project

  •  

Packages

No packages published

Contributors 52

Languages