Skip to content

Commit ab59c27

Browse files
committed
fix
1 parent 642f10d commit ab59c27

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

README.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,49 @@ Anytime they go shopping on your marketplace, they can quickly add any desired p
4343
### Support Queries
4444

4545
1. Init split cart before checkout
46+
47+
Example:
48+
49+
```
50+
mutation {
51+
initCheckoutSplitCart(
52+
input: {
53+
seller_url: String!
54+
cart_id: String!
55+
}
56+
) {
57+
id
58+
parent_id
59+
quote_id
60+
is_active
61+
is_ordered
62+
}
63+
}
64+
```
4665
2. Checkout split cart
66+
67+
```
68+
mutation {
69+
placeOrderSplitCart(
70+
sellerUrl: String
71+
input: { cart_id: String }
72+
) {
73+
order {
74+
order_number
75+
order_id
76+
}
77+
}
78+
}
79+
```
4780
3. Remove split cart when cancel checkout or customer logout
81+
82+
```
83+
mutation {
84+
removeSplitCart(
85+
input: { cart_id: String }
86+
)
87+
}
88+
```
4889
4. Get Seller Info for cart item
4990

5091
Example:
@@ -74,3 +115,11 @@ Example:
74115
}
75116
```
76117
5. Get Store config enable/disable split cart feature
118+
119+
```
120+
{
121+
storeConfig {
122+
lofmp_splitcart_enabled
123+
}
124+
}
125+
```

0 commit comments

Comments
 (0)