Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/framework/GraphQl/Config/Element/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/GraphQl/Config/Element/FieldInterface.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 contract for fields data as GraphQL objects.
 *
 * @api
 */
interface FieldInterface extends ConfigElementInterface
{
    /**
     * Get the type's configured name.
     *
     * @return string
     */
    public function getTypeName(): string;

    /**
     * Return true if argument is a list of input items, otherwise false if it is a single object/scalar.
     *
     * @return bool
     */
    public function isList(): bool;

    /**
     * Return true if argument is required when invoking the query where the argument is specified. False otherwise.
     *
     * @return bool
     */
    public function isRequired(): bool;
}