I'm using Python. When I type this:
orders = shopify.Order.find()
for i in orders:
print i.line_items
I get this:
[line_item(302938025)]
[line_item(302937373)]
[line_item(302712175)]
Any ideas why it isn't returning a dictionary?
I'm using Python. When I type this:
orders = shopify.Order.find()
for i in orders:
print i.line_items
I get this:
[line_item(302938025)]
[line_item(302937373)]
[line_item(302712175)]
Any ideas why it isn't returning a dictionary?