Hi I have an array receive from shopify (line items), it further have an array properties, I want to push those properties in a google sheet in separate columns, but the problem is when I tried to add properties in google sheet I see only one property while in shopify output I have all 4 properties of a line item.
Hello,
For this use “get” built-in function of make.
For example if you want to fetch 4th collection of properties array you will write like this
get(properties;4)
This will return the 4th object of the array.
Hope this helps
1 Like
@Umer_Jamil Thank you, it worked for me.
2 Likes

