Hi,
I need to calculate order values based on dates for time-based analytics in my mini.
1. The Shop app account I use does not have orders in it. Is it possible to provide one or two test accounts with orders that we can use for development?
2. If the above is not possible then can you give some dataset for mock orders.
3. The current order data does not have any value and date in it.
interface Order {
id: string
name: string
lineItems: {
productTitle: string
variantTitle: string | null
quantity: number
product: Product | null
}
shop: Shop | null
}
Is it possible to calculate orders value over a specific time period or total orders value?
4. In Shopify Apps we get orders data for the last 60 days but have to request access for full order history. Is there any such feature available for minis?
5. If all the above is not possible then let me know the time period for which useOrders hooks returns data.
Thanks