@@ -165,11 +165,11 @@ ExecuteMutation(mutation, schema, variableValues, initialValue):
165165### Subscription
166166
167167If the operation is a subscription, the result is an _ event stream_ called the
168- "Response Stream" where each event in the event stream is the result of
169- executing the operation for each new event on an underlying "Source Stream" .
168+ _ response stream _ where each event in the event stream is the result of
169+ executing the operation for each new event on an underlying _ source stream _ .
170170
171171Executing a subscription operation creates a persistent function on the service
172- that maps an underlying Source Stream to a returned Response Stream .
172+ that maps an underlying _ source stream _ to a returned _ response stream _ .
173173
174174Subscribe(subscription, schema, variableValues, initialValue):
175175
@@ -257,9 +257,9 @@ service details should be chosen by the implementing service.
257257
258258#### Source Stream
259259
260- A Source Stream is an _ event stream_ representing a sequence of root values,
261- each of which will trigger a GraphQL execution. Like field value resolution, the
262- logic to create a Source Stream is application-specific.
260+ :: A _ source stream _ is an _ event stream_ representing a sequence of root
261+ values, each of which will trigger a GraphQL execution. Like field value
262+ resolution, the logic to create a _ source stream _ is application-specific.
263263
264264CreateSourceEventStream(subscription, schema, variableValues, initialValue):
265265
@@ -294,7 +294,7 @@ operation type.
294294
295295#### Response Stream
296296
297- Each event from the underlying Source Stream triggers execution of the
297+ Each event from the underlying _ source stream _ triggers execution of the
298298subscription _ selection set_ using that event's value as the {initialValue}.
299299
300300MapSourceToResponseEvent(sourceStream, subscription, schema, variableValues):
@@ -339,7 +339,7 @@ Note: The {ExecuteSubscriptionEvent()} algorithm is intentionally similar to
339339
340340#### Unsubscribe
341341
342- Unsubscribe cancels the Response Stream when a client no longer wishes to
342+ Unsubscribe cancels the _ response stream _ when a client no longer wishes to
343343receive payloads for a subscription. This in turn also cancels the Source
344344Stream, which is a good opportunity to clean up any other resources used by the
345345subscription.
0 commit comments