Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support using DataLoader from suspend function #653

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