David Glasser
04/28/2023, 3:21 AMsingle {
GraphQLServer<ApplicationRequest>(get(), get(), get())
}
But I do like the constructor DSL. Is it possible to do this with singleOf
? singleOf(::GraphQLServer)
says it doesn't have enough information to infer a type, and singleOf(::GraphQLServer<ApplicationRequest>)
isn't even valid syntax.arnaud.giuliani
05/09/2023, 3:16 PMsingleOf<GraphQLServer<ApplicationRequest>>(::GraphQLServer)
?arnaud.giuliani
05/09/2023, 3:16 PMDavid Glasser
05/11/2023, 6:30 PMsingle
has been working fineDavid Glasser
05/11/2023, 6:32 PMarnaud.giuliani
05/12/2023, 4:03 PM