-
-
Notifications
You must be signed in to change notification settings - Fork 90
Closed
Milestone
Description
ArcadeDB Version: 22.8.1
JDK Version: jdk11
OS: windows wsl ubuntu1804
- the query is
g.V().has('vl1','vp1',lt(2)).hasLabel('vl1','vl2','vl3').count()
Expected behavior
1
Actual behavior
3
Steps to reproduce
Cluster cluster=Cluster.open("/arcade.yaml");
Client client=cluster.connect();
client.submit("g.addV('vl1').property('vp1',1)");
client.submit("g.addV('vl2').property('vp1',1)"));
client.submit("g.addV('vl3').property('vp1',1)");
List<Result> results=client.submit("g.V().has('vl1','vp1',lt(2)).hasLabel('vl1','vl2','vl3').count()").all().get();
- the same query run in TinkerPop returns 1
Reactions are currently unavailable