Skip to content

Commit 65a33c8

Browse files
mslabkopaliarush
andauthored
Apply suggestions from code review
Co-Authored-By: Alex Paliarush <[email protected]>
1 parent 60445ee commit 65a33c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

design-documents/graph-ql/coverage/add-items-to-cart-single-mutation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ Entered options:
4848
- Customizable options such as text field, file, etc
4949
- Gift Card (amount)
5050

51-
### Option implementation
51+
#### Option implementation
5252

5353
Product schema should be extended in order to provide option UUID.
5454

55-
Option UUID is `base64` encoded string, that pack details for each option and in most cases is can be preseneted as
55+
Option UUID is `base64` encoded string, that encodes details for each option and in most cases can be presented as
5656
`base64("<option-type>/<option-id>/<option-value-id>")`
57-
For example, for customizable drop-down option "Color(id = 1), with values Red (id=1, Green=2)" UUID for Color:Red will looks like `"Y3VzdG9tLW9wdGlvbi8xLzE=" => base64("custom-option/1/1")`
57+
For example, for customizable drop-down option "Color(id = 1), with values Red(id = 1), Green(id = 2)" UUID for Color:Red will looks like `"Y3VzdG9tLW9wdGlvbi8xLzE=" => base64("custom-option/1/1")`
5858

59-
Here is a GQL query that shows where need to add new field "uuid: String!" to cover existing cases:
59+
Here is a GQL query that shows how to add a new field "uuid: String!" to cover existing cases:
6060

6161

6262
``` graphql

0 commit comments

Comments
 (0)