[
https://issues.apache.org/jira/browse/TINKERPOP-1391?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15487204#comment-15487204
]
ASF GitHub Bot commented on TINKERPOP-1391:
-------------------------------------------
Github user spmallette commented on the issue:
https://github.com/apache/tinkerpop/pull/406
It looks like the code for this is the same as in the PR for tp31, but the
commit hashes are different. is this one of those cherry-pick situations you
were referencing in hipchat? I suspect that this will merge cleanly if you
re-issue the PR with:
```text
git checkout TINKERPOP-1391-master
git reset --hard origin/master
git merge TINKERPOP-1391
git push origin TINKERPOP-1391-master --force
```
> issue with where filter
> -----------------------
>
> Key: TINKERPOP-1391
> URL: https://issues.apache.org/jira/browse/TINKERPOP-1391
> Project: TinkerPop
> Issue Type: Bug
> Components: process
> Affects Versions: 3.1.3
> Reporter: Arik Cohen
> Assignee: Daniel Kuppitz
>
> Graph g = TinkerGraph.open();
> g.addVertex(T.label,"GROUP","name","Acme");
>
> List<Vertex> list = g.traversal()
> .V()
> .hasLabel("GROUP")
>
> .where(__.outE().hasLabel("PART_OF").count().is(0))
> .toList();
>
> Assert.assertEquals(1, list.size()); // actual size is 0
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)