A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
I've been trying to create orders with the python api to import from another source. So I followed the order resource format and threw my data into a dictionary. whenever I try to create and then save with order.save() it returns false with no explanation. I did check and my api keys and I have access to other data like products and what not
order = shopify.Order.create(exampleOrder)
print(order.attributes)
print("-------------------------------------------")
print(order.save())