From 0996b7d2a9081922292a4d2cf788270833888237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20My=C5=9Bliwiec?= Date: Mon, 20 Jan 2025 08:46:27 +0100 Subject: [PATCH] chore(deps): update graphql-subscriptions package --- integration/graphql-code-first/src/recipes/recipes.resolver.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/graphql-code-first/src/recipes/recipes.resolver.ts b/integration/graphql-code-first/src/recipes/recipes.resolver.ts index 068090d50..a91459c5d 100644 --- a/integration/graphql-code-first/src/recipes/recipes.resolver.ts +++ b/integration/graphql-code-first/src/recipes/recipes.resolver.ts @@ -46,6 +46,6 @@ export class RecipesResolver { @Subscription(returns => Recipe) recipeAdded() { - return pubSub.asyncIterator('recipeAdded'); + return pubSub.asyncIterableIterator('recipeAdded'); } }