@@ -100,7 +100,7 @@ type Executor<'Root>(schema: ISchema<'Root>, middlewares : IExecutorMiddleware s
100100 match Validation.Types.validateTypeMap schema.TypeMap with
101101 | Success -> ()
102102 | ValidationError errors -> raise ( GQLMessageException ( System.String.Join( " \n " , errors)))
103-
103+
104104 // Compute schema ID once after middleware has run and cache it for the lifetime of this Executor instance
105105 let schemaId = schema.Introspected.GetHashCode()
106106
@@ -189,7 +189,7 @@ type Executor<'Root>(schema: ISchema<'Root>, middlewares : IExecutorMiddleware s
189189 /// Asynchronously executes a provided execution plan. In case of repetitive queries, execution plan may be preprocessed
190190 /// and cached using ` documentId ` as an identifier.
191191 /// Returned value is a readonly dictionary consisting of following top level entries:
192- /// 'documentId' (unique identifier of current document's AST, it can be used as a key/identifier of ExecutionPlan as well),
192+ /// 'documentId' (unique identifier of the current document's AST, it can be used as a key/identifier of ExecutionPlan as well),
193193 /// 'data' (GraphQL response matching the structure provided in GraphQL query string), and
194194 /// 'errors' (optional, contains a list of errors that occurred while executing a GraphQL operation).
195195 /// </summary >
@@ -202,7 +202,7 @@ type Executor<'Root>(schema: ISchema<'Root>, middlewares : IExecutorMiddleware s
202202
203203 /// <summary >
204204 /// Asynchronously executes parsed GraphQL query AST. Returned value is a readonly dictionary consisting of following top level entries:
205- /// 'documentId' (unique identifier of current document's AST, it can be used as a key/identifier of ExecutionPlan as well),
205+ /// 'documentId' (unique identifier of the current document's AST, it can be used as a key/identifier of ExecutionPlan as well),
206206 /// 'data' (GraphQL response matching the structure provided in GraphQL query string), and
207207 /// 'errors' (optional, contains a list of errors that occurred while executing a GraphQL operation).
208208 /// </summary >
@@ -220,7 +220,7 @@ type Executor<'Root>(schema: ISchema<'Root>, middlewares : IExecutorMiddleware s
220220
221221 /// <summary >
222222 /// Asynchronously executes unparsed GraphQL query AST. Returned value is a readonly dictionary consisting of following top level entries:
223- /// 'documentId' (unique identifier of current document's AST, it can be used as a key/identifier of ExecutionPlan as well),
223+ /// 'documentId' (unique identifier of the current document's AST, it can be used as a key/identifier of ExecutionPlan as well),
224224 /// 'data' (GraphQL response matching the structure provided in GraphQL query string), and
225225 /// 'errors' (optional, contains a list of errors that occurred while executing a GraphQL operation).
226226 /// </summary >
0 commit comments