Last updated 4 months ago
You can now order the Orders graphql query by asc or desc (default) using the sort_direction argument. This allows you to retrieve the oldest orders first if required.
Orders
asc
desc
sort_direction
query{ Orders( ..., sort_direction:"asc" ){ data{ id, created_at } total, per_page } }
Jules