Saved Customer Searches - aareano/ifshop-wiki GitHub Wiki

The Saved Customer Search event class contains the following events:

  • a customer saved search is created
  • a customer saved search is updated

The customer_group drop is the root drop that's defined for this class. Below is an example of the tree of liquid drops available to you.

Example Usage: To access the name of the last order of the first customer in the customer group, you would use customer_group.customers[0].last_order.name.

customer_group
├── customer
│   ├── customer_address
│   ├── customer_address
│   └── customer_default_address
├── customer
│   ├── customer_address
│   └── customer_default_address
├── customer
│   ├── customer_address
│   └── customer_default_address
├── customer
│   ├── customer_address
│   └── customer_default_address
└── shop
    └── collection

The tree is representative of what you can expect for the following events:

  • a customer saved search is created
  • a customer saved search is updated

The remaining customer saved search event has limited data availability because Shopify deletes the data immediately, before ifshop has access to it:

  • a customer saved search is deleted

Note: This tree is an illustrative, but not exhaustive - in theory, it goes on forever! - demonstration of the assemblage and structure of the data available to you.

Warning: The tree of liquid drops you encounter in practice will almost certainly have different dimensions than this. This is merely an example to show structure.