scandipwa / wishlist-graphql

scandipwa/wishlist-graphql

N/A

magento2-module Compatibility: 2.4.7 Code Quality: Fail Tests: N/A Security: Pass OSL-3.0

Are you the maintainer of scandipwa?

Packagento pulls scandipwa's Composer packages from the public registry so buyers can find them here.

Claim the namespace to take ownership, publish new releases directly, and start charging for premium versions.

Claim this namespace →

ScandiPWA_WishlistGraphQl

WishlistGraphQl provides additional resolvers for wishlist, extending Magento_WishlistGraphQl.

SaveWishlistItem

This endpoint allows to save Wishlist item

mutation SaveWishlistItem($wishlistItem: WishlistItemInput!) {
    saveWishlistItem(wishlistItem: $wishlistItem) {
         id
         sku
         qty
         description
         added_at
         product
    }
}
{
   "wishlistItem": {
       "sku": "n31189077-1",
       "quantity": 2,
       "description": "Description",
       "product_option": {
           "extension_attributes": {}
       }
   }
}

RemoveProductFromWishlist

This endpoint allows removing item from wishlist

mutation RemoveProductFromWishlist($item_id: ID!) {
    removeProductFromWishlist(item_id: $item_id)
}
{
   "item_id": 1
}

MoveWishlistToCart

This endpoint allows to move all wishlist items to cart

mutation MoveWishlistToCart {
    moveWishlistToCart()
}

ClearWishlist

This endpoint allows to clear wishlist

mutation ClearWishlist {
    clearWishlist()
}

No changelog yet

The vendor hasn't published a changelog. Tagged releases appear in the Versions tab.

Versions
Version Stability QA Status Compatibility Released
2.0.17 stable Fail Magento 2.4.7 Details 2023-04-12 07:37:22
2.0.16 stable Not tested Not yet tested Details 2022-05-13 16:21:56
2.0.15 stable Not tested Not yet tested Details 2021-10-21 19:46:37
2.0.14 stable Not tested Not yet tested Details 2021-10-19 20:07:21
2.0.13 stable Not tested Not yet tested Details 2021-09-29 21:27:29
2.0.12 stable Not tested Not yet tested Details 2021-09-27 18:05:00
2.0.11 stable Not tested Not yet tested Details 2021-08-17 12:24:31
2.0.10 stable Not tested Not yet tested Details 2021-07-27 10:56:06
2.0.9 stable Not tested Not yet tested Details 2021-07-23 16:37:44
2.0.8 stable Not tested Not yet tested Details 2021-07-19 16:51:31
2.0.7 stable Not tested Not yet tested Details 2021-07-02 14:45:43
2.0.6 stable Not tested Not yet tested Details 2021-04-23 12:48:53
2.0.5 stable Not tested Not yet tested Details 2021-04-22 12:51:21
2.0.4 stable Not tested Not yet tested Details 2021-04-09 10:07:52
2.0.3 stable Not tested Not yet tested Details 2021-04-01 09:24:40
2.0.2 stable Not tested Not yet tested Details 2021-03-30 06:58:03
2.0.1 stable Not tested Not yet tested Details 2021-03-10 13:50:47
2.0.0 stable Not tested Not yet tested Details 2020-11-05 09:32:34
1.5.0 stable Not tested Not yet tested Details 2020-09-07 10:58:36
1.4.0 stable Not tested Not yet tested Details 2020-06-12 14:55:06
1.3.1 stable Not tested Not yet tested Details 2020-02-24 09:02:53
1.3.0 stable Not tested Not yet tested Details 2020-01-07 10:13:25
1.2.0 stable Not tested Not yet tested Details 2019-10-16 07:37:42
1.1.0 stable Not tested Not yet tested Details 2019-07-29 11:56:21
1.0.1 stable Not tested Not yet tested Details 2019-07-16 13:04:12
1.0.0 stable Not tested Not yet tested Details 2019-05-08 14:24:38

Requires 10

Package Constraint
magento/framework *
magento/module-configurable-product *
magento/module-customer *
magento/module-catalog *
magento/module-catalog-inventory *
magento/module-store *
magento/module-catalog-graph-ql *
magento/module-wishlist *
magento/module-wishlist-graph-ql ^100.3
scandipwa/performance ^1.0

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.

Compatibility matrix (Magento × PHP)
Magento PHP 8.2 PHP 8.3 PHP 8.4 PHP 8.5
2.4.7 Pass Pass
2.4.8 Pass Fail di error
2.4.9 Fail di error Fail di error

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.

Static analysis results
Tool Status Findings Summary
PHPCS Warning 22 22 warnings (ruleset: Magento2) — 11 auto-fixable with phpcbf
PHPMD Pass 0
Cpd Pass 0
Composer validate Info 8 valid; 8 advisory notes (composer validate --strict)

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.

PHPStan results by Magento and PHP version
Magento PHP 8.2 PHP 8.3 PHP 8.4 PHP 8.5
2.4.7 10 10
2.4.8 10 12
2.4.9 12 12

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

Unit tests results by Magento and PHP version
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

Integration tests results by Magento and PHP version
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.

Security results
Tool Status Findings Summary
Composer audit Pass 0
Malware scan Pass 0
License
OSL-3.0

More from scandipwa

View vendor
Make it pay

Turn 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.