with Neptune + nodejs
g.V().hasLabel('A').properties()
returns:
id, label, value
1, 'p1','v1'
2, 'p1','b2'
3, 'p1','b3'
4, 'p1','d4'
how can I do a filter so it only returns:
id, label, value
2, 'p1','b2'
3, 'p1','b3'
I tried
g.V().hasLabel('Device').properties().value().is(containing('b'))
but it throws error UnsupportedOperationException
I also tried
g.V().hasLabel('Device').where(properties().value().is(containing('b')))
same error, but i think it is because i have different data type in multiple properties, the containing method failed when it come across number type.....