customerSubscriptionContractLinePlan
顧客向け定期購買商品のプラン一覧取得
customerSubscriptionContractLinePlan(
subscriptionContractId: String!
customerId: String!
): [ResultCustomerSubscriptionContractLinePlan]!
Arguments
customerSubscriptionContractLinePlan.subscriptionContractId
● String!
non-null scalar
契約情報のShopify管理ID ※必須
- 説明: 処理対象契約の globally-unique ID.
- 例:
"gid://shopify/SubscriptionContract/123456789"
customerSubscriptionContractLinePlan.customerId
● String!
non-null scalar
顧客ID ※必須
- 説明: 処理対象顧客の globally-unique ID.
- 例:
"gid://shopify/Customer/123456789"
Type
ResultCustomerSubscriptionContractLinePlan
object
顧客向け定期購買商品のプラン一覧情報
Example
{
customerSubscriptionContractLinePlan(
subscriptionContractId: "gid://shopify/SubscriptionContract/123456789"
customerId: "gid://shopify/Customer/123456789"
) {
lineId
planId
}
}