using Arrays unlocks a lot of very interesting functionality in Tulip; you can populate drop downs with Arrays, you can process information sent in Arrays from Connector Functions, you can use them to easily loop through information.
but to get started, you first need to understand how to create an Array (at least from an App). to do so, all you need to do is use the Arrays > Push onto Array Action in a Trigger. here’s a quick guide:
I’m running Connector function on step enter trigger and then I would like to push result into array. Looks like variable type is not correct to push it into array.
Can you please provide correct steps to push values from db into array.
hello @ermingut, are you storing the Output of the Connector Function as a Variable or as an Array in your App (if you could send a screenshot of the Variables Modal that would be great)?? thanks!!
yes, this is indeed what I was looking for!! the reason why you’re not seeing that option in the Trigger you shared here is because it’s already an Array and that’s expecting a regular String.
So as mentioned connector function only returns object. And this can be used for various purposes thru the app.
While solution we found is good for my needs, I would like to know if is it possible to return array of strings from connector function? (to solve @Ruijia problem)