Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mooore-digital/magento2-module-mollie-graph-ql

Add GraphQl support to Mollie Magento 2 module
https://github.com/mooore-digital/magento2-module-mollie-graph-ql

graphql magento2 magento2-graphql magento2-module mollie

Last synced: about 1 month ago
JSON representation

Add GraphQl support to Mollie Magento 2 module

Awesome Lists containing this project

README

        

# Mollie GraphQl

Add GraphQl support to Mollie Magento 2 module.

## Installation
```shell script
composer require mooore/magento2-module-mollie-graph-ql
bin/magento setup:upgrade
```

## Usage
```graphql
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.