CJA metric creation
I would like to understand CJA in depth so here is my question. Additionally I understand SQL well (I assume CJA is SQL on the back-end….)
Assume I have two events with the same structure - XDM paths:
Event1 - add to cart
{ product.price: 55,
eventType: addToCart }
Event2 - purchase
{ product.price: 33,
eventType: purchase }
How to create metric which tracks only product.price when eventType is purchase?


