Zack Saadioui
1/26/2025
1 2 3 4 5 6 7 8 9 10 11 12
query GetVariants($id: ID!) { product(id: $id) { variants(first: 10) { edges { node { id title } } } } }
1
"gid://shopify/ProductVariant/31696763027492"
1
productCreate
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
mutation productCreate($input: ProductInput!) { productCreate(input: $input) { userErrors { field message } product { id variants(first: 5) { edges { node { id title } } } } } }
1
productVariantUpdate
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
mutation productVariantUpdate($input: ProductVariantInput!) { productVariantUpdate(input: $input) { productVariant { id media(first: 10) { nodes { id mediaContentType preview { status } } } } userErrors { field message } } }
1
updated_at
Copyright © Arsturn 2025