Skip to content

GraphQL interfaces are not generated if mappingConfig has "generateApis = false" #9

@PavelSusloparov

Description

@PavelSusloparov

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);
}

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions