No content to show
User Activity
02-29-2024
@BrainStation23 also I am using these datasets:https://shopify.dev/docs/api/shopifyql/datasets/orders-datasethttps://shopify.dev/docs/api/shopifyql/datasets/products-datasetDoes this mean I need a plus store?
02-29-2024
hi @BrainStation23!Thank you so much for responding! Just to clarify, I am building an app that pulls metrics that come from orders. So for example, getting the net sales of a product. When creating test transactions (using these steps: https://help....
Hi, is there a way to have test transactions populate into Shopify analytics? I am currently building an app using the GraphQL API to pull in Shopify Analytics and need test data to validate. When creating test transactions, they did not populate to ...
I am trying to pass in a product ID in order to get the net_sales using ShopifyQL.Currently I have: query getNetSales($id: ID!) {
shopifyqlQuery(query: "FROM products SHOW sum(net_sales) WHERE product_id = id") {
__typename
... on TableRe...
01-16-2024
Hello,I am trying to pull these metrics from an app: net_sales, net_product_quantity, & gross_sales from the Product Dataset. On the Product Dataset page, it says you need to have a Plus Merchant account to use it. However, on the Admin GraphQl shopi...
Hello, when I add ID to a group filter, it fails to return the correct products, for example: query: "((title:navy*) OR (product_type:navy*) OR (id:navy))" query getProducts {
products(first: 10 query: "((title:navy*) OR (product_type:navy*) OR (id...