skip to Main Content

Django rest API deploy on apache

I have created a django application and deployed it on the server.I have run the application through :- python manage.py runserver 8000 & and handle the requests on the apache server through proxy ProxyPass "/" "http://www.example.com/" ProxyPassReverse "/" "http://www.example.com/". But…

VIEW QUESTION

Shopify graphQL query

I can't see how to format this graphene query for shopify. I need to replicate this curl query with graphene in Django: curl -X POST "https://<shop>.myshopify.com/api/graphql" -H "Content-Type: application/graphql" -H "X-Shopify-Storefront-Access-Token: <storefront-access-token>" -d ' { shop { collections(first: 5) {…

VIEW QUESTION
Back To Top
Search