com.kobylynskyi.graphql.codegen.model.ApiInterfaceStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-codegen Show documentation
Show all versions of graphql-java-codegen Show documentation
Java Code Generator based on GraphQL schema
The newest version!
package com.kobylynskyi.graphql.codegen.model;
public enum ApiInterfaceStrategy {
/**
* Generate separate interface classes for each GraphQL operation.
*/
INTERFACE_PER_OPERATION,
/**
* Do not generate separate interfaces classes for GraphQL operation.
*/
DO_NOT_GENERATE
}