From b487195faf8df88a72d2ea9461c3e8042e70438f Mon Sep 17 00:00:00 2001 From: Sebastian Blank Date: Tue, 18 Nov 2025 08:29:12 +0100 Subject: [PATCH] AreablockDataType: Remove _editableType and _editableName fields --- .../DocumentElementType/AreablockDataType.php | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/GraphQL/DocumentElementType/AreablockDataType.php b/src/GraphQL/DocumentElementType/AreablockDataType.php index 0aaefc5dc..2f4d06739 100644 --- a/src/GraphQL/DocumentElementType/AreablockDataType.php +++ b/src/GraphQL/DocumentElementType/AreablockDataType.php @@ -33,22 +33,6 @@ public function __construct(Service $graphQlService) [ 'name' => 'document_editableAreablock_data', 'fields' => [ - '_editableType' => [ - 'type' => Type::string(), - 'resolve' => static function ($value = null, $args = [], $context = [], ResolveInfo $resolveInfo = null) { - if ($value) { - return $value->getType(); - } - }, - ], - '_editableName' => [ - 'type' => Type::string(), - 'resolve' => static function ($value = null, $args = [], $context = [], ResolveInfo $resolveInfo = null) { - if ($value) { - return $value->getName(); - } - }, - ], 'key' => [ 'type' => Type::string(), 'resolve' => static function ($value = null, $args = [], $context = [], ResolveInfo $resolveInfo = null) {