Open
Description
If you have an entity like this:
@Table(name = "EWARLNSYHTATT")
public class EntityWithAReallyLongNameSoYouHaveToAbbreviateTheTable{
}
In the generated schema, the generated type would be "EWARLNSYHTATT" rather than the actual entity name. The underlying problem is in GraphQLJpaSchemaBuilder.resolveTypeName() - instead of doing managedType.getName(), it should arguably be doing managedType.getJavaType().getName().
Alternatively if this is intended, it would be good to get an annotation that could be put on types to control what the generated schema names a given type?
Metadata
Metadata
Assignees
Labels
No labels