Hi there,
Hope someone can help me here, we are building a custom storefront with Nextjs.
Question - With collectionByHandle query can I able to get the sort_order ? We use different sort option for different collections, How can I find out which collection have which sort has been selected as default?
Query I am using to collection products, here best_selling is hard coded, I would need to make it dynamic based on sort type selected on the Admin
query InStock($product_filters: [ProductFilter!]) {
collectionByHandle(handle: “diet-and-sports-nutrition”) {
handle
sort_value
products(first: 10,filters: $product_filters, sortKey:BEST_SELLING ) {
edges {
node {
handle
availableForSale
productType
vendor
totalInventory
}
}
}
}
}
