Skip to content

Commit

Permalink
Gh-530 Document GafferPop GetElements 'squash' (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
p29876 committed Sep 13, 2024
1 parent 383a734 commit 2e95fc9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/user-guide/query/gremlin/gremlin-limits.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,12 @@ Current known limitations or bugs:
- Chaining `hasLabel()` calls together like `hasLabel("label1").hasLabel("label2")`
will act like an OR rather than an AND in standard Gremlin. This means you
may get results back when you realistically shouldn't.
- Input seeds to Gaffer operations are deduplicated.
Therefore, the results of a query against a GafferPop graph may be different than a standard Gremlin graph.
For example, for the Tinkerpop Modern graph:
```
(Gremlin) g.V().out() = [v2, v3, v3, v3, v4, v5]
(GafferPop) g.V().out() = [v2, v3, v4, v5]
```
In GafferPop, Vertex 3 is only found in the result set once.

0 comments on commit 2e95fc9

Please sign in to comment.