Hi All,
We operate a custom product business with over 10^18 possible SKUs. We’re on Shopify but don’t use Shopify products due to SKU limitations. When building confirmation emails in Klaviyo we’re struggling to pull line item properties as they may be in a different order based on the type of product ordered.
If we used Shopify products, we could pull the value for the field “_image” like this:
{{item.product.properties|lookup:'_image'}}
instead this _image value may be in position 14, 20, or 25 like this:
{{ event.extra.line_items.0.properties.25.value }}
Is there a way to query all event.extra.line_items and only return the value if it matches a specific name?