(Solved - see reply)
Hello I would like to the list of all products in delivery Profiles. the following GraphQL works. I would like to get the names of the delivery profiles also returned ,but unsure of how to do that.
Thanks
query {
deliveryProfiles (first: 5) {
edges {
node {
profileItems (first: 10) {
edges {
node {
product {
id
handle
}
variants (first: 10) {
edges {
node {
id
title
sku
}
}
}
}
}
}
}
}
}
}