Skip to content

Instantly share code, notes, and snippets.

View DONSA's full-sized avatar

Nuno Lopes DONSA

View GitHub Profile
{
list {
updated
quantity
name
isSelected
listId
retail(languageCode: "sv") {
currency
regularTotalPrice {
@DONSA
DONSA / add-items.graphql
Created March 18, 2020 15:35
Add items
mutation{
addItems(
listId: "id-returned-from-created-list",
items:[
{ itemNo: "80449901", quantity: 1 }
{ itemNo: "10390008", quantity: 1 }
{ itemNo: "60214159", quantity: 1 }
{ itemNo: "10203610", quantity: 1 }
{ itemNo: "20320312", quantity: 1 }
{ itemNo: "39216754", quantity: 1 }
@DONSA
DONSA / create-list.graphql
Created March 18, 2020 15:34
Create list
mutation{
createList(name: "Demo"){
listId
}
}