ahebwa49
04/11/2019, 3:01 PMconst USER_ORDERS_QUERY = gql`
query USER_ORDERS_QUERY {
orders(orderBy: createdAt_DESC) {
id
total
createdAt
items {
id
title
description
price
quantity
image
}
}
}
`;