GraphQL\Type\Definition\FieldArgument::getType PHP Метод

getType() публичный Метод

public getType ( ) : InputType
Результат InputType
    public function getType()
    {
        if (null === $this->resolvedType) {
            $this->resolvedType = Type::resolve($this->type);
        }
        return $this->resolvedType;
    }