@@ -92,7 +92,7 @@ import {
9292 * Namely, schema of the type system that is currently executing,
9393 * and the fragments defined in the query document
9494 */
95- export type ExecutionContext = { |
95+ export type ExecutionContext = {
9696 schema : GraphQLSchema ,
9797 fragments : ObjMap < FragmentDefinitionNode > ,
9898 rootValue : mixed ,
@@ -102,7 +102,7 @@ export type ExecutionContext = {|
102102 fieldResolver : GraphQLFieldResolver < any , any> ,
103103 typeResolver : GraphQLTypeResolver < any , any> ,
104104 errors : Array < GraphQLError > ,
105- | } ;
105+ } ;
106106
107107/**
108108 * The result of GraphQL execution.
@@ -111,19 +111,19 @@ export type ExecutionContext = {|
111111 * - `data` is the result of a successful execution of the query.
112112 * - `extensions` is reserved for adding non-standard properties.
113113 */
114- export type ExecutionResult = { |
114+ export type ExecutionResult = {
115115 errors ?: $ReadOnlyArray < GraphQLError > ,
116116 data ?: ObjMap < mixed > | null ,
117117 extensions ?: ObjMap < mixed > ,
118- | } ;
118+ } ;
119119
120- export type FormattedExecutionResult = { |
120+ export type FormattedExecutionResult = {
121121 errors ?: $ReadOnlyArray < GraphQLFormattedError > ,
122122 data ?: ObjMap < mixed > | null ,
123123 extensions ?: ObjMap < mixed > ,
124- | } ;
124+ } ;
125125
126- export type ExecutionArgs = { |
126+ export type ExecutionArgs = {
127127 schema : GraphQLSchema ,
128128 document : DocumentNode ,
129129 rootValue ?: mixed ,
@@ -132,7 +132,7 @@ export type ExecutionArgs = {|
132132 operationName ?: ?string ,
133133 fieldResolver ?: ?GraphQLFieldResolver < any , any > ,
134134 typeResolver ?: ?GraphQLTypeResolver < any , any > ,
135- | } ;
135+ } ;
136136
137137/**
138138 * Implements the "Evaluating requests" section of the GraphQL specification.
0 commit comments