mooore/magento2-module-mollie-graph-ql

Add GraphQl support to Mollie orders

1.0.2 2022-09-20 07:51 UTC

This package is auto-updated.

Last update: 2024-03-20 10:57:07 UTC


README

Add GraphQl support to Mollie Magento 2 module.

Installation

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

Usage

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

The payment_url attribute is added to the CreateOrder mutation. Using the payment_url attribute, the customer can be redirected to iDeal after placing an order.

This modules does not support any payment methods other than Mollie.