From 8dfbdcc3d7b2c1f961d5935bde49573003f2fd2a Mon Sep 17 00:00:00 2001 From: Jason Curtis Date: Thu, 15 Feb 2024 15:00:03 -0800 Subject: [PATCH] defer-stream.mdx typos (#3187) --- website/src/pages/docs/features/defer-stream.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/src/pages/docs/features/defer-stream.mdx b/website/src/pages/docs/features/defer-stream.mdx index 348928bb25..d49bed9077 100644 --- a/website/src/pages/docs/features/defer-stream.mdx +++ b/website/src/pages/docs/features/defer-stream.mdx @@ -1,6 +1,6 @@ --- description: - Stream and defer are directives that allow you to improve latency for clients by sending data the + Stream and defer are directives that allow you to improve latency for clients by sending the most important data as soon as it's ready. --- @@ -8,10 +8,10 @@ import { Callout } from '@theguild/components' # Defer and Stream -Stream and defer are directives that allow you to improve latency for clients by sending data the +Stream and defer are directives that allow you to improve latency for clients by sending the most important data as soon as it's ready. -As applications grow, the GraphQL operation documents can get bigger.. The server will only send the +As applications grow, the GraphQL operation documents can get bigger. The server will only send the response back once all the data requested in the query is ready. However, not all requested data is of equal importance, and the client may not need all of the data at once. To remedy this, GraphQL specification working group is working on