![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/GraphQl/Config/Element/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\GraphQl\Config\Element; /** * Class representing 'field' GraphQL config element. * * Fields are used to describe possible values for a type/interface. * * @api */ class Field implements OutputFieldInterface { /** * @var string */ private $name; /** * @var string */ private $type; /** * @var array */ private $arguments; /** * @var bool */ private $required; /** * @var bool */ private $isList; /** * @var string */ private $resolver; /** * @var string */ private $description; /** * @var array */ private $cache; /** * @var array */ private $deprecated; /** * @param string $name * @param string $type * @param bool $required * @param bool $isList * @param string $itemType * @param string $resolver * @param string $description * @param array $arguments * @param array $cache * @param array $deprecated * @SuppressWarnings(PHPMD.ExcessiveParameterList) */ public function __construct( string $name, string $type, bool $required, bool $isList, string $itemType = '', string $resolver = '', string $description = '', array $arguments = [], array $cache = [], array $deprecated = [] ) { $this->name = $name; $this->type = $isList ? $itemType : $type; $this->required = $required; $this->isList = $isList; $this->resolver = $resolver; $this->description = $description; $this->arguments = $arguments; $this->cache = $cache; $this->deprecated = $deprecated; } /** * Get the field name. * * @return string */ public function getName() : string { return $this->name; } /** * Get the type's configured name. * * @return string */ public function getTypeName() : string { return $this->type; } /** * Return true if field is a list of items. False otherwise. * * @return bool */ public function isList() : bool { return $this->isList; } /** * Return true if the field is required by an input type to be populated. False otherwise. * * @return bool */ public function isRequired() : bool { return $this->required; } /** * Get the resolver for a given field. If no resolver is specified, return an empty string. * * @return string */ public function getResolver() : string { return $this->resolver; } /** * Get the list of arguments configured for the field. Return an empty array if no arguments are configured. * * @return Argument[] */ public function getArguments() : array { return $this->arguments; } /** * Return the human-readable description of the field. * * @return string|null */ public function getDescription() : string { return $this->description; } /** * Return the cache tag for the field. * * @return array|null */ public function getCache() : array { return $this->cache; } /** * Return the deprecated annotation for the field * * @return array */ public function getDeprecated() : array { return $this->deprecated; } }