-
-
Notifications
You must be signed in to change notification settings - Fork 799
Open
Milestone
Description
Product
Hot Chocolate
Version
15.1.3
Link to minimal reproduction
https://github.com/dannyheard7/NestedDataLoaderNotDispatchedInMutation
Steps to reproduce
Run the application and send the following mutation:
mutation {
addProductCatalog(input: {
id: 1
})
}
What is expected?
The GetProductByIdAsync dataloader is dispatched from GetProductCatalogByIdAsync instantly
What is actually happening?
The GetProductByIdAsync never dispatches/takes a very long time to dispatch.
Additional context
The following query runs the same code, however in this case the nested data loader is dispatched instantly
query {
productCatalog(id: 1) {
id
}
}
Reactions are currently unavailable