ResultCustomerChangeableProducts
契約変更可能商品一覧取得のレスポンス
type ResultCustomerChangeableProducts {
products: [CustomerChangeableProduct!]!
page: Int!
perPage: Int!
hasNextPage: Boolean!
hasPreviousPage: Boolean!
}
Fields
ResultCustomerChangeableProducts.products
● [CustomerChangeableProduct!]!
non-null object
契約変更可能商品一覧
ResultCustomerChangeableProducts.page
● Int!
non-null scalar
ページ番号
ResultCustomerChangeableProducts.perPage
● Int!
non-null scalar
1ページあたりの最大件数
ResultCustomerChangeableProducts.hasNextPage
● Boolean!
non-null scalar
次のページが存在するか
ResultCustomerChangeableProducts.hasPreviousPage
● Boolean!
non-null scalar
前のページが存在するか
Example
{
"products": [
{
"productId": "gid://shopify/Product/1234567890",
"title": "タイトル",
"onlineStorePreviewUrl": "https://example.com/product",
"images": [
"https://example.com/image.jpg"
],
"variants": [
{
"variantId": "gid://shopify/ProductVariant/1234567890",
"requiresShipping": true
}
]
}
],
"page": 0,
"perPage": 10,
"hasNextPage": true,
"hasPreviousPage": false
}