Hi team,
I’m noticing a very long response time (~144580ms) when running the following query to fetch just the first two orders since “2025-03-01”. Is this expected? It seems unexpectedly high, is it due to the volume of orders being filtered?
query {
orders(
order_date_from: "2025-03-01"
) {
request_id
complexity
data(first: 2) {
pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
edges {
node {
id
order_number
fulfillment_status
order_date
account_id
priority_flag
shipments {
created_date
}
line_items {
edges {
node {
id
quantity
product_name
}
}
total_count
}
}
cursor
}
}
}
}
Let me know if there’s anything I should look into or tweak on my end.
Thanks.