Home > Back-end >  Creating Shopify Order Over Graphql
Creating Shopify Order Over Graphql

Time:11-05

I have a Mobile app made with flutter and when a client wants to place an order it opens Webview checkout, my question is how to create an order with cash on delivery over Graphql to avoid opening Webview I searched in docs but I did not find a suitable mutation for doing that

solution to avoid opening webview checkout

CodePudding user response:

You can create a Draft Order and once you're happy with it, convert it to a real order. At that, the order really exists, and the merchant will have to collect the money as they can, when they can, and deal with the fulfillment etc. Pretty standard stuff.

  • Related