Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 3f12e73

Browse files
committed
Fixed llinnting errors
1 parent 171fdf8 commit 3f12e73

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/guides/v2.4/graphql/mutations/add-requisition-list-items-to-cart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ The following example adds items to the cart.
3030

3131
**Request:**
3232

33-
``` graphql
33+
```graphql
3434
mutation {
3535
addRequisitionListItemsToCart (
3636
requisitionListUid: "Mg=="
37-
requisitionListItemUids:
37+
requisitionListItemUids:
3838
["Mw==", "Ng==", "Nw=="]
39-
)
39+
)
4040
{
4141
status
4242
cart {

src/guides/v2.4/graphql/mutations/move-items-between-requisition-lists.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ The following example moves an item from one requisition list to another.
3131

3232
**Request:**
3333

34-
``` graphql
34+
```graphql
3535
mutation {
3636
moveItemsBetweenRequisitionLists(
3737
sourceRequisitionListUid: "Mg=="
3838
destinationRequisitionListUid: "Mw=="
3939
requisitionListItem: {
40-
requisitionListItemUids:
40+
requisitionListItemUids:
4141
["MTI="]
4242
}
4343
) {

src/guides/v2.4/graphql/mutations/update-requisition-list-items.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The following example updates the quantity of an item in a requisition list.
3030

3131
**Request:**
3232

33-
``` graphql
33+
```graphql
3434
mutation {
3535
updateRequisitionListItems(
3636
requisitionListUid: "Mg==",
@@ -48,7 +48,7 @@ mutation {
4848
items {
4949
items {
5050
uid
51-
quantity
51+
quantity
5252
product {
5353
uid
5454
name
@@ -63,7 +63,7 @@ mutation {
6363

6464
**Response:**
6565

66-
``` json
66+
```json
6767
{
6868
{
6969
"data": {

0 commit comments

Comments
 (0)