jacobarriola/woographql-product-bundles
Composer 安装命令:
composer require jacobarriola/woographql-product-bundles
包简介
Add WooCommerce Product Bundles support to the WPGraphQL schema.
README 文档
README
Add WooCommerce Product Bundle support to your WPGraphQL schema.
Requirements
- PHP +7.1
- WordPress +5.0
- WPGraphQL +1
- WooGraphQL +0.8.0
- WooCommerce +4.7.0
- WooCommerce Product Bundles +0.5.0
Documentation
Add To Cart Mutation
For now, add to cart is a different mutation since additional data is required. The mutation
mimics the existing WooGraphQL addToCart, with a few differences.
Essentially it attempts to mimic the underlying Product Bundles' API, which is found https://docs.woocommerce.com/document/bundles/bundles-functions-reference/#add_bundle_to_cart
mutation addToCartBundle(input: { clientMutationId: "123" quantity: 1 productId: 456789 extraData : SEE_BELOW } ) { ... }
The extraData input is a JSON value.
Arguments
object index: The bundle item IDproduct_id: Product ID of the bundled itemquantity: Quantity of the bundled itemvariation_id: The variation ID of the selected variation, if applicableattributes: An object with the key asattribute_ATTRIBUTE_SLUGand the value as the attribute value, if applicable
Example:
{
"765": {
"product_id": "9876",
"quantity": "1",
"optional_selected": "yes",
"variation_id": "4321",
"attributes": {
"attribute_pa_color": "red",
"attribute_pa_size": "2xl"
}
},
"896": {
"product_id": "1234",
"quantity": "1"
}
}
In this example, the Bundle contains two Bundle Items, 765 and 896. 765 is a variable
product (designated by the product_id: 9876). The variation_id and attributes are required
. On the other hand, 896 is a simple product. It's only passing in the product_id.
Todo
- return appropriate types instead of JSON for
allowedVariationsanddefaultVariationAttributes - simplify the
addToCartBundleor merge it with the coreaddToCartmutation
统计信息
- 总下载量: 595
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 10
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2020-11-07