25 lines
390 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|