Is your feature request related to a problem? Please describe.
Interfaces generation is not supported as of now.
schema.graphqls
interface MyInterface {
id: String
...
}
There is no class MyInterface automatically generated in the target folder.
Describe the solution you'd like
The interface is automatically generated in the target folder.
MyInterface.java
public interface MyInterface {
public String getId();
public void setId(String id);
}