A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
In the documentation here https://shopify.dev/apps/shopifyql no where it says where to actually use this Shopify query language to get the data, is there a REST/GraphQL api endpoint which we can use that supports this query language?
Suppose i have to run this query, how would the REST/GraphQL api call structure look like?
SHOW orders, gross_sales, discounts, refunds, net_sales, shipping, taxes, total_sales
OVER month(happened_at) AS month
FROM sales
SINCE -11m
UNTIL today ORDER
BY month ASC