This commit is contained in:
2021-03-31 00:54:34 +11:00
parent 7b5998b63d
commit 06fa0bbe27

View File

@@ -256,6 +256,10 @@ const sine = sineQL(schema, { queryHandlers }, { debug: false });
while(true) { while(true) {
const answer = await question('sineQL'); const answer = await question('sineQL');
const [code, result] = await sine(answer); const [code, result] = await sine(answer);
console.dir(result, { depth: null });
//normal response
if (code == 200) {
console.dir(result, { depth: null });
}
} }
})(); })();