Description
reported by @BoD
with the latest version of the supergraph demo with defer, I’ve added an artificial 4s delay in the Inventory subgraph responses. Then making a query like this:
query Product {
product(id: "apollo-federation") {
# Comes from Products subgraph (fast)
dimensions {
size
}
# Comes from Inventory subgraph (slow)
... on Product @defer {
delivery {
estimatedDelivery
fastestDelivery
}
}
}
}
I was expecting to receive the initial payload immediately and the 2nd one after 4s, but I’m receiving everything at once after 4s.