CustomerPlanBox
顧客向けプランに紐づくBOX情報
type CustomerPlanBox {
boxId: String!
title: String!
description: String
parentProductId: String!
}
Fields
CustomerPlanBox.boxId
● String!
non-null scalar
BOXのID
- 説明: BOXのユニークID
- データ例:
69562469-a78d-4649-affb-f645ee33bc39
CustomerPlanBox.title
● String!
non-null scalar
BOXのタイトル
- 説明: BOXのタイトルを設定した文字列
- データ例:
BOXタイトル
CustomerPlanBox.description
● String
scalar
BOXの説明
- 説明: BOXの説明を設定した文字列
- データ例:
BOX説明
CustomerPlanBox.parentProductId
● String!
non-null scalar
BOXの親商品ID
- 説明: BOXの親商品の globally-unique ID
- データ例:
gid://shopify/Product/1234567890
Example
{
"boxId": "69562469-a78d-4649-affb-f645ee33bc39",
"title": "BOXタイトル",
"description": "BOX説明",
"parentProductId": "gid://shopify/Product/1234567890"
}
Member Of
ResultCustomerPlanGroup
object