Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit d4f7b1f

Browse files
committed
fix(billing): missing note field when create
1 parent 364387f commit d4f7b1f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

containers/Cashier/schema.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,21 @@ const createBill = gql`
55
$paymentMethod: PaymentMethodEnum!
66
$paymentUsage: PaymentUsageEnum!
77
$amount: Float!
8+
$note: String
89
) {
910
createBill(
1011
paymentMethod: $paymentMethod
1112
paymentUsage: $paymentUsage
1213
amount: $amount
14+
note: $note
1315
) {
1416
id
1517
state
1618
amount
1719
hashId
1820
paymentUsage
1921
paymentMethod
22+
note
2023
}
2124
}
2225
`
@@ -30,6 +33,7 @@ const pagedBillRecords = gql`
3033
hashId
3134
paymentUsage
3235
paymentMethod
36+
note
3337
}
3438
totalPages
3539
totalCount

0 commit comments

Comments
 (0)