yireo/magento2-webp2-graph-ql

为Yireo Webp2 for Magento 2添加GraphQL支持

安装: 28

依赖: 0

建议者: 1

安全: 0

星标: 0

关注者: 1

分支: 0

类型:magento2-module

1.0.4 2024-06-20 07:39 UTC

This package is auto-updated.

Last update: 2024-09-20 08:22:25 UTC


README

Yireo Webp2添加GraphQL支持的Magento 2模块

安装

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

在GraphQL中的使用

对于每个常规图像URL,在查询中附加一个_webp变体

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