manifest / integrations / woocommerce-to-wpgraphql
WooCommerce to WP GraphQL
A WordPress plugin to expose WooCommerce products via the WP GraphQL plugin
by Joseph Carrington · github.com/josephcarrington/woocommerce-to-wpgraphql
★ 4stars
2forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/josephcarrington/woocommerce-to-wpgraphql/archive/refs/heads/master.zipA WordPress plugin to expose WooCommerce products via the WP GraphQL plugin
query GET_PRODUCTS {
products(last: 20) {
edges {
node {
description,
content,
price,
thumbnail,
is_on_sale,
sale_price,
categories {
name
}
}
}
}
}