yireo/magento2-webp2-graph-ql

Add GraphQL support to Yireo Webp2 for Magento 2

Maintainers

Package info

github.com/yireo/Yireo_Webp2GraphQl

Type:magento2-module

pkg:composer/yireo/magento2-webp2-graph-ql

Fund package maintenance!

yireo

www.paypal.me/yireo

Statistics

Installs: 3 485

Dependents: 0

Suggesters: 1

Stars: 0

1.0.5 2025-10-20 11:23 UTC

This package is auto-updated.

Last update: 2026-02-16 16:44:02 UTC


README

Magento 2 module for extending Yireo Webp2 with GraphQL support

Installation

composer require yireo/magento2-webp2-graph-ql
bin/magento module:enable Yireo_Webp2GraphQl

Usage in GraphQL

For every regular image URL, append a _webp variant to your query:

query {
  products(search:"a", pageSize: 1){
    items {
      sku
      name
      media_gallery {
        url
        url_webp
      }
    }
  }
}