File tree Expand file tree Collapse file tree 1 file changed +49
-0
lines changed
Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change @@ -43,8 +43,49 @@ Anytime they go shopping on your marketplace, they can quickly add any desired p
4343### Support Queries
4444
45451 . 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+ ```
46652 . 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+ ```
47803 . Remove split cart when cancel checkout or customer logout
81+
82+ ```
83+ mutation {
84+ removeSplitCart(
85+ input: { cart_id: String }
86+ )
87+ }
88+ ```
48894 . Get Seller Info for cart item
4990
5091Example:
@@ -74,3 +115,11 @@ Example:
74115}
75116```
761175 . Get Store config enable/disable split cart feature
118+
119+ ```
120+ {
121+ storeConfig {
122+ lofmp_splitcart_enabled
123+ }
124+ }
125+ ```
You can’t perform that action at this time.
0 commit comments