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 866613aebd Minor doc update to include the string IdManager CTR
new d1eb4a12c5 Merge branch '3.8-dev'
866613aebd is described below
commit 866613aebd7698813b7d0917fa3c686b048c784f
Author: Stephen Mallette <[email protected]>
AuthorDate: Tue Apr 29 08:25:51 2025 -0400
Minor doc update to include the string IdManager CTR
---
docs/src/reference/implementations-tinkergraph.asciidoc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/src/reference/implementations-tinkergraph.asciidoc
b/docs/src/reference/implementations-tinkergraph.asciidoc
index 7d4ff2641c..98183dd365 100644
--- a/docs/src/reference/implementations-tinkergraph.asciidoc
+++ b/docs/src/reference/implementations-tinkergraph.asciidoc
@@ -164,8 +164,8 @@ NOTE: To use <<tinkergraph-gremlin-tx, transactions>>,
configure `gremlin.graph`
`org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerTransactionGraph`.
The `IdManager` settings above refer to how TinkerGraph will control
identifiers for vertices, edges and vertex
-properties. There are several options for each of these settings: `ANY`,
`LONG`, `INTEGER`, `UUID`, or the fully
-qualified class name of an `IdManager` implementation on the classpath. When
not specified, the default values
+properties. There are several options for each of these settings: `ANY`,
`LONG`, `INTEGER`, `UUID`, `STRING` or the
+fully qualified class name of an `IdManager` implementation on the classpath.
When not specified, the default values
for all settings is `ANY`, meaning that the graph will work with any object on
the JVM as the identifier and will
generate new identifiers from `Long` when the identifier is not user supplied.
TinkerGraph will also expect the
user to understand the types used for identifiers when querying, meaning that
`g.V(1)` and `g.V(1L)` could return