12345678910111213141516171819202122232425262728293031323334353637 |
- <?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.
- */
- 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;
- }
|