customerSubscriptionLinesCustomAttributes
顧客向け定期購買商品に紐づくCustomAttributes取得
customerSubscriptionLinesCustomAttributes(
subscriptionContractId: String!
customerId: String!
): [ResultCustomerSubscriptionLinesCustomAttributes]
Arguments
customerSubscriptionLinesCustomAttributes.subscriptionContractId
● String!
non-null scalar
契約ID ※必須
- 説明: 処理対象契約の globally-unique ID.
- 例:
"gid://shopify/SubscriptionContract/1234567890"
customerSubscriptionLinesCustomAttributes.customerId
● String!
non-null scalar
顧客ID ※必須
- 説明: 処理対象顧客の globally-unique ID.
- 例:
"gid://shopify/Customer/1234567890"
Type
ResultCustomerSubscriptionLinesCustomAttributes
object
顧客向け定期購買商品に紐づくCustomAttributes
Example
{
customerSubscriptionLinesCustomAttributes(
subscriptionContractId: "gid://shopify/SubscriptionContract/1234567890"
customerId: "gid://shopify/Customer/1234567890"
) {
lineId
customAttributes {
key
value
}
}
}