Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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"
}
}
}
```