OrderList

type OrderList {
  # All orders price
  amount: Float!

  # Current item count
  current: Int!

  # Order list
  items: [Order!]!

  # Total item count without limit and offset
  total: Long!
}

Last updated