customerCheckVariantSoldOut
顧客向け商品販売可能の確認
customerCheckVariantSoldOut(
customerId: String!
variantId: String!
): ResultCustomerCheckVariantSoldOut
Arguments
customerCheckVariantSoldOut.customerId
● String!
non-null scalar
顧客ID ※必須
- 説明: 処理対象顧客の globally-unique ID.
- 例:
"gid://shopify/Customer/123456789"
customerCheckVariantSoldOut.variantId
● String!
non-null scalar
バリエーションID ※必須
Type
ResultCustomerCheckVariantSoldOut
object
顧客向け商品販売可能の確認
Example
{
customerCheckVariantSoldOut(
customerId: "gid://shopify/Customer/123456789"
variantId: "gid://shopify/ProductVariant/123456789"
) {
soldOut
}
}