Magento Error The consumer isn’t authorized to access %resources in Rest API using postman.

While you work with REST API in Magento and you got the error like, The consumer isn’t authorized to access %resources.

Error Response will look like this,

"message": "The consumer isn't authorized to access %resources.",
    "parameters": {
        "resources": "self"
    },

Continue reading “Magento Error The consumer isn’t authorized to access %resources in Rest API using postman.”

How to Get Customer Orders List By GraphQL Query Magento 2?

Retrieve Customer Orders list using GraphQL Query in Magento display all the previous orders placed by the customer.

Using Customer Orders Query, get all the order related information with GraphQL.

schema.graphql file for the orders will be defined at, vendor/magento/module-sales-graph-ql/etc/schema.graphqls Continue reading “How to Get Customer Orders List By GraphQL Query Magento 2?”

How to Get Customer GraphQL Query Magento 2?

Customer GraphQL Query in Magento to retrieve basic information of the customer entity.

Using Customer Query, You can fetch the data of the logged-in customer by adding the customer access token as Headers.

schema.graphql file for the Customer module will be defined at, vendor/magento/module-customer-graph-ql/etc/schema.graphqls Continue reading “How to Get Customer GraphQL Query Magento 2?”