OrderingMutation.createOrderFromDraft()

Creates an order from a draft order. Can be called multiple times for the same draft order to create multiple orders.

type OrderingMutation {
  createOrderFromDraft(id: ID!): OrderingCreateOrderResponse!
}

Input

id

string - The ID of the draft order to retrieve.

Response

OrderingCreateOrderResponse

type OrderingCreateOrderResponse {
  orderId: String!
  orderInSibiStoreUrl: String!
}

orderId

string - Internal SIBI order identifier.


orderInSibiStoreUrl

string - URL to the order in the SIBI web app.