here is the `orders` field in the schema on the qu...
# orm-help
a
here is the
orders
field in the schema on the query root type
Copy code
type Query {
  users: [User]!
  items(
    where: ItemWhereInput
    orderBy: ItemOrderByInput
    skip: Int
    first: Int
  ): [Item!]!
  item(id: ID!): Item
  profile: User
  itemsConnection(where: ItemWhereInput): ItemConnection!
  cart(where: CartItemWhereUniqueInput!): CartItem!
  order(id: ID!): Order
  orders(orderBy: OrderOrderByInput): [Order]!
}