Newbie here. Shopify has a feature that allows a user to add product variants (e.g. size, color, type) through a bulk action
This creates a list of all possible combinations for each product, without having to enter them manually. Coming from a SQL background where this could be accomplished through a cross-join, I’m still fuzzy on table relationships in Bubble and how I could duplicate this functionality.
For example, assuming Size, Color, Material variants for T-Shirts with Sml/Lrg, Red/Blue, Cotton/Polyester values, I’d want to see the following:
S Red Cotton
L Red Cotton
S Red Poly
L Red Poly
Etc.
Any ideas on how I could approach this?