Contentstack GraphQL API | Include Embedded RTE Items
Request
xxxxxxxxxx
query IncludeEmbeddedRTEItems{
all_product {
total
items {
title
url
cart_items {
embedded_itemsConnection(skip: 1, limit: 3) {
edges {
node {
... on Electronics {
title
appliance_price_in_usd
appliance_details
}
... on SysAsset {
title
file_size
}
}
}
}
}
}
}
}