graphql.spring.web.servlet.components.GraphQLRequestBody 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
package graphql.spring.web.servlet.components;
import graphql.Internal;
import java.util.Map;
@Internal
public class GraphQLRequestBody {
private String query;
private String operationName;
private Map variables;
public String getQuery() {
return query;
}
public void setQuery(String query) {
this.query = query;
}
public String getOperationName() {
return operationName;
}
public void setOperationName(String operationName) {
this.operationName = operationName;
}
public Map getVariables() {
return variables;
}
public void setVariables(Map variables) {
this.variables = variables;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy