Skip to content

Commit 3e9a8da

Browse files
committed
graphql added back in to reqres
1 parent 6775364 commit 3e9a8da

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

package-lock.json

Lines changed: 18 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/controllers/reqResController.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import * as store from "../store";
22
import * as actions from "../actions/actions";
33
// import httpController from "./httpController.js";
4-
// import wsController from "./wsController.js";
5-
// import graphQLController from "./graphQLController.js";
4+
import wsController from "./wsController.js";
5+
import graphQLController from "./graphQLController.js";
66

77
const { api } = window;
88
let events;
@@ -98,8 +98,8 @@ const connectionController = {
9898
const foundAbortController = this.openConnectionArray.find(
9999
(obj) => obj.id === id
100100
);
101-
102-
console.log('open connection array is : ', this.openConnectionArray)
101+
102+
console.log("open connection array is : ", this.openConnectionArray);
103103
if (foundAbortController) {
104104
switch (foundAbortController.protocol) {
105105
case "HTTP1": {

0 commit comments

Comments
 (0)