Add GraphQl support to Mollie Magento 2 module.
composer require santosh-gaggle/mollie-graphql
bin/magento setup:upgrade
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.