Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mooore-digital/magento2-module-mollie-graph-ql
- Owner: mooore-digital
- Created: 2020-02-26T12:42:52.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-09-20T07:51:49.000Z (over 2 years ago)
- Last Synced: 2024-11-29T08:15:01.221Z (about 1 month ago)
- Topics: graphql, magento2, magento2-graphql, magento2-module, mollie
- Language: PHP
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.