com.networknt.graphql.router.GraphqlCustomHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-router Show documentation
Show all versions of graphql-router Show documentation
A route handler for GraphQL endpoint
The newest version!
package com.networknt.graphql.router;
import graphql.ExecutionResult;
import io.undertow.server.HttpServerExchange;
public interface GraphqlCustomHandler {
void handleResponse(HttpServerExchange exchange, ExecutionResult result);
}