Skip to content

Commit 18f0536

Browse files
authored
Merge pull request #434 from gallyamov/308_credit_query_schema_update
magento/partners-magento2b2b#308
2 parents c304890 + 8aa0649 commit 18f0536

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

design-documents/graph-ql/coverage/b2b/company-credit.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type CompanyCreditOperation {
2222
type: CompanyCreditOperationType! @doc(description: "The type of the company credit operation")
2323
amount: Money @doc(description: "The amount fo the company credit operation")
2424
balance: CompanyCredit! @doc(description: "Credit balance after the company credit operation")
25-
purchase_order: String @doc(description: "Purchase order number associated with the company credit operation")
25+
custom_reference_number: String @doc(description: "Custom reference number associated with the company credit operation")
2626
updated_by: CompanyCreditOperationUser! @doc(description: "The user submitting the company credit operation")
2727
}
2828

@@ -53,12 +53,11 @@ enum CompanyCreditOperationUserType {
5353

5454
input CompanyCreditHistoryFilterInput {
5555
operation_type: CompanyCreditOperationType @doc(description: "Enum filter by the type of the company credit operation")
56-
purchase_order: String @doc(description: "Free text filter by the purchase order number associated with the company credit operation")
56+
custom_reference_number: String @doc(description: "Free text filter by the custom reference number associated with the company credit operation")
5757
updated_by: String @doc(description: "Free text filter by the name of the person submitting the company credit operation")
5858
}
5959
###### End: Defining new types ######
6060

6161
```
6262

6363

64-

0 commit comments

Comments
 (0)