mirror of
https://github.com/Ratstail91/sineQL.git
synced 2025-11-29 02:34:28 +11:00
tweak
This commit is contained in:
@@ -19,7 +19,6 @@ const sineQL = (schema, { queryHandlers }, options = {}) => {
|
||||
try {
|
||||
//parse the query
|
||||
const tokens = parseInput(reqBody, true, options);
|
||||
const queryTree = parseQueryTree(tokens, typeGraph, options);
|
||||
|
||||
switch(tokens[0]) {
|
||||
//check for leading keywords
|
||||
@@ -32,6 +31,7 @@ const sineQL = (schema, { queryHandlers }, options = {}) => {
|
||||
|
||||
//no leading keyword - regular query
|
||||
default: {
|
||||
const queryTree = parseQueryTree(tokens, typeGraph, options);
|
||||
const result = await queryHandlers[queryTree.typeName](queryTree, typeGraph);
|
||||
|
||||
if (options.debug) {
|
||||
|
||||
Reference in New Issue
Block a user