python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Remove time from ISO date to filter with Vapor Swift
I'm trying to figure out how to filter ISO dates. I'd like to filter out Todo's for a specific day.
Dates are save in the database like this:
"started" -> 2022-03-17 18:46:44+00
I'd like...

MantisToboggan
Votes: 0
Answers: 2
Composing property wrappers in Swift with Vapor + Fluent
I've implemented a system to automatically generate Fluent's Migrations by reflecting 'registered' Models, saving the boilerplate of creating them manually. To achieve this, I must allow the specifica...

JacobCXDev
Votes: 0
Answers: 0
getting multiple average columns in vapor 4 fluent
I am working on a project in vapor and I would like to calculate the average of multiple columns,
but I can't figure out how to do it. I can get the average of one column like this:
let runCount = try...
sebbelebbe
Votes: 0
Answers: 1
How to use regexp in Vapor Fluent sqlite?
I have a simple model that has a string field, like this:
final class Record: Model, Content {
@ID(key: .id)
var id: UUID?
@Field(key: "name")
var name: String
......
Axeler4t0r
Votes: 0
Answers: 0