Shopify API how to do a search query with like
Hey guys I try to do some searching functions but it is not possible with shopifyAPI gem ShopifyAPI::Product.find(:all, conditions: ["title LIKE ?", "%#search%"], params: {limit: 20, page: 1}) With this function I got all products. ShopifyAPI::Product.find(:all, conditions: ["title LIKE ?",…