Skip to content

Commit 642f10d

Browse files
committed
fix
1 parent 317ad5d commit 642f10d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

etc/schema.graphqls

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,24 @@ interface CartItemInterface {
2121
}
2222

2323
type 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

2929
type 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

3737
input 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

4242
input removeSplitCartInput {
43-
cart_id: String!
43+
cart_id: String! @doc(description: "Cart Marked ID.")
4444
}

0 commit comments

Comments
 (0)