io.leangen.graphql.spqr.spring.web.dto.ExecutorParams Maven / Gradle / Ivy
The newest version!
package io.leangen.graphql.spqr.spring.web.dto;
public class ExecutorParams {
public final GraphQLRequest graphQLRequest;
public final R request;
public final TransportType transportType;
public ExecutorParams(GraphQLRequest graphQLRequest, R request, TransportType transportType) {
this.graphQLRequest = graphQLRequest;
this.request = request;
this.transportType = transportType;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy