From 5ac101ca168420bc877aa8369b3e1059aa48cd9a Mon Sep 17 00:00:00 2001 From: David Svetlecic Date: Fri, 22 Feb 2019 19:10:50 -0600 Subject: [PATCH] value, this value. This (run-on sentence) --- site/learn/Learn-Execution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/learn/Learn-Execution.md b/site/learn/Learn-Execution.md index 68a9d49de8..930f951ad9 100644 --- a/site/learn/Learn-Execution.md +++ b/site/learn/Learn-Execution.md @@ -151,7 +151,7 @@ GraphQL will wait for all of these Promises concurrently before continuing, and ## Producing the result -As each field is resolved, the resulting value is placed into a key-value map with the field name (or alias) as the key and the resolved value as the value, this continues from the bottom leaf fields of the query all the way back up to the original field on the root Query type. Collectively these produce a structure that mirrors the original query which can then be sent (typically as JSON) to the client which requested it. +As each field is resolved, the resulting value is placed into a key-value map with the field name (or alias) as the key and the resolved value as the value. This continues from the bottom leaf fields of the query all the way back up to the original field on the root Query type. Collectively these produce a structure that mirrors the original query which can then be sent (typically as JSON) to the client which requested it. Let's take one last look at the original query to see how all these resolving functions produce a result: