New Shopify Certification now available: Liquid Storefronts for Theme Developers

Flow that counts how many days ago an order was made?

Solved
sizweWB
Excursionist
14 2 2

Hi, is there flow that counts how many days ago an order was made? We want staff to get notified when an order has not been fulfilled in 5 days.

 

If there isn't a flow for this please give instructions on how to do it

 

Thanks in advance

Accepted Solution (1)
paul_n
Shopify Staff
Shopify Staff
606 97 155

This is an accepted solution.

For this use case, a better approach would be order created -> wait 5 days -> check displayFulfillmentStatus == "FULFILLED" or whatever value works for you. Then do the action you want to do. 

 

See https://shopify.dev/api/admin-graphql/2022-10/enums/OrderDisplayFulfillmentStatus

Paul_N | Flow Product Manager @ Shopify
- Finding Flow useful? Leave us a review
- Need Flow help? Check out our help docs.
- Building for Flow? Check out Flow's dev docs.

View solution in original post

Replies 2 (2)
paul_n
Shopify Staff
Shopify Staff
606 97 155

This is an accepted solution.

For this use case, a better approach would be order created -> wait 5 days -> check displayFulfillmentStatus == "FULFILLED" or whatever value works for you. Then do the action you want to do. 

 

See https://shopify.dev/api/admin-graphql/2022-10/enums/OrderDisplayFulfillmentStatus

Paul_N | Flow Product Manager @ Shopify
- Finding Flow useful? Leave us a review
- Need Flow help? Check out our help docs.
- Building for Flow? Check out Flow's dev docs.
sizweWB
Excursionist
14 2 2

Worked perfectly, thanks!