Instance Method
first(decoding:)
Using a default-configured
SQLRowDecoder, returns the first output row, if any, decoded as a given type.func first<D>(decoding type: D.Type) -> EventLoopFuture<D?> where D : Decodable, D : SendableMetatype
Parameters
typeThe type of the desired value.
Return Value
A future containing the decoded value, if any.