graphql.kickstart.servlet.context.GraphQLServletContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-servlet Show documentation
Show all versions of graphql-java-servlet Show documentation
relay.js-compatible GraphQL servlet
package graphql.kickstart.servlet.context;
import graphql.kickstart.execution.context.GraphQLContext;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.Part;
public interface GraphQLServletContext extends GraphQLContext {
List getFileParts();
Map> getParts();
HttpServletRequest getHttpServletRequest();
HttpServletResponse getHttpServletResponse();
}