From 49cef7a11ac2081a570d7f53527477370f6a8df1 Mon Sep 17 00:00:00 2001 From: Tom Raine <157725735+WingRa7@users.noreply.github.com> Date: Sat, 23 Aug 2025 16:21:05 +0800 Subject: [PATCH] Update part8e.md v3 of graphql-subscriptions renamed the pubsub method to `asyncIterableIterator` --- src/content/8/en/part8e.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/8/en/part8e.md b/src/content/8/en/part8e.md index 60a0a074927..3a67d550a3b 100644 --- a/src/content/8/en/part8e.md +++ b/src/content/8/en/part8e.md @@ -589,7 +589,7 @@ const resolvers = { // highlight-start Subscription: { personAdded: { - subscribe: () => pubsub.asyncIterator('PERSON_ADDED') + subscribe: () => pubsub.asyncIterableIterator('PERSON_ADDED') }, }, // highlight-end