Skip to content

Latest commit

 

History

History
33 lines (30 loc) · 536 Bytes

README.md

File metadata and controls

33 lines (30 loc) · 536 Bytes

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:

query {
  CustomGraphql (
    username: "Hirva",
    password: "my-password",
    fieldtype: "none"
  ) {
    username
    password
    fieldtype
  }
}

JSON output:

{
  "data": {
    "CustomGraphql": {
      "username": "Hirva",
      "password": "my-password",
      "fieldtype": "none"
    }
  }
}