File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -21,24 +21,24 @@ interface CartItemInterface {
2121}
2222
2323type SplitCartSellerInfo {
24- seller_id : Int
25- seller_url : String
26- seller_name : String
24+ seller_id : Int @doc ( description : " Seller ID. " )
25+ seller_url : String @doc ( description : " Seller Url Key. " )
26+ seller_name : String @doc ( description : " Seller Name. " )
2727}
2828
2929type SplitCart {
3030 id : Int
31- parent_id : Int
32- quote_id : Int
33- is_active : Int
34- is_ordered : Int
31+ parent_id : Int @doc ( description : " Parent Quote Id. " )
32+ quote_id : Int @doc ( description : " Child Quote ID. " )
33+ is_active : Int @doc ( description : " Is Active. " )
34+ is_ordered : Int @doc ( description : " Is ordered for this quote. " )
3535}
3636
3737input SubmitSplitCartInput {
38- seller_url : String !
39- cart_id : String !
38+ seller_url : String ! @doc ( description : " Seller Url Key. " )
39+ cart_id : String ! @doc ( description : " Cart Marked ID. " )
4040}
4141
4242input removeSplitCartInput {
43- cart_id : String !
43+ cart_id : String ! @doc ( description : " Cart Marked ID. " )
4444}
You can’t perform that action at this time.
0 commit comments