Skip to content

Commit

Permalink
Fix issue with Shopify editorial product search (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxschmeling authored Feb 20, 2025
1 parent 82a2519 commit e350711
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/Integrations/Shopify/Queries/SearchProducts.graphql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
query SearchProducts($search_terms: String) {
products(first: 10, query: $search_terms, sortKey: BEST_SELLING) {
query SearchProducts($search: String) {
products(first: 10, query: $search, sortKey: BEST_SELLING) {
edges {
node {
id
Expand Down

0 comments on commit e350711

Please sign in to comment.