load
This commit is contained in:
28
graphql/mutations/TransactionEventReport.graphql
Normal file
28
graphql/mutations/TransactionEventReport.graphql
Normal file
@@ -0,0 +1,28 @@
|
||||
mutation TransactionEventReport(
|
||||
$transactionId: ID!
|
||||
$amount: PositiveDecimal!
|
||||
$availableActions: [TransactionActionEnum!]!
|
||||
$externalUrl: String!
|
||||
$message: String
|
||||
$pspReference: String!
|
||||
$time: DateTime!
|
||||
$type: TransactionEventTypeEnum!
|
||||
) {
|
||||
transactionEventReport(
|
||||
id: $transactionId
|
||||
amount: $amount
|
||||
availableActions: $availableActions
|
||||
externalUrl: $externalUrl
|
||||
message: $message
|
||||
pspReference: $pspReference
|
||||
time: $time
|
||||
type: $type
|
||||
) {
|
||||
alreadyProcessed
|
||||
errors {
|
||||
field
|
||||
message
|
||||
code
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user