Your IP : 127.0.0.1
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\GraphQl\Query;
use Magento\Framework\GraphQl\Exception\ExceptionFormatter;
use Magento\Framework\GraphQl\Query\Resolver\ContextInterface;
use Magento\Framework\GraphQl\Schema;
/**
* Wrapper for GraphQl execution of a schema
*/
class QueryProcessor
{
/**
* @var ExceptionFormatter
*/
private $exceptionFormatter;
/**
* @var QueryComplexityLimiter
*/
private $queryComplexityLimiter;
/**
* @var \Magento\Framework\GraphQl\Query\ErrorHandlerInterface
*/
private $errorHandler;
/**
* @param ExceptionFormatter $exceptionFormatter
* @param QueryComplexityLimiter $queryComplexityLimiter
*
* @param \Magento\Framework\GraphQl\Query\ErrorHandlerInterface $errorHandler
* @SuppressWarnings(PHPMD.LongVariable)
*/
public function __construct(
ExceptionFormatter $exceptionFormatter,
QueryComplexityLimiter $queryComplexityLimiter,
ErrorHandlerInterface $errorHandler
) {
$this->exceptionFormatter = $exceptionFormatter;
$this->queryComplexityLimiter = $queryComplexityLimiter;
$this->errorHandler = $errorHandler;
}
/**
* Process a GraphQl query according to defined schema
*
* @param Schema $schema
* @param string $source
* @param ContextInterface $contextValue
* @param array|null $variableValues
* @param string|null $operationName
* @return Promise|array
*/
public function process(
Schema $schema,
string $source,
ContextInterface $contextValue = null,
array $variableValues = null,
string $operationName = null
) : array {
if (!$this->exceptionFormatter->shouldShowDetail()) {
$this->queryComplexityLimiter->execute();
}
$rootValue = null;
return \GraphQL\GraphQL::executeQuery(
$schema,
$source,
$rootValue,
$contextValue,
$variableValues,
$operationName
)->setErrorsHandler(
[$this->errorHandler, 'handle']
)->toArray(
$this->exceptionFormatter->shouldShowDetail() ?
\GraphQL\Error\Debug::INCLUDE_DEBUG_MESSAGE : false
);
}
}