20 lines
233 B
GraphQL
20 lines
233 B
GraphQL
![]() |
fragment PaymentFragment on Payment {
|
||
|
__typename
|
||
|
id
|
||
|
created
|
||
|
modified
|
||
|
gateway
|
||
|
isActive
|
||
|
chargeStatus
|
||
|
total {
|
||
|
amount
|
||
|
}
|
||
|
capturedAmount {
|
||
|
...MoneyFragment
|
||
|
}
|
||
|
creditCard {
|
||
|
brand
|
||
|
}
|
||
|
paymentMethodType
|
||
|
}
|