This Transform enables you to pull a table of Stripe fees and the transactions on which these fees were incurred.
with fees as (
select
balance_transaction_id,
amount,
application,
currency,
description,
type
from stripe.fee
)
select *
from fees
with fees as (
select
balance_transaction_id,
amount,
application,
currency,
description,
type
from stripe.fee
)
select *
from fees