jbmusso / grex

JavaScript graph database client for TinkerPop2 Rexster
MIT License
46 stars 12 forks source link

Array arguments not parsed properly #44

Closed FarzadT closed 10 years ago

FarzadT commented 10 years ago

g.V().has('name', 'T.in', ['Jon', 'Jones']) converts the given array to ['Jon, Jones'] instead of ['Jon', 'Jones']

jbmusso commented 10 years ago

Woops, this is rather annoying. Thanks for pointing that out. I'll have a look in the next couple of days and provide a fix + test.

FarzadT commented 10 years ago

Thanks, I got burnt by this one... spent a few hours debugging

FarzadT commented 10 years ago

Might want to fix this while you're at it https://github.com/gulthor/grex/issues/45

jbmusso commented 10 years ago

There again, I also added a test, cherry-picked your commit and pushed develop branch. Thank you.