GraphQL\Type\Definition\FieldArgument::getType PHP Method

getType() public method

public getType ( ) : InputType
return InputType
    public function getType()
    {
        if (null === $this->resolvedType) {
            $this->resolvedType = Type::resolve($this->type);
        }
        return $this->resolvedType;
    }