-
Notifications
You must be signed in to change notification settings - Fork 312
Labels
component/deferenhancementAn enhancement to an existing featureAn enhancement to an existing feature
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.
martinbonninBoD
Metadata
Metadata
Assignees
Labels
component/deferenhancementAn enhancement to an existing featureAn enhancement to an existing feature