Skip to content
This repository has been archived by the owner on Sep 3, 2021. It is now read-only.

Commit

Permalink
Fix #177
Browse files Browse the repository at this point in the history
  • Loading branch information
smkhalsa authored Jan 11, 2019
1 parent e3099c1 commit 83d17e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/translate.js
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ const customQuery = ({
});
const query = `WITH apoc.cypher.runFirstColumn("${
cypherQueryArg.value.value
}", ${argString}, True) AS x UNWIND x AS ${safeVariableName}
}", ${argString || 'null'}, True) AS x UNWIND x AS ${safeVariableName}
RETURN ${safeVariableName} {${subQuery}} AS ${safeVariableName}${orderByValue} ${outerSkipLimit}`;
return [query, params];
};
Expand Down

0 comments on commit 83d17e7

Please sign in to comment.