For the complete documentation index, see llms.txt. This page is also available as Markdown.

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