GraphQL\Type\Definition\Type::getInternalTypes PHP Метод

getInternalTypes() публичный статический Метод

public static getInternalTypes ( ) : Type[]
Результат Type[]
    public static function getInternalTypes()
    {
        return self::getInternalType();
    }

Usage Example

Пример #1
0
 public function getTypeMap()
 {
     if (null === $this->_typeMap) {
         $map = [];
         foreach ([$this->getQueryType(), $this->getMutationType(), Introspection::_schema()] as $type) {
             $this->_extractTypes($type, $map);
         }
         $this->_typeMap = $map + Type::getInternalTypes();
     }
     return $this->_typeMap;
 }
All Usage Examples Of GraphQL\Type\Definition\Type::getInternalTypes