* * 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\Serializer; use ApiPlatform\Metadata\GraphQl\Operation; /** * Builds the context used by the Symfony Serializer. * * @author Alan Poulain */ interface SerializerContextBuilderInterface { public function create(string $resourceClass, Operation $operation, array $resolverContext, bool $normalization): array; }