Skip to content

Commit

Permalink
fix #65 [selectByIds] use id values embedding insteads of cypher para…
Browse files Browse the repository at this point in the history
…meter
  • Loading branch information
CorvusYe committed Oct 25, 2022
1 parent fabcf20 commit 697fae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/NebulaDaoBasic.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<select id="selectByIds">
match (n: `${ ng.tagName( ng_args[0], ng_cm ) }`)
where id(n) in $ids
where id(n) in [ ${ ng.join( @ids, ", ", "ng.valueFmt" ) } ]
return n
</select>

Expand Down

0 comments on commit 697fae1

Please sign in to comment.