Skip to main content

CustomerBoxChildVariant

顧客向けBOX小商品のうち、定期購買で契約中の数量をセットした商品バリエーション

type CustomerBoxChildVariant {
productId: String!
variantId: String!
displayName: String!
description: String!
onlineStorePreviewUrl: String!
image: String
price: Int
quantity: Int!
}

Fields

CustomerBoxChildVariant.productId ● String! non-null scalar

BOX小商品の商品ID

  • 説明: Productのglobally-unique ID.
  • データ例: "gid://shopify/Product/1234567890"

CustomerBoxChildVariant.variantId ● String! non-null scalar

BOX小商品のバリエーションID

  • 説明: ProductVariantのglobally-unique ID.
  • データ例: "gid://shopify/ProductVariant/1234567890"

CustomerBoxChildVariant.displayName ● String! non-null scalar

BOX小商品の表示名

  • 説明: BOX小商品の表示名
  • データ例: "BOX小商品"

CustomerBoxChildVariant.description ● String! non-null scalar

BOX小商品の説明

  • 説明: BOX小商品の説明
  • データ例: "BOX小商品の説明"

CustomerBoxChildVariant.onlineStorePreviewUrl ● String! non-null scalar

ストアフロント上のプレビューURL

  • 説明: BOX小商品のストアフロント上のプレビューURL
  • データ例: "https://example.com/box-child-product"

CustomerBoxChildVariant.image ● String scalar

BOX小商品の画像URL

  • 説明: BOX小商品の画像URL
  • データ例: "https://example.com/box-child-product.jpg"

CustomerBoxChildVariant.price ● Int scalar

BOX小商品の価格

  • 説明: BOX小商品の価格
  • データ例: 2000

CustomerBoxChildVariant.quantity ● Int! non-null scalar

BOX小商品の数量

  • 説明: BOX小商品の数量
  • データ例: 1

Example

{
"productId": "gid://shopify/Product/1234567890",
"variantId": "gid://shopify/ProductVariant/1234567890",
"displayName": "BOX小商品",
"description": "BOX小商品の説明",
"onlineStorePreviewUrl": "https://example.com/box-child-product",
"image": "https://example.com/box-child-product.jpg",
"quantity": 1
}

Member Of

ResultCustomerBox object