Files
stripeapp/graphql/fragments/TransactionRefundRequestedEvent.graphql
jackbeeby 09db3a54c3 load
2024-12-05 18:55:18 +11:00

25 lines
390 B
GraphQL

fragment TransactionRefundRequestedEvent on TransactionRefundRequested {
__typename
recipient {
...PaymentGatewayRecipient
}
action {
amount
actionType
}
transaction {
id
pspReference
sourceObject: order {
... on Order {
total {
gross {
...Money
}
}
}
...OrderOrCheckoutLines
}
}
}