...
| Codeblock | ||||||||
|---|---|---|---|---|---|---|---|---|
| ||||||||
{
__type(name: "ProductTypeEnum") {
kind
description
enumValues {
name
description
}
}
}
|
Beispiele
| Codeblock | ||||||||
|---|---|---|---|---|---|---|---|---|
| ||||||||
mutation updateArticle1 {
updateArticle(
data: {
product_type: Papierregister
}
where: {
article_number: "12345678",
shop_depot: CustomerDepot
}
) {
id
article_number
shop_depot
product_type
}
} |
| Codeblock | ||||||||
|---|---|---|---|---|---|---|---|---|
| ||||||||
mutation updateArticle2 {
updateArticle(
data: {
product_type_slug: "papierregister"
}
where: {
article_number: "12345678",
shop_depot: CustomerDepot
}
) {
id
article_number
shop_depot
product_type
}
} |
Verwandte Artikel
| Inhalt nach Stichwort | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...