Welcome to TeX.SE. This kind of drawing can be done with the to path operation, its in and out options to specify incoming and outgoing angles at interesting points, the attach arrow style from Schrödinger's cat and... a bit of patience.
\documentclass[tikz,border=2mm]{standalone}
\usetikzlibrary{decorations.markings, arrows.meta, bending}
% 'attach arrow' style from Schrödinger's cat:
% <https://tex.stackexchange.com/a/524935/73317>
\tikzset{%
attach arrow/.style={
decoration={
markings,
mark=at position 0 with {\pgfextra{%
\pgfmathsetmacro{\tmpArrowTime}{\pgfkeysvalueof{/tikz/arc arrow/length}/(\pgfdecoratedpathlength)}%
\xdef\tmpArrowTime{\tmpArrowTime}}},
mark=at position {#1-3*\tmpArrowTime} with {\coordinate(@1);},
mark=at position {#1-2*\tmpArrowTime} with {\coordinate(@2);},
mark=at position {#1-1*\tmpArrowTime} with {\coordinate(@3);},
mark=at position {#1+\tmpArrowTime/2} with {\coordinate(@4);
\draw[-{Stealth[length=\pgfkeysvalueof{/tikz/arc arrow/length},bend]}]
plot[smooth] coordinates {(@1) (@2) (@3) (@4)};},
},
postaction=decorate,
},
attach arrow/.default=0.5,
arc arrow/length/.initial=2mm,
}
\begin{document}
\begin{tikzpicture}
\draw[attach arrow=0.2, attach arrow=0.83]
(-6,-2) to[out=45, in=180] (-4,-1) to[out=0, in=180] (-1.7,-1.8)
to[out=0, in=-95] (0,0) to[out=85, in=0] (-3,2) to[out=180, in=70] (-5,1);
\draw[attach arrow=0.5] (-6.5,-4) to[out=-30, in=180] (-5.5,-4.2)
to[out=0, in=180] (-3,-3) to[out=0, in=205] (-1.1,-3)
to[out=25, in=-95] (0,0);
\draw[attach arrow=0.3] (-1.5,-8) to[out=110, in=260] (-0.2,-2.5)
to[out=80, in=-95] (0,0);
\end{tikzpicture}
\end{document}

(pkt1) .. controls ++(ang1:rad1) and ++(ang2:rad2) .. (pkt) ..., then make sure that the direction of the control point (the two polar coordinates I used) at the "convergens" is the same – daleif Jan 27 '20 at 15:01