Skip to content

Commit 1bfa3c0

Browse files
jotweajosef.wagner
and
josef.wagner
authored
GraphQL: Errors with nullish ManyToOne-Relation when using new ResolverFactory (for version 3.2) (#6092)
* fix(graphql): null cases in ResolverFactory * fix: make PropertyMetadataFactoryInterface nullable for backwards compatibility * fix(graphql): pass propertyMetadataFactory from FieldsBuilder to ResolverFactory * use getBuiltinTypes --------- Co-authored-by: josef.wagner <[email protected]>
1 parent c0daf0e commit 1bfa3c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

GraphQl/Resolver/Factory/DataCollectorResolverFactory.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
use ApiPlatform\GraphQl\Resolver\Factory\ResolverFactoryInterface;
1717
use ApiPlatform\Metadata\GraphQl\Operation;
18+
use ApiPlatform\Metadata\Property\Factory\PropertyMetadataFactoryInterface;
1819
use GraphQL\Type\Definition\ResolveInfo;
1920
use Symfony\Component\HttpFoundation\RequestStack;
2021

@@ -24,7 +25,7 @@ public function __construct(private readonly ResolverFactoryInterface $resolverF
2425
{
2526
}
2627

27-
public function __invoke(?string $resourceClass = null, ?string $rootClass = null, ?Operation $operation = null): callable
28+
public function __invoke(?string $resourceClass = null, ?string $rootClass = null, ?Operation $operation = null, ?PropertyMetadataFactoryInterface $propertyMetadataFactory = null): callable
2829
{
2930
return function (?array $source, array $args, $context, ResolveInfo $info) use ($resourceClass, $rootClass, $operation) {
3031
if ($this->requestStack && null !== $request = $this->requestStack->getCurrentRequest()) {

0 commit comments

Comments
 (0)