mageworx / module-seobase-graph-ql
mageworx/module-seobase-graph-ql
N/A
MageWorx_SeoBaseGraphQl
GraphQL API module for Mageworx Magento 2 SEO Suite Ultimate extension.
Installation
1) Copy-to-paste method
- Download this module and upload it to the
app/code/MageWorx/SeoBaseGraphQldirectory (create "SeoBaseGraphQl" first if missing)
2) Installation using composer (from packagist)
- Execute the following command:
composer require mageworx/module-seobase-graph-ql
How to use
SeoBaseGraphQL module extends existing Output attributes for Product, Category, CmsPage queries and includes:
- mw_canonical_url
-
- url
-
- code
- meta_robots
- mw_hreflangs
-
- items
-
-
- url
-
-
-
- code
-
Note! In the context of canonical URLs, the code means store code. In the context of hreflang URLs, the code means hreflang code - for example x-default, en, en_US, etc.
Other attribute is defined according to the guide: https://devdocs.magento.com/guides/v2.4/graphql/queries/products.html#productfilterinput-attributes.
Product, Category, CMS Page queries have the syntax similar to the Magento user guide.
For example, product query has the following syntax:
products(
search: String
filter: ProductAttributeFilterInput
pageSize: Int
currentPage: Int
sort: ProductAttributeSortInput
): Products
Request:
{
products(filter: {sku: {eq: "24-WG02"}}) {
total_count
items {
mw_canonical_url {
url
code
}
meta_robots
mw_hreflangs {
items {
url
code
}
}
name
sku
}
}
}
Response:
{
"data": {
"products": {
"items": [
{
"mw_canonical_url": {
"url": "didi-sport-watch.html",
"code": "store_code"
}
"meta_robots": null,
"mw_hreflangs": {
"items": [
{
"url": "didi-sport-watch.html",
"code": "en"
},
{
"url": "didi-sport-uhr.html",
"code": "de"
}
]
},
"name": "Didi Sport Watch",
"sku": "24-WG02"
}
]
}
}
}
No changelog yet
The vendor hasn't published a changelog. Tagged releases appear in the Versions tab.
| Version | Stability | QA Status | Compatibility | Released |
|---|---|---|---|---|
| 1.1.2 | stable | Fail | Not compatible Details | 2026-02-12 15:42:51 |
| 1.1.1 | stable | Not tested | Not yet tested Details | 2021-09-22 16:09:18 |
| 1.1.0 | stable | Not tested | Not yet tested Details | 2021-09-21 14:12:31 |
| 1.0.0 | stable | Not tested | Not yet tested Details | 2020-10-19 11:06:52 |
Requires 4
| Package | Constraint |
|---|---|
| magento/framework | >=102.0.0 < 104 |
| magento/module-catalog-graph-ql | >= 100.3.1 < 101 |
| magento/module-cms-graph-ql | >= 100.3.1 < 101 |
| mageworx/module-seobase | >= 2.11.2 |
Compatibility
Each Magento release line is installed on its supported PHP versions, then the module is built (DI compilation + static-content deploy) and its unit and integration suites are run. The matrix shows the lines and PHP versions the module is confirmed to install and run on. Code-quality results further down (phpstan, phpcs, …) are reported separately and never affect compatibility.
Code Quality
Advisory checks against the module's source. Static analysis runs once across the whole module; PHPStan re-runs per Magento + PHP version because resolvable symbols differ between releases. These NEVER affect the Compatibility badge — a phpcs finding can't make a module incompatible.
Static analysis
Coding standards (phpcs), mess detection (phpmd), copy-pasted code (cpd), PHP cross-version compatibility, composer.json validity. Each runs once for the whole module.
PHPStan
Type-checks the module's PHP against a real Magento install at the configured gate level. Re-runs per Magento and PHP version because resolvable symbols differ between releases. Cell → details modal.
Tests
Unit and integration suites, run for each applicable Magento and PHP version. A test failure speaks to the module's behaviour, not its compatibility with a Magento line, so it is reported here separately and never reddens the compatibility matrix.
Unit tests
| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | N/A | N/A | ||
| 2.4.8 | N/A | N/A | ||
| 2.4.9 | N/A | N/A |
Integration tests
| Magento | PHP 8.2 | PHP 8.3 | PHP 8.4 | PHP 8.5 |
|---|---|---|---|---|
| 2.4.7 | N/A | N/A | ||
| 2.4.8 | N/A | N/A | ||
| 2.4.9 | N/A | N/A |
Security
Security checks run directly against the module: an audit of its declared dependencies for known vulnerabilities (composer audit) and a scan of its source for malware and web-shell signatures. Each runs once. A malware detection fails the version outright.
More from mageworx
View vendorTurn an existing module into recurring revenue.
If you already maintain a Magento 2 module on GitHub or GitLab, listing it on Packagento takes about five minutes. We mirror your tags, handle distribution signing, and route paid licenses through Stripe Connect, so you can keep shipping the way you already do.