diff --git a/src/GraphQL/Query/Operator/Thumbnail.php b/src/GraphQL/Query/Operator/Thumbnail.php index 08a26f93..8a5d9d0e 100644 --- a/src/GraphQL/Query/Operator/Thumbnail.php +++ b/src/GraphQL/Query/Operator/Thumbnail.php @@ -64,7 +64,7 @@ public function getLabeledValue($element, ResolveInfo $resolveInfo = null) if ($childResult->value instanceof Asset\Image || $childResult->value instanceof Asset\Video) { $childValue = $result->value = $childResult->value; $thumbnail = $childValue->getThumbnail($this->thumbnailConfig, false); - $result->value = $thumbnail->getPath(false); + $result->value = $thumbnail->getPath(['deferredAllowed' => false]); } }