Annotation Type FullRequest


  • @Documented
    @Retention(RUNTIME)
    @Target(METHOD)
    public @interface FullRequest
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String request
      The GraphQL request.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      RequestType requestType
      The kind of request that this method will execute.
    • Element Detail

      • request

        java.lang.String request
        The GraphQL request. It can be either a Partial Request or a Full Request.
      • requestType

        RequestType requestType
        The kind of request that this method will execute. One of QUERY, MUTATION, SUBSCRIPTION. This is not mandatory, and the default value is QUERY
        Default:
        com.graphql_java_generator.annotation.RequestType.query