No content to show

User Activity

And the answer to the original question (doing it with just the REST API): Which produces, via. the Python API: .myshopify.com/admin/api/2022-04/orders.json?status=%3Cbuilt-in+function+all%3E&created_at_min=2022-05-22&fulfillment_status=shipped Have ...
Here's a solution:   def get_orders(self, days_ago: int) -> dict: """ Get a list of shopify order resource objects. """ start_at = datetime.date.today() - datetime.timedelta(days=days_ago) since = start_at.s...
Update I am now working with the GraphQL library, but still struggling to filter by fulfillment status: graphql_query = ( """{ orders(first: 100, query: "fulfillment_status:FULFILLED updated_at:>""" + since_dat...
Hi. I'm wondering if I can Filter by multiple parameters with the REST APIFilter by fulfillment status with the REST APII'm using the Shopify python module and making requests like this:  f = shopify.Order.find(created_at_min="2022-06-09",fulfilled_s...
My Accepted Solutions
This widget could not be displayed.
This widget could not be displayed.
This widget could not be displayed.
This widget could not be displayed.
Likes given to