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
fix incremental delivery in test graphiql server (#3978)
* fix test graphiql server
* fix
* upd
* cleanup legacy files
* fix one e2e test
* here we gooo
* fix lint and remove unused deps
* try this if netlify works
* try helix in netlify
* log error
* try
* rm graphql dep
* rm graphql dep
* rollback to use graphql-http
}from'graphql-helix';// update when `graphql-http` is upgraded to support multipart requests for incremental delivery https://github.com/graphql/graphiql/pull/3682#discussion_r1715545279
20
+
import*asgraphqlfrom'graphql';
20
21
21
-
import{testSchemaasschema}from'./schema.js';
22
-
import{customExecute}from'./execute.js';
22
+
import{createSchema}from'./schema.js';
23
+
import{createExecute}from'./execute.js';
24
+
25
+
constschema=createSchema(graphql);
26
+
constcustomExecute=createExecute(graphql);
23
27
24
28
constapp=express();
25
29
@@ -44,6 +48,7 @@ async function handler(req, res) {
0 commit comments