here is the order type in the datamodel ```type Or...
# orm-help
a
here is the order type in the datamodel
Copy code
type Order {
  id: ID! @unique
  items: [OrderItem!]!
  total: Int!
  user: User!
  charge: String!
  createdAt: DateTime!
  updatedAt: DateTime!
}