Hi there,
I have troubles accessing marketingEvent field of Order’s data using Bulk GraphQl query. But regular non-bulk query works perfectly at the same time.
{
orders(first: 100) {
edges {
node {
customerJourneySummary {
lastVisit {
marketingEvent {
channel
}
}
}
}
}
}
}
The result looks following
{"id":"...","customerJourney":{"firstVisit":{"marketingEvent":null},"lastVisit":{"marketingEvent":null}}}
Please, provide any details, solutions for the issue. Is it a known issue?