I'm exploring using GraphQL-Django instead of building a large number of REST API endpoints. To that end I've successfully installed and am running the 'cookbook' sample app, part of the Graphene Django package: https://github.com/graphql-python/graphene-django
To better understand how the GraphQL technology works, I'm trying to make calls to the Graphene server with Postman. However I'm getting a CSRF error and have tried several things to resolve it, such as this: Django returns 403 error on POST request with Fetch
But so far I've had no luck. Is there a definitive guide to using Postman with Graphene?
Robert