paull8147
Explore posts from serversJJanusGraph
•Created by paull8147 on 9/11/2024 in #questions
How to delete static vertex link to another vertex (not static)?
Hello, in the same query i create a static vertex and an edge linked to another vertex not static.
When i try to delete static vertex and its related edge in the same query, i get an exception, how can i do it ?
2 replies
JJanusGraph
•Created by paull8147 on 6/25/2024 in #questions
Text predicate not serializable (containsPhrase, notContainsX, etc)
5 replies
JJanusGraph
•Created by paull8147 on 9/22/2023 in #questions
Possible Bug with Text.CONTAINS_REGEX & token toLowerCase
4 replies
JJanusGraph
•Created by paull8147 on 8/14/2023 in #questions
Problem with mixed index query : All property & hasId
21 replies
ATApache TinkerPop
•Created by paull8147 on 5/30/2023 in #questions
How to use select with V()
Hello, during my traversal, i found a list of vertex ids, how can i query those vertices in the same traversal without iterating over all vertices and filter them with where ?
g.V()
.group()
.by(T.id)
.by(both().id().fold())
.unfold()
.project("d")
.by(V(select(Column.values)).label())
this is just an illustration, my query is really bigger, but the V(select()) part isn't working, any idea ?
thx
6 replies