CustomerChangeableProduct
顧客向け契約変更可能商品
type CustomerChangeableProduct {
productId: String!
title: String!
onlineStorePreviewUrl: String
images: [String!]!
variants: [CustomerChangeableProductVariant!]!
}
Fields
CustomerChangeableProduct.productId
● String!
non-null scalar
商品のglobally-unique ID.
- 例:
gid://shopify/Product/1234567890
CustomerChangeableProduct.title
● String!
non-null scalar
商品名
- 例:
"アイスクリーム定期便"
CustomerChangeableProduct.onlineStorePreviewUrl
● String
scalar
ストアフロント上のプレビューURL
- 例:
"https://example.com/product"
CustomerChangeableProduct.images
● [String!]!
non-null scalar
商品のメイン画像
- 例:
["https://example.com/image.jpg"]
CustomerChangeableProduct.variants
● [CustomerChangeableProductVariant!]!
non-null object
商品のバリエーション
Example
{
"productId": "gid://shopify/Product/1234567890",
"title": "タイトル",
"onlineStorePreviewUrl": "https://example.com/product",
"images": [
"https://example.com/image.jpg"
],
"variants": [
{
"variantId": "gid://shopify/ProductVariant/1234567890",
"requiresShipping": true
}
]
}