Skip to content

mooore-digital/magento2-module-mollie-graph-ql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mollie GraphQl

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.