You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
GraphQL: Deprecate id attributes in favor of uids (#8273)
* GraphQL: Deprecate various IDs in favor of UIDs
* next round
* more updated examples
* checkpoint
* Checkpoint
* Checkpoint
* Update examples
* Add gift card/gift wrapping
* fix broken link
* broken link
* Apply suggestions from code review
Co-authored-by: Erik Marr <[email protected]>
Co-authored-by: Erik Marr <[email protected]>
`entered_options` | [EnteredOptionInput!] | An array of entered options for the base product, such as personalization text
4
+
`parent_sku` | String | For child products, the SKU of its parent product
5
+
`quantity` | Float! | The quantity of the item to add to the cart
6
+
`selected_options` | [ID!] | The selected options for the base product, such as color or size, using the unique ID for a customizable or configurable object such as `CustomizableRadioOption`, `CustomizableDropDownOption`, or `ConfigurableProductOptionsValues`
7
+
`sku` | String! | The sku of the product to be added to the cart
Copy file name to clipboardExpand all lines: src/_includes/graphql/entered-option-input.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,5 +2,5 @@ The `EnteredOptionInput` object must contain the following attributes.
2
2
3
3
Attribute | Data Type | Description
4
4
--- | --- | ---
5
-
`uid` | ID! | An encoded ID
5
+
`uid` | ID! | The unique ID for a specific `CustomizableOptionInterface` object, such as a `CustomizableFieldOption`, `CustomizableFileOption`, or `CustomizableAreaOption` object
0 commit comments