Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hirvadhandhukia/scandi-graphql-resolver
A Magento 2 module for GraphQL query
https://github.com/hirvadhandhukia/scandi-graphql-resolver
graphql magento2-module scandipwa
Last synced: 18 days ago
JSON representation
A Magento 2 module for GraphQL query
- Host: GitHub
- URL: https://github.com/hirvadhandhukia/scandi-graphql-resolver
- Owner: hirvaDhandhukia
- Created: 2022-05-10T10:52:38.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-08-25T06:33:36.000Z (over 1 year ago)
- Last Synced: 2024-11-06T12:54:47.179Z (2 months ago)
- Topics: graphql, magento2-module, scandipwa
- Language: PHP
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ScandiPWA_GraphQL_Resolver
This magento module provides GraphQL endpoints for learning query.## Endpoint description
This endpoint allows to perform query operations and return json data.GraphQL entry:
```graphql
query {
CustomGraphql (
username: "Hirva",
password: "my-password",
fieldtype: "none"
) {
username
password
fieldtype
}
}
```JSON output:
```json
{
"data": {
"CustomGraphql": {
"username": "Hirva",
"password": "my-password",
"fieldtype": "none"
}
}
}
```