Instance Method
all(decodingColumn:as:)
Returns the named column from each output row, if any, decoded as a given type.
func all<D>(decodingColumn column: String, as type: D.Type) -> EventLoopFuture<[D]> where D : Decodable, D : SendableMetatype
Parameters
columnThe name of the column to decode.
typeThe type of the desired values.
Return Value
A future containing the decoded values, if any.