here is the query in my frontend app with apollo c...
# orm-help
a
here is the query in my frontend app with apollo client
Copy code
const USER_ORDERS_QUERY = gql`
  query USER_ORDERS_QUERY {
    orders(orderBy: createdAt_DESC) {
      id
      total
      createdAt
      items {
        id
        title
        description
        price
        quantity
        image
      }
    }
  }
`;