Last active
May 16, 2025 20:17
-
-
Save zeluizr/545ea3285805849797c58637d1103d9d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mutation AddToCart($orderFormId: ID!, $items: [ItemInput!]!) { | |
addToCart(orderFormId: $orderFormId, items: $items) { | |
id | |
items { | |
id | |
name | |
attachments { | |
name | |
content | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"orderFormId": "8ccde097b54b41d5a3f6154b6809d746", | |
"items": [ | |
{ | |
"id": 23861106, | |
"index": 0, | |
"quantity": 1, | |
"seller": "1", | |
"options": [ | |
{ | |
"assemblyId": "Personalizar", | |
"inputValues": { | |
"image": "https://cdn.vteximg.com.br/arquivos/ids/155195-800-800/IMG_20230918_153036.jpg?v=1695058231", | |
"linea1": "Exemplo 1", | |
"linea2": "Exemplo 2", | |
"talla1": "P", | |
"talla2": "P", | |
"font": "Roboto" | |
} | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment