Skip to content

Pagination

Pre-release
Pre-release
Compare
Choose a tag to compare
@tanner0101 tanner0101 released this 16 Jan 23:03
7793f5c

Implements pagination helpers using new APIs from vapor/fluent-kit#130.

struct TodoController {
    func index(req: Request) throws -> EventLoopFuture<Page<Todo>> {
        Todo.query(on: req.db).paginate(for: req)
    }
}