skip to Main Content

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

Django + Apache: cannot serve static files

I think this is common problem, but non of the solutions I tried work. The code from apache conf: <VirtualHost *:80> ServerName xxxx ServerAdmin xxxx DocumentRoot /home/matousc/apps/iacah ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined Alias /static /home/matousc/apps/iacah/www/static <Directory /home/matousc/apps/iacah/www/static> Require all granted…

VIEW QUESTION
Back To Top
Search