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

Commit

Permalink
Merge pull request #368 from FMenet/patch-1
Browse files Browse the repository at this point in the history
Update utils.js
  • Loading branch information
johnymontana authored Jan 5, 2020
2 parents dff73a9 + 3b68fc9 commit 91097fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export function paramsToString(params, cypherParams) {
if (params.length > 0) {
const strings = _.map(params, param => {
return `${param.key}:${param.paramKey ? `$${param.paramKey}.` : '$'}${
typeof param.value.index === 'undefined'
!param.value || typeof param.value.index === 'undefined'
? param.key
: `${param.value.index}_${param.key}`
}`;
Expand Down

0 comments on commit 91097fe

Please sign in to comment.