I have a data sources that shows if an order was resolved as fraudulent (data="resolutions")
and in a different data source (data="headers") i have payment_method (Visa, Mastercard, etc)
I want to see a pie chart of only orders that have chargebacks on them by payment method.
data=headers
| top payment_method
This works for the pie chart of payment method. I tried:
data=headers OR data=resolutions resolution_name="ACM Chargeback Received - Fraud"
| top payment_method
and a few other variations, but I can't seem to get it to work.
Even if I can't do a pie chart and could figure out a table with
Payment Method | Count of Resolution Name (chargeback) that would work
... View more