OBJECT

MarketOrder

link GraphQL Schema definition

  • type MarketOrder {
  • id: ID!
  • # Character who issued the order
  • character: Character!
  • # Number of days for which order is valid (starting from the issued date). An
  • # order expires at time issued + duration
  • duration: Int!
  • # For buy orders, the amount of ISK in escrow
  • escrow: Float
  • # Item transacted in this order
  • item: InventoryItem!
  • # True if this is buy order
  • isBuy: Boolean!
  • # Signifies whether the buy/sell order was placed on behalf of a corporation
  • isCorporation: Boolean!
  • # Location where order was placed
  • location: Location!
  • # For buy orders, the minimum quantity that will be accepted in a matching sell
  • # order
  • minVolume: Int
  • # Date and time when this order was issued
  • issued: DateTime!
  • # Cost per unit for this order
  • price: Float!
  • # Valid order range, numbers are ranges in jumps
  • range: String!
  • # Quantity of items still required or offered
  • volumeRemain: Int!
  • # Quantity of items required or offered at time order was placed
  • volumeTotal: Int!
  • # Current order state
  • state: OrderState!
  • }

link Require by