Hi everyone!
I’m in the process of setting up and e-commerce SaaS and am working through product variations.
Each product can have options added to it as nested below:
-PRODUCT(OPTION)
-OPTION (Text, OPTION VALUES) eg. Size
-OPTION VALUES(Text) eg. Small
An Option can have unlimited referenced Option values and a product can have unlimited referenced Options.
I need to work out how to create Variations of these options. For example if a product had the below:
- SIZE - SMALL,MEDIUM,LARGE
- COLOUR - BLACK,BLUE
I would need to create variations as below:
SMALL, BLACK
SMALL, BLUE
MEDIUM, BLACK
MEDIUM, BLUE
LARGE, BLACK
LARGE, BLUE
I have attempted to run iterative api workflows on lists (Options then Option Values) but I just can’t seem to get it to create the variations. It’s probably something simple I’m not seeing from looking at it too long.
Any help would be greatly appreciated!