bigcommerce / bigcommerce-api-python

Python client library for Bigcommerce API
https://pypi.python.org/pypi/bigcommerce
MIT License
91 stars 82 forks source link

Filter Keyword in API returns only exact match and not partial match #80

Open pdxtdi opened 5 years ago

pdxtdi commented 5 years ago

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')