Forum Discussion
christwr
7 years agoContributor III
Isn’t recursion where something calls itself?
You should be able to have A that calls B, and then B that calls C.
Sounds like maybe you’re just trying to implement looping (until param == 0)?
christwr
7 years agoContributor III
Not sure if it’s “legit” from SnapLogic’s perspective, but you can implement looping between parent/child pipelines. Have the child pipeline exposed via triggered task, then have parent pipeline use REST GET snap to call the child pipeline triggered task, and use the REST GET’s pagination features (Has Next & Next URL) to evaluate some criteria and re-GET the child pipeline until criteria is false.