I have a list of products, which belong to a category. Each product has tags. See following example (psuedocode)
Category = transport
Products = car, train, bus
car has tags = small, fast
train has tags = fast, large
bus has tags = slow, large
How can I list all tags from products that are in the transport category? the result should be ["small", "fast", "large", "slow"]