Files
Stripe/graphql/fragments/TransactionChargeRequestedEvent.graphql
jackbeeby dc5eea1ad0 wdc
2024-12-05 18:20:27 +11:00

25 lines
390 B
GraphQL

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