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 ?", "%#search%"])
The same I got all products
ShopifyAPI::Product.search(parameters)
I found this function in this example but it is not a function anymore => ecommerce.shopify.com/c/shopify-apis-and-technology/t/ruby-shopifyapi-find-customer-by-email-215330
ShopifyAPI::Product.where({ "title LIKE ?" =>"%#{search}%" })
With this one I got all products, again
This is the shopify_api gem => help.shopify.com/api/reference/product.
This is the shopify_api => help.shopify.com/api/reference/product