Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

import graphql.GraphQLContext;
import io.micrometer.context.ContextSnapshot;
import org.springframework.data.util.KotlinReflectionUtils;
import reactor.core.publisher.Mono;

import org.springframework.core.CoroutinesUtils;
Expand Down Expand Up @@ -81,7 +82,18 @@ protected Object doInvoke(GraphQLContext graphQLContext, Object... argValues) {
Method method = getBridgedMethod();
try {
if (KotlinDetector.isSuspendingFunction(method)) {
return CoroutinesUtils.invokeSuspendingFunction(method, getBean(), argValues);
Object result = CoroutinesUtils.invokeSuspendingFunction(method, getBean(), argValues);

Class<?> returnType = KotlinReflectionUtils.getReturnType(method);

if (CompletableFuture.class.isAssignableFrom(returnType)) {
@SuppressWarnings("unchecked")
Mono<CompletableFuture<?>> mono = (Mono<CompletableFuture<?>>)result;
// Unwrap nested CompletableFuture
return mono.flatMap(Mono::fromFuture);
}
Comment on lines +87 to +94
Copy link
Contributor Author

@koenpunt koenpunt Mar 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


return result;
}
Object result = method.invoke(getBean(), argValues);
return handleReturnValue(graphQLContext, result);
Expand Down