diff --git a/integration/graphql/src/main/java/com/blazebit/persistence/integration/graphql/GraphQLEntityViewSupport.java b/integration/graphql/src/main/java/com/blazebit/persistence/integration/graphql/GraphQLEntityViewSupport.java index f3b60356a4..4eb0edb88e 100644 --- a/integration/graphql/src/main/java/com/blazebit/persistence/integration/graphql/GraphQLEntityViewSupport.java +++ b/integration/graphql/src/main/java/com/blazebit/persistence/integration/graphql/GraphQLEntityViewSupport.java @@ -647,7 +647,7 @@ public void applyFetches(DataFetchingEnvironment dataFetchingEnvironment, Entity "No type is registered for the name: " + typeName); } - String mappedFieldPart = typeMapping.get(fieldName); + String mappedFieldPart = typeMapping.get(fieldName); if (mappedFieldPart == null) { // fieldName cannot be mapped to an entity view field, probably because it's a non-DB field with a default -> ignore the whole field continue OUTER;