diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3a2c7c20978..0ac50689293 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
 # Changelog
 
+## v4.1.5
+
+### Bug fixes
+
+* [60747cc8c](https://github.com/api-platform/core/commit/60747cc8c2fb855798c923b5537888f8d0969568) fix(graphql): access to unauthorized resource using node Relay [CVE-2025-31481](https://github.com/api-platform/core/security/advisories/GHSA-cg3c-245w-728m)
+* [7af65aad1](https://github.com/api-platform/core/commit/7af65aad13037d7649348ee3dcd88e084ef771f8) fix(graphql): property security might be cached w/ different objects [CVE-2025-31485](https://github.com/api-platform/core/security/advisories/GHSA-428q-q3vv-3fq3)
+
 ## v4.1.4
 
 ### Bug fixes
@@ -17,9 +24,6 @@
 
 * [8a2265041](https://github.com/api-platform/core/commit/8a22650419fd32efdafad43493f2327b38dd3ee6) fix(laravel): defer "filters" dependent services (#7045)
 
-
-### Features
-
 ## v4.1.2
 
 ### Bug fixes
@@ -30,8 +34,6 @@
 * [a2824ff4b](https://github.com/api-platform/core/commit/a2824ff4be6276e37e37a3b4e4fb2e9a0096789c) fix(laravel): defer autoconfiguration (#7040)
 
 
-### Features
-
 ## v4.1.1
 
 ### Bug fixes
@@ -152,6 +154,14 @@ On write operations, we added the [expectsHeader](https://www.hydra-cg.com/spec/
 * [d0a442786](https://github.com/api-platform/core/commit/d0a44278630d201b91cbba0774a09f4eeaac88f7) feat(doctrine): enhance getLinksHandler with method validation and typo suggestions (#6874)
 * [f67f6f1ac](https://github.com/api-platform/core/commit/f67f6f1acb6476182c18a3503f2a8bc80ae89a0b)  feat(doctrine): doctrine filters like laravel eloquent filters  (#6775)
 
+## v4.0.22
+
+### Bug fixes
+
+* [60747cc8c](https://github.com/api-platform/core/commit/60747cc8c2fb855798c923b5537888f8d0969568) fix(graphql): access to unauthorized resource using node Relay [CVE-2025-31481](https://github.com/api-platform/core/security/advisories/GHSA-cg3c-245w-728m)
+* [7af65aad1](https://github.com/api-platform/core/commit/7af65aad13037d7649348ee3dcd88e084ef771f8) fix(graphql): property security might be cached w/ different objects [CVE-2025-31485](https://github.com/api-platform/core/security/advisories/GHSA-428q-q3vv-3fq3)
+* [f4c426d71](https://github.com/api-platform/core/commit/f4c426d719b01debaa993b00d03cce8964057ecc) Revert "fix(doctrine): throw an exception when a filter is not found in a par…" (#7046)
+
 ## v4.0.21
 
 ### Bug fixes
diff --git a/src/GraphQl/Metadata/RuntimeOperationMetadataFactory.php b/src/GraphQl/Metadata/RuntimeOperationMetadataFactory.php
new file mode 100644
index 00000000000..46fef884fec
--- /dev/null
+++ b/src/GraphQl/Metadata/RuntimeOperationMetadataFactory.php
@@ -0,0 +1,55 @@
+<?php
+
+/*
+ * This file is part of the API Platform project.
+ *
+ * (c) Kévin Dunglas <dunglas@gmail.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+declare(strict_types=1);
+
+namespace ApiPlatform\GraphQl\Metadata;
+
+use ApiPlatform\Metadata\Exception\InvalidArgumentException;
+use ApiPlatform\Metadata\GraphQl\Query;
+use ApiPlatform\Metadata\Operation;
+use ApiPlatform\Metadata\Operation\Factory\OperationMetadataFactoryInterface;
+use ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface;
+use Symfony\Component\Routing\Exception\ExceptionInterface as RoutingExceptionInterface;
+use Symfony\Component\Routing\RouterInterface;
+
+/**
+ * This factory runs in the ResolverFactory and is used to find out a Relay node's operation.
+ */
+final class RuntimeOperationMetadataFactory implements OperationMetadataFactoryInterface
+{
+    public function __construct(private readonly ResourceMetadataCollectionFactoryInterface $resourceMetadataCollectionFactory, private readonly RouterInterface $router)
+    {
+    }
+
+    public function create(string $uriTemplate, array $context = []): ?Operation
+    {
+        try {
+            $parameters = $this->router->match($uriTemplate);
+        } catch (RoutingExceptionInterface $e) {
+            throw new InvalidArgumentException(\sprintf('No route matches "%s".', $uriTemplate), $e->getCode(), $e);
+        }
+
+        if (!isset($parameters['_api_resource_class'])) {
+            throw new InvalidArgumentException(\sprintf('The route "%s" is not an API route, it has no resource class in the defaults.', $uriTemplate));
+        }
+
+        foreach ($this->resourceMetadataCollectionFactory->create($parameters['_api_resource_class']) as $resource) {
+            foreach ($resource->getGraphQlOperations() ?? [] as $operation) {
+                if ($operation instanceof Query && !$operation->getResolver()) {
+                    return $operation;
+                }
+            }
+        }
+
+        throw new InvalidArgumentException(\sprintf('No operation found for id "%s".', $uriTemplate));
+    }
+}
diff --git a/src/GraphQl/Resolver/Factory/ResolverFactory.php b/src/GraphQl/Resolver/Factory/ResolverFactory.php
index c7ba03283ee..1aca8b41bab 100644
--- a/src/GraphQl/Resolver/Factory/ResolverFactory.php
+++ b/src/GraphQl/Resolver/Factory/ResolverFactory.php
@@ -15,21 +15,28 @@
 
 use ApiPlatform\GraphQl\State\Provider\NoopProvider;
 use ApiPlatform\Metadata\DeleteOperationInterface;
+use ApiPlatform\Metadata\Exception\InvalidArgumentException;
 use ApiPlatform\Metadata\GraphQl\Mutation;
 use ApiPlatform\Metadata\GraphQl\Operation;
 use ApiPlatform\Metadata\GraphQl\Query;
+use ApiPlatform\Metadata\Operation\Factory\OperationMetadataFactoryInterface;
 use ApiPlatform\Metadata\Property\Factory\PropertyMetadataFactoryInterface;
 use ApiPlatform\State\Pagination\ArrayPaginator;
 use ApiPlatform\State\ProcessorInterface;
 use ApiPlatform\State\ProviderInterface;
 use GraphQL\Type\Definition\ResolveInfo;
+use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
 
 class ResolverFactory implements ResolverFactoryInterface
 {
     public function __construct(
         private readonly ProviderInterface $provider,
         private readonly ProcessorInterface $processor,
+        private readonly ?OperationMetadataFactoryInterface $operationMetadataFactory = null,
     ) {
+        if (!$operationMetadataFactory) {
+            throw new InvalidArgumentException(\sprintf('Not injecting the "%s" exposes Relay nodes to a security risk.', OperationMetadataFactoryInterface::class));
+        }
     }
 
     public function __invoke(?string $resourceClass = null, ?string $rootClass = null, ?Operation $operation = null, ?PropertyMetadataFactoryInterface $propertyMetadataFactory = null): callable
@@ -70,7 +77,13 @@ public function __invoke(?string $resourceClass = null, ?string $rootClass = nul
     private function resolve(?array $source, array $args, ResolveInfo $info, ?string $rootClass = null, ?Operation $operation = null, mixed $body = null)
     {
         // Handles relay nodes
-        $operation ??= new Query();
+        if (!$operation) {
+            if (!isset($args['id'])) {
+                throw new NotFoundHttpException('No node found.');
+            }
+
+            $operation = $this->operationMetadataFactory->create($args['id']);
+        }
 
         $graphQlContext = [];
         $context = ['source' => $source, 'args' => $args, 'info' => $info, 'root_class' => $rootClass, 'graphql_context' => &$graphQlContext];
diff --git a/src/GraphQl/Serializer/ItemNormalizer.php b/src/GraphQl/Serializer/ItemNormalizer.php
index d0c7c384079..06ea9df299a 100644
--- a/src/GraphQl/Serializer/ItemNormalizer.php
+++ b/src/GraphQl/Serializer/ItemNormalizer.php
@@ -89,6 +89,8 @@ public function normalize(mixed $object, ?string $format = null, array $context
 
         if ($this->isCacheKeySafe($context)) {
             $context['cache_key'] = $this->getCacheKey($format, $context);
+        } else {
+            $context['cache_key'] = false;
         }
 
         unset($context['operation_name'], $context['operation']); // Remove operation and operation_name only when cache key has been created
diff --git a/src/GraphQl/Tests/Metadata/RuntimeOperationMetadataFactoryTest.php b/src/GraphQl/Tests/Metadata/RuntimeOperationMetadataFactoryTest.php
new file mode 100644
index 00000000000..5dfbfc22351
--- /dev/null
+++ b/src/GraphQl/Tests/Metadata/RuntimeOperationMetadataFactoryTest.php
@@ -0,0 +1,144 @@
+<?php
+
+/*
+ * This file is part of the API Platform project.
+ *
+ * (c) Kévin Dunglas <dunglas@gmail.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+declare(strict_types=1);
+
+namespace ApiPlatform\GraphQl\Tests\Metadata;
+
+use ApiPlatform\GraphQl\Metadata\RuntimeOperationMetadataFactory;
+use ApiPlatform\Metadata\ApiResource;
+use ApiPlatform\Metadata\GraphQl\Query;
+use ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface;
+use ApiPlatform\Metadata\Resource\ResourceMetadataCollection;
+use PHPUnit\Framework\TestCase;
+use Symfony\Component\Routing\Exception\ResourceNotFoundException;
+use Symfony\Component\Routing\RouterInterface;
+
+class RuntimeOperationMetadataFactoryTest extends TestCase
+{
+    public function testCreate(): void
+    {
+        $resourceClass = 'Dummy';
+        $operationName = 'item_query';
+
+        $operation = (new Query())->withName($operationName);
+        $resourceMetadata = (new ApiResource())->withGraphQlOperations([$operationName => $operation]);
+        $resourceMetadataCollection = new ResourceMetadataCollection($resourceClass, [$resourceMetadata]);
+
+        $resourceMetadataCollectionFactory = $this->createMock(ResourceMetadataCollectionFactoryInterface::class);
+        $resourceMetadataCollectionFactory->expects($this->once())
+            ->method('create')
+            ->with($resourceClass)
+            ->willReturn($resourceMetadataCollection);
+
+        $router = $this->createMock(RouterInterface::class);
+        $router->expects($this->once())
+            ->method('match')
+            ->with('/dummies/1')
+            ->willReturn([
+                '_api_resource_class' => $resourceClass,
+                '_api_operation_name' => $operationName,
+            ]);
+
+        $factory = new RuntimeOperationMetadataFactory($resourceMetadataCollectionFactory, $router);
+        $this->assertEquals($operation, $factory->create('/dummies/1'));
+    }
+
+    public function testCreateThrowsExceptionWhenRouteNotFound(): void
+    {
+        $this->expectException(\ApiPlatform\Metadata\Exception\InvalidArgumentException::class);
+        $this->expectExceptionMessage('No route matches "/unknown".');
+
+        $router = $this->createMock(RouterInterface::class);
+        $router->expects($this->once())
+            ->method('match')
+            ->with('/unknown')
+            ->willThrowException(new ResourceNotFoundException());
+
+        $resourceMetadataCollectionFactory = $this->createMock(ResourceMetadataCollectionFactoryInterface::class);
+
+        $factory = new RuntimeOperationMetadataFactory($resourceMetadataCollectionFactory, $router);
+        $factory->create('/unknown');
+    }
+
+    public function testCreateThrowsExceptionWhenResourceClassMissing(): void
+    {
+        $this->expectException(\ApiPlatform\Metadata\Exception\InvalidArgumentException::class);
+        $this->expectExceptionMessage('The route "/dummies/1" is not an API route, it has no resource class in the defaults.');
+
+        $router = $this->createMock(RouterInterface::class);
+        $router->expects($this->once())
+            ->method('match')
+            ->with('/dummies/1')
+            ->willReturn([]);
+
+        $resourceMetadataCollectionFactory = $this->createMock(ResourceMetadataCollectionFactoryInterface::class);
+
+        $factory = new RuntimeOperationMetadataFactory($resourceMetadataCollectionFactory, $router);
+        $factory->create('/dummies/1');
+    }
+
+    public function testCreateThrowsExceptionWhenOperationNotFound(): void
+    {
+        $this->expectException(\ApiPlatform\Metadata\Exception\InvalidArgumentException::class);
+        $this->expectExceptionMessage('No operation found for id "/dummies/1".');
+
+        $resourceClass = 'Dummy';
+
+        $resourceMetadataCollectionFactory = $this->createMock(ResourceMetadataCollectionFactoryInterface::class);
+        $resourceMetadataCollectionFactory->expects($this->once())
+            ->method('create')
+            ->with($resourceClass)
+            ->willReturn(new ResourceMetadataCollection($resourceClass, [new ApiResource()]));
+
+        $router = $this->createMock(RouterInterface::class);
+        $router->expects($this->once())
+            ->method('match')
+            ->with('/dummies/1')
+            ->willReturn([
+                '_api_resource_class' => $resourceClass,
+            ]);
+
+        $factory = new RuntimeOperationMetadataFactory($resourceMetadataCollectionFactory, $router);
+        $factory->create('/dummies/1');
+    }
+
+    public function testCreateIgnoresOperationsWithResolvers(): void
+    {
+        $this->expectException(\ApiPlatform\Metadata\Exception\InvalidArgumentException::class);
+        $this->expectExceptionMessage('No operation found for id "/dummies/1".');
+
+        $resourceClass = 'Dummy';
+        $operationName = 'item_query';
+
+        $operation = (new Query())->withResolver('t')->withName($operationName);
+        $resourceMetadata = (new ApiResource())->withGraphQlOperations([$operationName => $operation]);
+        $resourceMetadataCollection = new ResourceMetadataCollection($resourceClass, [$resourceMetadata]);
+
+        $resourceMetadataCollectionFactory = $this->createMock(ResourceMetadataCollectionFactoryInterface::class);
+        $resourceMetadataCollectionFactory->expects($this->once())
+            ->method('create')
+            ->with($resourceClass)
+            ->willReturn($resourceMetadataCollection);
+
+        $router = $this->createMock(RouterInterface::class);
+        $router->expects($this->once())
+            ->method('match')
+            ->with('/dummies/1')
+            ->willReturn([
+                '_api_resource_class' => $resourceClass,
+                '_api_operation_name' => $operationName,
+            ]);
+
+        $factory = new RuntimeOperationMetadataFactory($resourceMetadataCollectionFactory, $router);
+        $factory->create('/dummies/1');
+    }
+}
diff --git a/src/GraphQl/Tests/Resolver/Factory/ResolverFactoryTest.php b/src/GraphQl/Tests/Resolver/Factory/ResolverFactoryTest.php
index 66278039554..a2ba930bb81 100644
--- a/src/GraphQl/Tests/Resolver/Factory/ResolverFactoryTest.php
+++ b/src/GraphQl/Tests/Resolver/Factory/ResolverFactoryTest.php
@@ -18,6 +18,7 @@
 use ApiPlatform\Metadata\GraphQl\Mutation;
 use ApiPlatform\Metadata\GraphQl\Operation;
 use ApiPlatform\Metadata\GraphQl\Query;
+use ApiPlatform\Metadata\Operation\Factory\OperationMetadataFactoryInterface;
 use ApiPlatform\Metadata\Property\Factory\PropertyMetadataFactoryInterface;
 use ApiPlatform\State\ProcessorInterface;
 use ApiPlatform\State\ProviderInterface;
@@ -43,7 +44,7 @@ public function testGraphQlResolver(?string $resourceClass = null, ?string $root
         $resolveInfo = $this->createMock(ResolveInfo::class);
         $resolveInfo->fieldName = 'test';
 
-        $resolverFactory = new ResolverFactory($provider, $processor);
+        $resolverFactory = new ResolverFactory($provider, $processor, $this->createMock(OperationMetadataFactoryInterface::class));
         $this->assertEquals($resolverFactory->__invoke($resourceClass, $rootClass, $operation, $propertyMetadataFactory)(['test' => null], [], [], $resolveInfo), $returnValue);
     }
 
@@ -54,4 +55,21 @@ public static function graphQlQueries(): array
             ['Dummy', 'Dummy', new Mutation(), (new Mutation())->withValidate(true), (new Mutation())->withValidate(true)->withWrite(true)],
         ];
     }
+
+    public function testGraphQlResolverWithNode(): void
+    {
+        $returnValue = new \stdClass();
+        $op = new Query(name: 'hi');
+        $provider = $this->createMock(ProviderInterface::class);
+        $provider->expects($this->once())->method('provide')->with($op)->willReturn($returnValue);
+        $processor = $this->createMock(ProcessorInterface::class);
+        $processor->expects($this->once())->method('process')->with($returnValue, $op)->willReturn($returnValue);
+        $resolveInfo = $this->createMock(ResolveInfo::class);
+        $resolveInfo->fieldName = 'test';
+
+        $operationFactory = $this->createMock(OperationMetadataFactoryInterface::class);
+        $operationFactory->method('create')->with('/foo')->willReturn($op);
+        $resolverFactory = new ResolverFactory($provider, $processor, $operationFactory);
+        $this->assertSame($returnValue, $resolverFactory->__invoke()([], ['id' => '/foo'], [], $resolveInfo));
+    }
 }
diff --git a/src/Laravel/ApiPlatformProvider.php b/src/Laravel/ApiPlatformProvider.php
index f9a42c90478..810d620f0d4 100644
--- a/src/Laravel/ApiPlatformProvider.php
+++ b/src/Laravel/ApiPlatformProvider.php
@@ -17,6 +17,7 @@
 use ApiPlatform\GraphQl\Error\ErrorHandlerInterface;
 use ApiPlatform\GraphQl\Executor;
 use ApiPlatform\GraphQl\ExecutorInterface;
+use ApiPlatform\GraphQl\Metadata\RuntimeOperationMetadataFactory;
 use ApiPlatform\GraphQl\Resolver\Factory\ResolverFactory;
 use ApiPlatform\GraphQl\Resolver\Factory\ResolverFactoryInterface;
 use ApiPlatform\GraphQl\Resolver\QueryCollectionResolverInterface;
@@ -1086,7 +1087,15 @@ private function registerGraphQl(): void
         $this->app->singleton(ResolverFactoryInterface::class, function (Application $app) {
             return new ResolverFactory(
                 $app->make('api_platform.graphql.state_provider.access_checker'),
-                $app->make('api_platform.graphql.state_processor')
+                $app->make('api_platform.graphql.state_processor'),
+                $app->make('api_platform.graphql.runtime_operation_metadata_factory'),
+            );
+        });
+
+        $app->singleton('api_platform.graphql.runtime_operation_metadata_factory', function (Application $app) {
+            return new RuntimeOperationMetadataFactory(
+                $app->make(ResourceMetadataCollectionFactoryInterface::class),
+                $app->make(UrlGeneratorRouter::class)
             );
         });
 
diff --git a/src/Metadata/Resource/Factory/OperationDefaultsTrait.php b/src/Metadata/Resource/Factory/OperationDefaultsTrait.php
index 1d556e2f024..bd9d20e0c88 100644
--- a/src/Metadata/Resource/Factory/OperationDefaultsTrait.php
+++ b/src/Metadata/Resource/Factory/OperationDefaultsTrait.php
@@ -121,7 +121,7 @@ private function getDefaultHttpOperations($resource): iterable
 
     private function addDefaultGraphQlOperations(ApiResource $resource): ApiResource
     {
-        $operations = enum_exists($resource->getClass()) ? [new QueryCollection(paginationEnabled: false), new Query()] : [new QueryCollection(), new Query(), (new Mutation())->withName('update'), (new DeleteMutation())->withName('delete'), (new Mutation())->withName('create')];
+        $operations = enum_exists($resource->getClass()) ? [new Query(), new QueryCollection(paginationEnabled: false)] : [new Query(), new QueryCollection(), (new Mutation())->withName('update'), (new DeleteMutation())->withName('delete'), (new Mutation())->withName('create')];
         $graphQlOperations = [];
         foreach ($operations as $operation) {
             [$key, $operation] = $this->getOperationWithDefaults($resource, $operation);
diff --git a/src/Symfony/Bundle/Resources/config/graphql.xml b/src/Symfony/Bundle/Resources/config/graphql.xml
index ee5f4fcc177..576ea8d5e7a 100644
--- a/src/Symfony/Bundle/Resources/config/graphql.xml
+++ b/src/Symfony/Bundle/Resources/config/graphql.xml
@@ -189,6 +189,12 @@
         <service id="api_platform.graphql.resolver.factory" class="ApiPlatform\GraphQl\Resolver\Factory\ResolverFactory" public="false">
             <argument type="service" id="api_platform.graphql.state_provider" />
             <argument type="service" id="api_platform.graphql.state_processor" />
+            <argument type="service" id="api_platform.graphql.runtime_operation_metadata_factory" />
+        </service>
+
+        <service id="api_platform.graphql.runtime_operation_metadata_factory" class="ApiPlatform\GraphQl\Metadata\RuntimeOperationMetadataFactory" public="false">
+            <argument type="service" id="api_platform.metadata.resource.metadata_collection_factory" />
+            <argument type="service" id="api_platform.router" />
         </service>
 
         <!-- Resolver Stages -->
diff --git a/tests/Fixtures/TestBundle/Document/SecuredDummyCollection.php b/tests/Fixtures/TestBundle/Document/SecuredDummyCollection.php
new file mode 100644
index 00000000000..7356c404f86
--- /dev/null
+++ b/tests/Fixtures/TestBundle/Document/SecuredDummyCollection.php
@@ -0,0 +1,60 @@
+<?php
+
+/*
+ * This file is part of the API Platform project.
+ *
+ * (c) Kévin Dunglas <dunglas@gmail.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+declare(strict_types=1);
+
+namespace ApiPlatform\Tests\Fixtures\TestBundle\Document;
+
+use ApiPlatform\Metadata\ApiProperty;
+use ApiPlatform\Metadata\ApiResource;
+use ApiPlatform\Metadata\GraphQl\Query;
+use ApiPlatform\Metadata\GraphQl\QueryCollection;
+use ApiPlatform\Metadata\NotExposed;
+use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
+
+/**
+ * Secured resource.
+ */
+#[ApiResource(
+    operations: [
+        new NotExposed(),
+    ],
+    graphQlOperations: [
+        new Query(),
+        new QueryCollection(),
+    ],
+    security: 'is_granted(\'ROLE_USER\')'
+)]
+#[ODM\Document]
+class SecuredDummyCollection
+{
+    #[ODM\Id(strategy: 'INCREMENT', type: 'int')]
+    public ?int $id = null;
+
+    /**
+     * @var string The title
+     */
+    #[ODM\Field]
+    public string $title;
+
+    /**
+     * @var string Secret property, only readable/writable by owners
+     */
+    #[ApiProperty(security: 'object == null or object.owner == user', securityPostDenormalize: 'object.owner == user')]
+    #[ODM\Field]
+    public ?string $ownerOnlyProperty = null;
+
+    /**
+     * @var string The owner
+     */
+    #[ODM\Field]
+    public string $owner;
+}
diff --git a/tests/Fixtures/TestBundle/Document/SecuredDummyCollectionParent.php b/tests/Fixtures/TestBundle/Document/SecuredDummyCollectionParent.php
new file mode 100644
index 00000000000..efe23f5372d
--- /dev/null
+++ b/tests/Fixtures/TestBundle/Document/SecuredDummyCollectionParent.php
@@ -0,0 +1,43 @@
+<?php
+
+/*
+ * This file is part of the API Platform project.
+ *
+ * (c) Kévin Dunglas <dunglas@gmail.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+declare(strict_types=1);
+
+namespace ApiPlatform\Tests\Fixtures\TestBundle\Document;
+
+use ApiPlatform\Metadata\ApiResource;
+use ApiPlatform\Metadata\GraphQl\Query;
+use ApiPlatform\Metadata\GraphQl\QueryCollection;
+use ApiPlatform\Metadata\NotExposed;
+use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
+
+/**
+ * Secured resource.
+ */
+#[ApiResource(
+    operations: [
+        new NotExposed(),
+    ],
+    graphQlOperations: [
+        new Query(),
+        new QueryCollection(),
+    ],
+    security: 'is_granted(\'ROLE_USER\')'
+)]
+#[ODM\Document]
+class SecuredDummyCollectionParent
+{
+    #[ODM\Id(strategy: 'INCREMENT', type: 'int')]
+    public ?int $id = null;
+
+    #[ODM\ReferenceOne(targetDocument: SecuredDummyCollection::class)]
+    public ?SecuredDummyCollection $child = null;
+}
diff --git a/tests/Fixtures/TestBundle/Entity/SecuredDummyCollection.php b/tests/Fixtures/TestBundle/Entity/SecuredDummyCollection.php
new file mode 100644
index 00000000000..03abb4a3000
--- /dev/null
+++ b/tests/Fixtures/TestBundle/Entity/SecuredDummyCollection.php
@@ -0,0 +1,62 @@
+<?php
+
+/*
+ * This file is part of the API Platform project.
+ *
+ * (c) Kévin Dunglas <dunglas@gmail.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+declare(strict_types=1);
+
+namespace ApiPlatform\Tests\Fixtures\TestBundle\Entity;
+
+use ApiPlatform\Metadata\ApiProperty;
+use ApiPlatform\Metadata\ApiResource;
+use ApiPlatform\Metadata\GraphQl\Query;
+use ApiPlatform\Metadata\GraphQl\QueryCollection;
+use ApiPlatform\Metadata\NotExposed;
+use Doctrine\ORM\Mapping as ORM;
+
+/**
+ * Secured resource.
+ */
+#[ApiResource(
+    operations: [
+        new NotExposed(),
+    ],
+    graphQlOperations: [
+        new Query(),
+        new QueryCollection(),
+    ],
+    security: 'is_granted(\'ROLE_USER\')'
+)]
+#[ORM\Entity]
+class SecuredDummyCollection
+{
+    #[ORM\Column(type: 'integer')]
+    #[ORM\Id]
+    #[ORM\GeneratedValue(strategy: 'AUTO')]
+    public ?int $id = null;
+
+    /**
+     * @var string The title
+     */
+    #[ORM\Column]
+    public string $title;
+
+    /**
+     * @var string Secret property, only readable/writable by owners
+     */
+    #[ApiProperty(security: 'object == null or object.owner == user', securityPostDenormalize: 'object.owner == user')]
+    #[ORM\Column]
+    public ?string $ownerOnlyProperty = null;
+
+    /**
+     * @var string The owner
+     */
+    #[ORM\Column]
+    public string $owner;
+}
diff --git a/tests/Fixtures/TestBundle/Entity/SecuredDummyCollectionParent.php b/tests/Fixtures/TestBundle/Entity/SecuredDummyCollectionParent.php
new file mode 100644
index 00000000000..ad053cfc456
--- /dev/null
+++ b/tests/Fixtures/TestBundle/Entity/SecuredDummyCollectionParent.php
@@ -0,0 +1,46 @@
+<?php
+
+/*
+ * This file is part of the API Platform project.
+ *
+ * (c) Kévin Dunglas <dunglas@gmail.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+declare(strict_types=1);
+
+namespace ApiPlatform\Tests\Fixtures\TestBundle\Entity;
+
+use ApiPlatform\Metadata\ApiResource;
+use ApiPlatform\Metadata\GraphQl\Query;
+use ApiPlatform\Metadata\GraphQl\QueryCollection;
+use ApiPlatform\Metadata\NotExposed;
+use Doctrine\ORM\Mapping as ORM;
+
+/**
+ * Secured resource.
+ */
+#[ApiResource(
+    operations: [
+        new NotExposed(),
+    ],
+    graphQlOperations: [
+        new Query(),
+        new QueryCollection(),
+    ],
+    security: 'is_granted(\'ROLE_USER\')'
+)]
+#[ORM\Entity]
+class SecuredDummyCollectionParent
+{
+    #[ORM\Column(type: 'integer')]
+    #[ORM\Id]
+    #[ORM\GeneratedValue(strategy: 'AUTO')]
+    public ?int $id = null;
+
+    #[ORM\ManyToOne]
+    #[ORM\JoinColumn(nullable: false)]
+    public SecuredDummyCollection $child;
+}
diff --git a/tests/Functional/GraphQl/SecurityTest.php b/tests/Functional/GraphQl/SecurityTest.php
new file mode 100644
index 00000000000..305927f1302
--- /dev/null
+++ b/tests/Functional/GraphQl/SecurityTest.php
@@ -0,0 +1,188 @@
+<?php
+
+/*
+ * This file is part of the API Platform project.
+ *
+ * (c) Kévin Dunglas <dunglas@gmail.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+declare(strict_types=1);
+
+namespace ApiPlatform\Tests\Functional\GraphQl;
+
+use ApiPlatform\Symfony\Bundle\Test\ApiTestCase;
+use ApiPlatform\Tests\Fixtures\TestBundle\Document\SecuredDummy as DocumentSecuredDummy;
+use ApiPlatform\Tests\Fixtures\TestBundle\Document\SecuredDummyCollection as DocumentSecuredDummyCollection;
+use ApiPlatform\Tests\Fixtures\TestBundle\Entity\SecuredDummy;
+use ApiPlatform\Tests\Fixtures\TestBundle\Entity\SecuredDummyCollection;
+use ApiPlatform\Tests\Fixtures\TestBundle\Entity\SecuredDummyCollectionParent;
+use ApiPlatform\Tests\RecreateSchemaTrait;
+use ApiPlatform\Tests\SetupClassResourcesTrait;
+
+final class SecurityTest extends ApiTestCase
+{
+    use RecreateSchemaTrait;
+    use SetupClassResourcesTrait;
+    protected static ?bool $alwaysBootKernel = false;
+
+    /**
+     * @return class-string[]
+     */
+    public static function getResources(): array
+    {
+        return [SecuredDummy::class, SecuredDummyCollection::class, SecuredDummyCollectionParent::class];
+    }
+
+    public function testQueryItem(): void
+    {
+        $resource = $this->isMongoDB() ? DocumentSecuredDummy::class : SecuredDummy::class;
+        $this->recreateSchema([$resource]);
+        $this->loadFixtures($resource);
+        $client = self::createClient();
+        $response = $client->request('POST', '/graphql', ['json' => [
+            'query' => <<<QUERY
+    {
+      securedDummy(id: "/secured_dummies/1") {
+        title
+        description
+      }
+    }
+QUERY,
+        ]]);
+
+        $d = $response->toArray();
+        $this->assertEquals('Access Denied.', $d['errors'][0]['message']);
+    }
+
+    public function testCreateItemUnauthorized(): void
+    {
+        $resource = $this->isMongoDB() ? DocumentSecuredDummy::class : SecuredDummy::class;
+        $this->recreateSchema([$resource]);
+        $client = self::createClient();
+        $response = $client->request('POST', '/graphql', ['json' => [
+            'query' => <<<QUERY
+mutation {
+    createSecuredDummy(input: {owner: "me", title: "Hi", description: "Desc", adminOnlyProperty: "secret", clientMutationId: "auth"}) {
+        securedDummy {
+            title
+            owner
+        }
+    }
+}
+QUERY,
+        ]]);
+
+        $d = $response->toArray();
+        $this->assertEquals('Only admins can create a secured dummy.', $d['errors'][0]['message']);
+    }
+
+    public function testQueryItemWithNode(): void
+    {
+        $resource = $this->isMongoDB() ? DocumentSecuredDummy::class : SecuredDummy::class;
+        $this->recreateSchema([$resource]);
+        $this->loadFixtures($resource);
+        $client = self::createClient();
+        $response = $client->request('POST', '/graphql', ['json' => [
+            'query' => <<<QUERY
+    {
+      node(id: "/secured_dummies/1") {
+        ... on SecuredDummy {
+            title
+        }
+      }
+    }
+QUERY,
+        ]]);
+
+        $d = $response->toArray();
+        $this->assertEquals('Access Denied.', $d['errors'][0]['message']);
+    }
+
+    public function loadFixtures(string $resourceClass): void
+    {
+        $container = static::$kernel->getContainer();
+        $registry = $this->isMongoDB() ? $container->get('doctrine_mongodb') : $container->get('doctrine');
+        $manager = $registry->getManager();
+        $s = new $resourceClass();
+        $s->setTitle('Secured Dummy 1');
+        $s->setDescription('Description 1');
+        $s->setAdminOnlyProperty('admin secret');
+        $s->setOwnerOnlyProperty('owner secret');
+        $s->setAttributeBasedProperty('attribute based secret');
+        $s->setOwner('user1');
+
+        $manager->persist($s);
+        $manager->flush();
+    }
+
+    public function testQueryCollection(): void
+    {
+        $resource = $this->isMongoDB() ? DocumentSecuredDummyCollection::class : SecuredDummyCollection::class;
+        $this->recreateSchema([$resource, $resource.'Parent']);
+        $this->loadFixturesQueryCollection($resource);
+        $client = self::createClient();
+
+        $response = $client->request('POST', '/graphql', ['headers' => ['Authorization' => 'Basic ZHVuZ2xhczprZXZpbg=='], 'json' => [
+            'query' => <<<QUERY
+    {
+        securedDummyCollectionParents {
+            edges {
+              node {
+               child {
+                  title, ownerOnlyProperty, owner
+                }
+              }
+            }
+        }
+    }
+QUERY,
+        ]]);
+
+        $d = $response->toArray();
+        $this->assertNull($d['data']['securedDummyCollectionParents']['edges'][1]['node']['child']['ownerOnlyProperty']);
+    }
+
+    public function loadFixturesQueryCollection(string $resourceClass): void
+    {
+        $parentResourceClass = $resourceClass.'Parent';
+        $container = static::$kernel->getContainer();
+        $registry = $this->isMongoDB() ? $container->get('doctrine_mongodb') : $container->get('doctrine');
+        $manager = $registry->getManager();
+        $s = new $resourceClass();
+        $s->title = 'Foo';
+        $s->ownerOnlyProperty = 'Foo by dunglas';
+        $s->owner = 'dunglas';
+        $manager->persist($s);
+        $p = new $parentResourceClass();
+        $p->child = $s;
+        $manager->persist($p);
+        $s = new $resourceClass();
+        $s->title = 'Bar';
+        $s->ownerOnlyProperty = 'Bar by admin';
+        $s->owner = 'admin';
+        $manager->persist($s);
+        $p = new $parentResourceClass();
+        $p->child = $s;
+        $manager->persist($p);
+        $s = new $resourceClass();
+        $s->title = 'Baz';
+        $s->ownerOnlyProperty = 'Baz by dunglas';
+        $s->owner = 'dunglas';
+        $manager->persist($s);
+        $p = new $parentResourceClass();
+        $p->child = $s;
+        $manager->persist($p);
+        $s = new $resourceClass();
+        $s->ownerOnlyProperty = 'Bat by admin';
+        $s->owner = 'admin';
+        $s->title = 'Bat';
+        $manager->persist($s);
+        $p = new $parentResourceClass();
+        $p->child = $s;
+        $manager->persist($p);
+        $manager->flush();
+    }
+}