This endpoint allows a user to create a new order.
An order must have a valid shopping cart id and can be created only from a shopping cart. This behavior might change at some point.
mutation newOrder {
createOrder(input: {cart_id: "uuid-goes-here"}){
}
}