Hi! I’m trying to get number of new customers for the day. The problem is some of them (1-2%) are missing somehow. It is 100% not connected to timezones, because the orders are missing from different intervals. But I’ve noticed all the orders that are visible via interface and not via API are marked as “might be a fraud”. Nevertheless, there are orders marked like this, but they are still in API response. This is the request I use:
{
orders(first: 250, query: "created_at:>=2024-03-24T00:00:00-07:00 created_at:<2024-03-25T00:00:00-07:00", after: #endCursor) {
pageInfo {
endCursor
hasNextPage
}
edges {
node {
id
customerJourneySummary {
customerOrderIndex
}
customer {
id
}
currentTotalPriceSet {
shopMoney {
amount
}
}
}
}
}
}
Please help me to understand the reason.