graphql.spring.web.servlet.GraphQLInvocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-spring-webmvc Show documentation
Show all versions of graphql-java-spring-webmvc Show documentation
GraphQL Java Spring Webmvc integration
The newest version!
package graphql.spring.web.servlet;
import graphql.ExecutionResult;
import graphql.PublicApi;
import org.springframework.web.context.request.WebRequest;
import java.util.concurrent.CompletableFuture;
@PublicApi
public interface GraphQLInvocation {
CompletableFuture invoke(GraphQLInvocationData invocationData, WebRequest webRequest);
}