@@ -92,7 +92,7 @@ import {
92
92
* Namely, schema of the type system that is currently executing,
93
93
* and the fragments defined in the query document
94
94
*/
95
- export type ExecutionContext = { |
95
+ export type ExecutionContext = {
96
96
schema : GraphQLSchema ,
97
97
fragments : ObjMap < FragmentDefinitionNode > ,
98
98
rootValue : mixed ,
@@ -102,7 +102,7 @@ export type ExecutionContext = {|
102
102
fieldResolver : GraphQLFieldResolver < any , any> ,
103
103
typeResolver : GraphQLTypeResolver < any , any> ,
104
104
errors : Array < GraphQLError > ,
105
- | } ;
105
+ } ;
106
106
107
107
/**
108
108
* The result of GraphQL execution.
@@ -111,19 +111,19 @@ export type ExecutionContext = {|
111
111
* - `data` is the result of a successful execution of the query.
112
112
* - `extensions` is reserved for adding non-standard properties.
113
113
*/
114
- export type ExecutionResult = { |
114
+ export type ExecutionResult = {
115
115
errors ?: $ReadOnlyArray < GraphQLError > ,
116
116
data ?: ObjMap < mixed > | null ,
117
117
extensions ?: ObjMap < mixed > ,
118
- | } ;
118
+ } ;
119
119
120
- export type FormattedExecutionResult = { |
120
+ export type FormattedExecutionResult = {
121
121
errors ?: $ReadOnlyArray < GraphQLFormattedError > ,
122
122
data ?: ObjMap < mixed > | null ,
123
123
extensions ?: ObjMap < mixed > ,
124
- | } ;
124
+ } ;
125
125
126
- export type ExecutionArgs = { |
126
+ export type ExecutionArgs = {
127
127
schema : GraphQLSchema ,
128
128
document : DocumentNode ,
129
129
rootValue ?: mixed ,
@@ -132,7 +132,7 @@ export type ExecutionArgs = {|
132
132
operationName ?: ?string ,
133
133
fieldResolver ?: ?GraphQLFieldResolver < any , any > ,
134
134
typeResolver ?: ?GraphQLTypeResolver < any , any > ,
135
- | } ;
135
+ } ;
136
136
137
137
/**
138
138
* Implements the "Evaluating requests" section of the GraphQL specification.
0 commit comments