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