Fetch Shopify store data including orders, customers, and inventory metrics
Field | Type | Required | Description |
---|---|---|---|
Date Range | Date range picker | Yes | Select date range for the report |
Metrics | Multi-select | Yes | Select metrics to include in the report |
Dimensions | Multi-select | No | Select dimensions to segment your data |
Filters | Rule-based filters | No | Add filters to refine your data |
Order By | Sort configuration | No | Set the order of results |
Limit | Number | No | Maximum number of rows to return |
Options | Report options | No | Additional options for the report |
Operator | Description | Example Use Case |
---|---|---|
EQUALS | Exact match | Product type equals “Electronics” |
NOT_EQUALS | Does not match exactly | Order status not equals “cancelled” |
CONTAINS | Contains substring | Product title contains “iPhone” |
NOT_CONTAINS | Does not contain substring | Product title doesn’t contain “test” |
IN_LIST | Matches any value in list | Order status in [“fulfilled”, “paid”] |
NOT_IN_LIST | Doesn’t match any value in list | Payment status not in [“pending”] |
REGEXP_MATCH | Matches regular expression | Product title matches ”.(phone|tablet).” |
NOT_REGEXP_MATCH | Doesn’t match regex | Product title doesn’t match “test.*“ |
GREATER_THAN | Numeric greater than | Order value > 100 |
LESS_THAN | Numeric less than | Quantity < 10 |
IS_NULL | Field has no value | Discount code is null |
IS_NOT_NULL | Field has a value | Discount code is not null |
Order status IN ["fulfilled", "shipped", "delivered"]
Product type REGEXP_MATCH ".*(electronics|accessories|gadgets).*"
Option | Description |
---|---|
Pretty Column Names | Converts column headers to Title Case (e.g. orderValue becomes Order Value ) |
Add Percent Sign to Ratios | Appends % to ratio metrics like Conversion Rate |
Display Currency Symbol | Adds $ or local currency symbol to monetary metrics |
Compact Numbers | Converts large numbers to short format (e.g. 10K instead of 10,000 ) |
Pivot Dimensions as Columns | Transforms dimension values into separate columns for easier comparison |
How do I combine filters with OR logic?
What's the difference between CONTAINS and REGEXP_MATCH?
Product title CONTAINS "iPhone"
finds any product with “iPhone” anywhere in the titleProduct title REGEXP_MATCH "^iPhone.*"
finds products that START with “iPhone”Why are my filters not working?
Why don't I see an Accounts field like other advertising platforms?
How do I connect multiple Shopify stores?
Why am I getting 'No data found' errors?
Why is my data different from Shopify admin?
My API token isn't working - what should I check?
read_orders
, read_customers
, read_inventory
)How do I find my Shopify Store ID?
/store/
in the URLhttps://admin.shopify.com/store/my-store
, your Store ID is my-store
What should I do if my connection stops working?