You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'The provided schema unexpectedly contains experimental directives (@defer or @stream). These directives may only be utilized if experimental execution features are explicitly enabled.';
59
59
60
+
/**
61
+
* Implements the "Executing requests" section of the GraphQL specification.
62
+
*
63
+
* Returns either a synchronous ExecutionResult (if all encountered resolvers
64
+
* are synchronous), or a Promise of an ExecutionResult that will eventually be
65
+
* resolved and never rejected.
66
+
*
67
+
* If the arguments to this function do not result in a legal execution context,
68
+
* a GraphQLError will be thrown immediately explaining the invalid input.
69
+
*
70
+
* This function does not support incremental delivery (`@defer` and `@stream`).
71
+
* If an operation which would defer or stream data is executed with this
72
+
* function, it will throw or return a rejected promise.
73
+
* Use `experimentalExecuteIncrementally` if you want to support incremental
0 commit comments