ObjectList

type ObjectList {

  # Current item count
  current: Int!

  # Object list
  items: [Object!]!

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

Last updated