I have an issue with the Python API package.
The customer.orders() function will not find all the orders associated with the given customer.
For example I have a customer with an order count of 1.
shopify.Customer.find(407915331645)
=> customer(407915331645)
shopify.Customer.find(407915331645).orders_count
=> 1
shopify.Customer.find(407915331645).orders()
=>
shopify.Order.find(380765536317)
=> order(380765536317)
shopify.Order.find(380765536317).customer
=> customer(407915331645)
shopify.Order.find(380765536317).customer.orders()
=>
The customer.orders() function returns an empty list when I know for certain there is an order tied to that account. The last line clearly illustrates the issue.
Not sure if this the Python packages fault or the API fault. Any help would be appreciated.