hsimah-services/wp-graphql-facetwp
Composer 安装命令:
composer require hsimah-services/wp-graphql-facetwp
包简介
WPGraphQL integration for FacetWP
README 文档
README
WPGraphQL for FacetWP
Adds WPGraphQL support for FacetWP.
Overview
This plugin exposes configured facets through the graph schema. Once registered for a type, a query is available. The payload includes both facet choices and information and a connection to the post type data. This allows for standard GraphQL pagination of the returned data set.
This plugin has been tested and is functional with SearchWP.
System Requirements
- PHP 7.4-8.1.x
- WordPress 5.4.1+
- WPGraphQL 1.6.0+ (1.9.0+ recommended)
- FacetWP 4.0+
Quick Install
- Install & activate WPGraphQL.
- Install & activate FacetWP.
- Download the
wp-graphql-facetwp.zipfile from the latest release upload it to your WordPress install, and activate the plugin.
Important
Make sure you are downloading the wp-graphql-facetwp.zip file from the releases page, not the Source code (zip) file nor a clone of the repository.
If you wish to use the source code, you will need to run composer install inside the plugin folder to install the required dependencies.
With Composer
composer require hsimah-services/wp-graphql-facetwp
Updating and Versioning
As we work towards a 1.0 Release, we will need to introduce numerous breaking changes. We will do our best to group multiple breaking changes together in a single release, to make it easier on developers to keep their projects up-to-date.
Until we hit v1.0, we're using a modified version of SemVer, where:
- v0.x: "Major" releases. These releases introduce new features, and may contain breaking changes to either the PHP API or the GraphQL schema
- v0.x.y: "Minor" releases. These releases introduce new features and enhancements and address bugs. They do not contain breaking changes.
- v0.x.y.z: "Patch" releases. These releases are reserved for addressing issue with the previous release only.
Development and Support
WPGraphQL for FacetWP was initially created by Hamish Blake. Maintenance and development are now provided by AxePress Development. On 15 February 2025, the repository was transferred from https://github.com/hsimah-services to https://github.com/AxeWP/wp-graphql-facetwp.
Community contributions are welcome and encouraged.
Basic support is provided for free, both in this repo and at the #facetwp channel in WPGraphQL Discord.
Priority support and custom development is available to AxePress Development sponsors.
Usage:
Registering a facet to WPGraphQL
It is assumed that facets have been configured.
To register a FacetWP query in the WPGraphQL schema for a WordPress post type (eg post) simply call the following function:
// Register facet for Posts add_action( 'graphql_facetwp_init', function () { register_graphql_facet_type( 'post' ); } );
This will create a WPGraphQL postFacet field on the RootQuery. The payload includes a collection of queried facets and a posts connection. The connection is a standard WPGraphQL connection supporting pagination and server side ordering. The connection payload only includes filtered posts.
Example query
Note This is not a complete list of GraphQL fields and types added to the schema. Please refer to the WPGraphiQL IDE for more queries and their documentation.
query GetPostsByFacet( $query: FacetQueryArgs, $after: String, $search: String, $orderBy: [PostObjectsConnectionOrderbyInput] ) { postFacet( where: { status: PUBLISH, query: $query # The query arguments are determined by the Facet type. } ) { facets { # The facet configuration selected name label choices { value label count } } posts ( # The results of the facet query. Can be filtered by WPGraphQL connection where args first: 10, after: $after, where: { search: $search, orderby: $orderBy} # The `orderby` arg is ignored if using the Sort facet. ) { pageInfo { hasNextPage endCursor } nodes { title excerpt } } } }
WooCommerce Support
Support for WooCommerce Products can be added with following configuration:
// This is the same as all CPTs. add_action( 'graphql_facetwp_init', function () { register_graphql_facet_type( 'product' ); }); // This is required because WooGQL uses a custom connection resolver. add_filter( 'facetwp_graphql_facet_connection_config', function ( array $default_graphql_config, array $facet_config ) { $type = $config['type']; $use_graphql_pagination = \WPGraphQL\FacetWP\Registry\FacetRegistry::use_graphql_pagination(); return array_merge( $default_graphql_config, [ 'connectionArgs' => \WPGraphQL\WooCommerce\Connection\Products::get_connection_args(), 'resolveNode' => function ( $node, $_args, $context ) use ( $type ) { return $context->get_loader( $type )->load_deferred( $node->ID ); }, 'resolve' => function ( $source, $args, $context, $info ) use ( $type, $use_graphql_pagination ) { // If we're using FWP's offset pagination, we need to override the connection args. if ( ! $use_graphql_pagination ) { $args['first'] = $source['pager']['per_page']; } $resolver = new \WPGraphQL\Data\Connection\PostObjectConnectionResolver( $source, $args, $context, $info, $type ); // Override the connection results with the FWP results. if( ! empty( $source['results'] ) ) { $resolver->->set_query_arg( 'post__in', $source['results'] ); } // Use post__in when delegating sorting to FWP. if ( ! empty( $source['is_sort'] ) ) { $resolver->set_query_arg( 'orderby', 'post__in' ); } elseif( 'product' === $type ) { // If we're relying on WPGQL to sort, we need to to handle WooCommerce meta. $resolver = Products::set_ordering_query_args( $resolver, $args ); } return $resolver ->get_connection(); }, ] ); }, 100, 2 );
Limitations
Currently the plugin only has been tested using Checkbox, Radio, and Sort facet types. Support for additional types is in development.
Testing
- Update your
.envfile to your testing environment specifications. - Run
composer install-test-envto create the test environment. - Run your test suite with Codeception.
E.g.
vendor/bin/codecept run wpunitwill run all WPUnit tests.
hsimah-services/wp-graphql-facetwp 适用场景与选型建议
hsimah-services/wp-graphql-facetwp 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 100 次下载、GitHub Stars 达 35, 最近一次更新时间为 2020 年 06 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 hsimah-services/wp-graphql-facetwp 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 hsimah-services/wp-graphql-facetwp 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 100
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 35
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2020-06-02
