Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gh-530 Document GafferPop GetElements 'squash' #531

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

Loading