You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
products = api.Products.all(name='toy')
Should yield all products with the keyword 'toys' in the title as per "Filters can be applied to all methods as keyword arguments" https://pypi.org/project/bigcommerce/
Actual behavior
I only get results when the keyword filter is an exact match, rather than a partial match.
Steps to reproduce behavior
products = api.Products.all(name='toy')
The text was updated successfully, but these errors were encountered:
Expected behavior
products = api.Products.all(name='toy')
Should yield all products with the keyword 'toys' in the title as per "Filters can be applied to all methods as keyword arguments"
https://pypi.org/project/bigcommerce/
Actual behavior
I only get results when the keyword filter is an exact match, rather than a partial match.
Steps to reproduce behavior
products = api.Products.all(name='toy')
The text was updated successfully, but these errors were encountered: