| Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/GraphQl/Config/Element/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/framework/GraphQl/Config/Element/TypeInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\GraphQl\Config\Element;
use Magento\Framework\GraphQl\Config\ConfigElementInterface;
/**
* Defines contracts for return type data as GraphQL objects.
*/
interface TypeInterface extends ConfigElementInterface
{
/**
* Get a list of fields that make up the possible return or input values of a type.
*
* @return Field[]
*/
public function getFields() : array;
}