This is an automated email from the ASF dual-hosted git repository.
spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
The following commit(s) were added to refs/heads/master by this push:
new 585bb7a3f6 Fix inaccurate vertex label description in reference docs
585bb7a3f6 is described below
commit 585bb7a3f65641fe8e26a46895d4310110b75b8a
Author: Stephen Mallette <[email protected]>
AuthorDate: Wed Jul 22 15:45:46 2026 +0000
Fix inaccurate vertex label description in reference docs
The callout for the habitat query in the Vertex Labels section stated
that habitats are modeled as ordinary single-labeled vertices. This is
inaccurate for The Zoo toy graph, where the 'lagoon' habitat carries
multiple labels. Replace the callout with a plain description of what
the query retrieves.
Assisted-by: Kiro:claude-opus-4.8
---
docs/src/reference/the-graph.asciidoc | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/docs/src/reference/the-graph.asciidoc
b/docs/src/reference/the-graph.asciidoc
index 5e7290af67..0eee1abeea 100644
--- a/docs/src/reference/the-graph.asciidoc
+++ b/docs/src/reference/the-graph.asciidoc
@@ -237,8 +237,7 @@
g.V().has('name','tux').out('livesIn').values('name','biome') <3>
not limited to exactly one for this graph.
<2> Filtering by a single label, such as "endangered", surfaces every animal
that carries it, regardless of what
other labels are also present.
-<3> Habitats, like "lagoon" and "canopy", are modeled as ordinary
single-labeled vertices connected to their
-resident animals with a "livesIn" edge.
+<3> Find the name and biome of the habitat that "tux" lives in.
[[nullable-property-values]]
=== Nullable Property Values