Filter on Iterator bundle value not working β€” note_attributes from Shopify

:bullseye: What is your goal?

How to filter Iterator bundles by value field from Shopify note_attributes

:thinking: What is the problem & what have you tried?

Hi,

I have a scenario that searches Shopify orders and iterates over the note_attributes array using an Iterator module.

Each bundle from the Iterator has two fields: name and value.

Example note_attributes from Shopify order:

Pickup-Date β†’ 2026/05/02
Pickup-Time β†’ 10:00 AM - 11:30 AM
Pickup-Location β†’ Casa Gatto
I want to filter only the bundle where value contains today’s date (2026/05/02).

I tried using {{3.value}} Contains 2026/05/02 in the filter but all 5 bundles are blocked (:prohibited:) even though one bundle has exactly value = 2026/05/02.

Question: What is the correct way to filter Iterator bundles by the value field from a Shopify note_attributes array?

Thank you!

Hey there,

can you show a screenshot of how the filter is setup and what the values look like? Off of the description alone, it sounds like you are checking a text field against a date value so they don’t match. Change both of them to dates or both of them to text.

Hi, thank you for the quick reply!

Here are the two screenshots:

  1. Filter setup β€” field is {{3.value}}, operator is Text operators: Contains, value is 2026/05/02

  2. Filter inspector β€” all 5 bundles are blocked (:prohibited:), even though one bundle should have value = 2026/05/02

The Iterator is iterating over Shopify note_attributes (array of name/value pairs from Zapiet). Each bundle is one attribute.

Could the issue be that {{3.value}} is not returning a plain text string?

Thank you!