使用 Shopify Storefront API 检索与特定产品相关的产品系列

问题描述 投票:0回答:1

我正在开发一个 Shopify 项目,需要使用产品 ID 查找与特定产品相关的所有产品系列。例如,如果“红色T恤”是属于多个集合的产品,我想检索这些集合的列表。

是否可以使用 Shopify Storefront API 来实现此目的?如果是,我应该使用哪个查询或端点?此用例有任何具体参数或最佳实践吗?

任何帮助或示例代码将不胜感激。

shopify-app shopify-api shopify-storefront-api
1个回答
0
投票

这个链接,你可以轻松找到主题

Retrieve a list of all smart collections for a certain product_id

# Session is activated via Authentication
test_session = ShopifyAPI::Context.active_session

ShopifyAPI::SmartCollection.all(
  session: test_session,
  product_id: "632910392",
)
© www.soinside.com 2019 - 2024. All rights reserved.