mooore/magento2-module-mollie-graph-ql

为Mollie订单添加GraphQl支持

1.0.2 2022-09-20 07:51 UTC

This package is auto-updated.

Last update: 2024-09-20 12:01:25 UTC


README

为Mollie Magento 2模块添加GraphQl支持。

安装

composer require mooore/magento2-module-mollie-graph-ql
bin/magento setup:upgrade

使用方法

mutation($cartId: String!) {
  placeOrder(input: { cart_id: $cartId }) {
    order {
      order_number
      payment_url
    }
  }
}

CreateOrder突变中添加了payment_url属性。使用payment_url属性,客户在下单后可以重定向到iDeal。

此模块不支持除Mollie之外的任何支付方式。