Hello,
I’m trying to save properties of line items that I retrieve from Shopify into Google Sheet. Any suggestions and/or workarounds?
I need a Note.
When I try to save it in Google Sheet, I only this option (all 4 properties got messed up by Make):
Hi @gleb_mikulich ,
You need to filter the properties, looking for the one named “Note”. You can use a map()
function to do this. And then return the first value that matches Name = Note.
Try copying and pasting this code into the “Line Items Note (Shopify)” field:
{{first(map(50.lineItems.properties; “value”; “name”; “Note”))}}
You may need to insert references to modules.
Let us know how it goes.
Regards, Terry.
1 Like
Thanks a lot. I’ll let you know if it works