diff --git a/src/GraphDeployer/Deployer.cs b/src/GraphDeployer/Deployer.cs
index 4069238e275dd604181aa06d9b7ddce4f308d867..3b83ff8f7e8df4191c655d4c3303306172448fad 100644
--- a/src/GraphDeployer/Deployer.cs
+++ b/src/GraphDeployer/Deployer.cs
@@ -230,7 +230,7 @@ public class Deployer
         _logger.LogInformation("Roles converted to linked data.");
 
         _logger.LogInformation("Converting resource types to linked data...");
-        var resourceTypeStructuralGraphs = _resourceTypeStructuralData.ConvertToLinkedDataAsync(resourceTypeInformations);
+        var resourceTypeStructuralGraphs = _resourceTypeStructuralData.CreateGraphAsync(resourceTypeInformations);
 
         _logger.LogInformation("Storing the graphs...");
         await StoreSql2LinkedGraphs(roleStructuralGraphs);
diff --git a/src/GraphDeployer/Implementations/ResourcetypeStructuralData.cs b/src/GraphDeployer/Implementations/ResourcetypeStructuralData.cs
index 3bd846266993780d268e44130c2627eaab247124..079006d6783725ae9e92ec16935bdb272c05b69f 100644
--- a/src/GraphDeployer/Implementations/ResourcetypeStructuralData.cs
+++ b/src/GraphDeployer/Implementations/ResourcetypeStructuralData.cs
@@ -20,7 +20,7 @@ public class ResourceTypeStructuralData
         _logger = logger;
 
     }
-    public async IAsyncEnumerable<IGraph> ConvertToLinkedDataAsync(IAsyncEnumerable<ResourceTypeInformationDto> entries)
+    public async IAsyncEnumerable<IGraph> CreateGraphAsync(IAsyncEnumerable<ResourceTypeInformationDto> entries)
     {
         await foreach (var entry in entries)
         {