would be awesome if we could get async functionality within the attach closure as seen in this next example:
.. .attach(..., on: transaction, { example in
let exampleID = example.id.value(or: Abort(.notFound))
try await ExampleDetail(exampleID: exampleID).create(on: transaction)
}
atm this errors. but would be great if it were possible
would be awesome if we could get async functionality within the attach closure as seen in this next example:
atm this errors. but would be great if it were possible