Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
644 views
in Technique[技术] by (71.8m points)

Can we filter shopify products by weight using storefront GQL API?

We are selling jewellery online and we need to implement product-filtering based on product weight using GQL.

I believe we need to do this in query param in products query. Something like query: {'minWeight':'10', unitOfWeight: 'GMS'}, this should list all products whose weight is greater than 10gms.

Any help would be appreciated.

Thanks.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The default query params for the StoreFront GraphQL API for the products are as follow:

available_for_sale
created_at
product_type
tag
title
updated_at
variants.price
vendor

There is no weight there, so no there is no way to achieve this with the StoreFront API.

The best approach will be to create a smart collection with the proper conditions to meet what you are looking for (since the collection allows for weight conditions) and make an ajax request to it to get the products.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...