확장 기능
WooCommerce
WooCommerce 플러그인과의 연동을 통해 WooCommerce 스토어의 상품 데이터를 가져올 수 있습니다.

WooCommerce 플러그인과의 연동 기능입니다.
GraphQL 스키마에 WooCommerce 데이터를 가져오는 필드가 추가됩니다.
{
woocommerceProducts {
__typename
id
name
slug
url
urlPath
sku
...on WooCommercePriceableProductOrProductVariation {
price
priceFormatted
regularPrice
regularPriceFormatted
salePrice
salePriceFormatted
onSale
}
status
type
featured
totalSales
averageRating
ratingCount
image {
id
src
altText
title
caption
}
categories {
id
name
slug
}
tags {
id
name
slug
}
brands {
id
name
slug
}
}
}