A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
Hi, I'm using Shopify's Graphql api to fetch orders and i'm looking for orders with customerJourney sourceType = 'AD' or 'REMARKETING' here's the query that i'm using:
{
orders {
edges {
node {
customerJourneySummary {
firstVisit {
source
sourceType
}
lastVisit {
source
sourceType
}
}
}
}
}
}
Problem is that i'm getting sourceType = null for almost all cases 'FACEBOOK', 'INSTAGRAM', 'direct', etc. Is there something wrong with the way i'm querying it or is there any other way to do this?
Hi Saptarshi, we are facing same issue, did you found any solution