Class AbstractGraphQLRequest

java.lang.Object
com.graphql_java_generator.client.request.AbstractGraphQLRequest
Direct Known Subclasses:
ObjectResponse

public abstract class AbstractGraphQLRequest
extends java.lang.Object
This class contains the description for a GraphQL request that will be sent to the server. It's an abstract class, and can not be use directly: a concrete class is generated by the plugin, when in client mode. This concrete class provides all the necessary context to this abstract class for it to work properly.
This class stores:
  • The query part, if any
  • The mutation part, if any
  • The subscription part, if any
  • The fragments, if any
Author:
etienne-sf