<?php
namespace Mageplaza\ProductAttachments\Model\Resolver\GetConfiguration;

/**
 * Interceptor class for @see \Mageplaza\ProductAttachments\Model\Resolver\GetConfiguration
 */
class Interceptor extends \Mageplaza\ProductAttachments\Model\Resolver\GetConfiguration implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Mageplaza\ProductAttachments\Helper\Data $helperData, \Mageplaza\ProductAttachments\Model\Api\ProductAttachmentsRepository $productAttachmentsRepository, \Magento\Framework\App\RequestInterface $request)
    {
        $this->___init();
        parent::__construct($helperData, $productAttachmentsRepository, $request);
    }

    /**
     * {@inheritdoc}
     */
    public function resolve(\Magento\Framework\GraphQl\Config\Element\Field $field, $context, \Magento\Framework\GraphQl\Schema\Type\ResolveInfo $info, ?array $value = null, ?array $args = null)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'resolve');
        return $pluginInfo ? $this->___callPlugins('resolve', func_get_args(), $pluginInfo) : parent::resolve($field, $context, $info, $value, $args);
    }
}
