Products - aareano/ifshop-wiki GitHub Wiki
The Product event class contains the following events:
- a product is created
- a product is updated
- a product is deleted
The product
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 image of the first variant of the product, you would use product.variants[0].image
.
product
├── image
├── image
├── image
├── image
├── image
├── image
├── product_option
├── product_option
├── variant
│ └── image
├── variant
│ └── image
├── variant
│ └── image
├── variant
│ └── image
├── variant
│ └── image
├── variant
│ └── image
├── variant
│ └── image
└── variant
└── image
The tree is representative of what you can expect for the following events:
- a product is created
- a product is updated
The remaining product event has limited data availability (only product.id
is available) because Shopify deletes the data immediately, before ifshop has access to it:
- a product 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.