diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 31fc242bf64..e29a202f374 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -58,6 +58,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima * Modified HTTP API to expect gremlin-lang strings for parameters and update all GLVs to send requests in new format. * Added string parameter parsing to `GremlinServer` to prevent traversal injection and excessive nesting depths. * Modified all GLVs to detect unsupported types in `GremlinLang` and throw consistent error for that case. +* Relaxed `GValue` name validation by removing the reserved leading underscore restriction. * Added GraphBinary 4.0 `Graph` (`0x10`) serializer/deserializer to `gremlin-javascript`, `gremlin-dotnet`, and `gremlin-go` so that `subgraph()` results are returned as a detached `Graph` data container. [[release-4-0-0-beta-2]] diff --git a/docs/src/reference/gremlin-variants.asciidoc b/docs/src/reference/gremlin-variants.asciidoc index 27924fa3600..febe5be70d2 100644 --- a/docs/src/reference/gremlin-variants.asciidoc +++ b/docs/src/reference/gremlin-variants.asciidoc @@ -337,7 +337,7 @@ the traversal to utilize a parameter in place of a literal. [source,go] ---- -g.V().Has("name", gremlingo.NewGValue("name", "marko")) +g.V().Has("name", gremlingo.GValue{Name: "name", Value: "marko"}) ---- [[gremlin-go-scripts]] @@ -1852,8 +1852,17 @@ Promise.all([ [[gremlin-javascript-gvalue]] === GValue Parameterization -IMPORTANT: 4.0.0-beta.2 Release - `GValue` parameterization is not yet implemented for the JavaScript driver. This -functionality is planned for a future release. +A `GValue` is an encapsulation of a parameter name and value. A <> +are able to accept GValues. When constructing a `GraphTraversal` with such steps in JavaScript, a GValue may be passed +in the traversal to utilize a parameter in place of a literal. + +[source,javascript] +---- +const GValue = gremlin.process.GValue; + +g.V().has('name', new GValue('name', 'marko')); +g.mergeV(new GValue('vertexPattern', { name: 'marko' })); +---- [[gremlin-javascript-scripts]] === Submitting Scripts diff --git a/docs/src/upgrade/release-4.x.x.asciidoc b/docs/src/upgrade/release-4.x.x.asciidoc index 4706775c7f8..980571092ab 100644 --- a/docs/src/upgrade/release-4.x.x.asciidoc +++ b/docs/src/upgrade/release-4.x.x.asciidoc @@ -471,6 +471,22 @@ beyond this limit will be rejected with an error. See: link:https://issues.apache.org/jira/browse/TINKERPOP-3247[TINKERPOP-3247] +==== GValue in the Language Variants + +`GValue`, the named query-parameter wrapper introduced for Java in 3.8.0, is now available as a client-side API in all +of the Gremlin Language Variants. Users of the Python, JavaScript, .NET, and Go drivers can construct a `GValue` and +pass it to a parameterizable step; the driver sends the value to the server as a named parameter rather than inlining +it as a literal. See the "GValue Parameterization" reference documentation for +link:https://tinkerpop.apache.org/docs/4.0.0/reference/#gremlin-java-gvalue[Java], +link:https://tinkerpop.apache.org/docs/4.0.0/reference/#gremlin-python-gvalue[Python], +link:https://tinkerpop.apache.org/docs/4.0.0/reference/#gremlin-javascript-gvalue[JavaScript], +link:https://tinkerpop.apache.org/docs/4.0.0/reference/#gremlin-dotnet-gvalue[.NET], and +link:https://tinkerpop.apache.org/docs/4.0.0/reference/#gremlin-go-gvalue[Go] for construction syntax and examples. + +The leading-underscore restriction on `GValue` names that was present in 3.8.0 has been removed. Parameter names +beginning with `_` are now accepted in Java and across all language variants. The only remaining constraints are that +a `GValue` may not wrap another `GValue`, and (in the non-Java drivers) its name may not be null. + ==== JavaScript Typed Numeric Wrappers JavaScript has a single `Number` type (IEEE 754 double) which loses the distinction between Gremlin numeric types like diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/language/translator/DotNetTranslateVisitor.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/language/translator/DotNetTranslateVisitor.java index 11546c6ca2d..e8f34036049 100644 --- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/language/translator/DotNetTranslateVisitor.java +++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/language/translator/DotNetTranslateVisitor.java @@ -46,12 +46,20 @@ * */ public class DotNetTranslateVisitor extends AbstractTranslateVisitor { + + private final boolean parameterize; + public DotNetTranslateVisitor() { this("g"); } public DotNetTranslateVisitor(final String graphTraversalSourceName) { + this(graphTraversalSourceName, false); + } + + public DotNetTranslateVisitor(final String graphTraversalSourceName, final boolean parameterize) { super(graphTraversalSourceName); + this.parameterize = parameterize; } @Override @@ -300,11 +308,13 @@ public Void visitTraversalSourceSpawnMethod_addV(final GremlinParser.TraversalSo for (int ix = 1; ix < ctx.getChildCount(); ix++) { if (ctx.getChild(ix) instanceof GremlinParser.StringArgumentContext) { - // note revisit tryAppendCastToString() method after GValue/.NET implementation in 4, - // in this case only ctx.variable() matters, (string) isn't needed for ctx.stringLiteral() - tryAppendCastToString((GremlinParser.StringArgumentContext) ctx.getChild(ix)); + final GremlinParser.StringArgumentContext sac = (GremlinParser.StringArgumentContext) ctx.getChild(ix); + tryAppendCastToString(sac); + visit(sac); + afterCastToString(sac); + } else { + visit(ctx.getChild(ix)); } - visit(ctx.getChild(ix)); } return null; } @@ -316,9 +326,13 @@ public Void visitTraversalMethod_addV_String(GremlinParser.TraversalMethod_addV_ for (int ix = 1; ix < ctx.getChildCount(); ix++) { if (ctx.getChild(ix) instanceof GremlinParser.StringArgumentContext) { - tryAppendCastToString((GremlinParser.StringArgumentContext) ctx.getChild(ix)); + final GremlinParser.StringArgumentContext sac = (GremlinParser.StringArgumentContext) ctx.getChild(ix); + tryAppendCastToString(sac); + visit(sac); + afterCastToString(sac); + } else { + visit(ctx.getChild(ix)); } - visit(ctx.getChild(ix)); } return null; } @@ -330,9 +344,13 @@ public Void visitTraversalSourceSpawnMethod_addE(final GremlinParser.TraversalSo for (int ix = 1; ix < ctx.getChildCount(); ix++) { if (ctx.getChild(ix) instanceof GremlinParser.StringArgumentContext) { - tryAppendCastToString((GremlinParser.StringArgumentContext) ctx.getChild(ix)); + final GremlinParser.StringArgumentContext sac = (GremlinParser.StringArgumentContext) ctx.getChild(ix); + tryAppendCastToString(sac); + visit(sac); + afterCastToString(sac); + } else { + visit(ctx.getChild(ix)); } - visit(ctx.getChild(ix)); } return null; } @@ -344,9 +362,13 @@ public Void visitTraversalMethod_addE_String(GremlinParser.TraversalMethod_addE_ for (int ix = 1; ix < ctx.getChildCount(); ix++) { if (ctx.getChild(ix) instanceof GremlinParser.StringArgumentContext) { - tryAppendCastToString((GremlinParser.StringArgumentContext) ctx.getChild(ix)); + final GremlinParser.StringArgumentContext sac = (GremlinParser.StringArgumentContext) ctx.getChild(ix); + tryAppendCastToString(sac); + visit(sac); + afterCastToString(sac); + } else { + visit(ctx.getChild(ix)); } - visit(ctx.getChild(ix)); } return null; } @@ -373,8 +395,9 @@ public Void visitTraversalSourceSpawnMethod_call_string_map(final GremlinParser. sb.append("").append("("); visit(ctx.stringLiteral()); sb.append(", "); - sb.append("(IDictionary) "); + tryAppendCastToDict(ctx.genericMapArgument()); visit(ctx.genericMapArgument()); + afterCastToDict(ctx.genericMapArgument()); sb.append(")"); return null; } @@ -399,8 +422,9 @@ public Void visitTraversalSourceSpawnMethod_call_string_map_traversal(final Grem sb.append("").append("("); visit(ctx.stringLiteral()); sb.append(", "); - sb.append("(IDictionary) "); + tryAppendCastToDict(ctx.genericMapArgument()); visit(ctx.genericMapArgument()); + afterCastToDict(ctx.genericMapArgument()); sb.append(", "); sb.append("(ITraversal) "); visit(ctx.nestedTraversal()); @@ -413,8 +437,9 @@ public Void visitTraversalSourceSpawnMethod_mergeV_Map(final GremlinParser.Trave // call is ambiguous without an explicit cast visit(ctx.getChild(0)); sb.append("("); - sb.append("(IDictionary) "); + tryAppendCastToDict(ctx.genericMapNullableArgument()); visit(ctx.genericMapNullableArgument()); + afterCastToDict(ctx.genericMapNullableArgument()); sb.append(")"); return null; } @@ -435,8 +460,9 @@ public Void visitTraversalSourceSpawnMethod_mergeE_Map(final GremlinParser.Trave // call is ambiguous without an explicit cast visit(ctx.getChild(0)); sb.append("("); - sb.append("(IDictionary) "); + tryAppendCastToDict(ctx.genericMapNullableArgument()); visit(ctx.genericMapNullableArgument()); + afterCastToDict(ctx.genericMapNullableArgument()); sb.append(")"); return null; } @@ -484,8 +510,9 @@ public Void visitTraversalMethod_call_string_map(final GremlinParser.TraversalMe sb.append("").append("("); visit(ctx.stringLiteral()); sb.append(", "); - sb.append("(IDictionary) "); + tryAppendCastToDict(ctx.genericMapArgument()); visit(ctx.genericMapArgument()); + afterCastToDict(ctx.genericMapArgument()); sb.append(")"); return null; } @@ -510,8 +537,9 @@ public Void visitTraversalMethod_call_string_map_traversal(final GremlinParser.T sb.append("").append("("); visit(ctx.stringLiteral()); sb.append(", "); - sb.append("(IDictionary) "); + tryAppendCastToDict(ctx.genericMapArgument()); visit(ctx.genericMapArgument()); + afterCastToDict(ctx.genericMapArgument()); sb.append(", "); sb.append("(ITraversal) "); visit(ctx.nestedTraversal()); @@ -608,6 +636,7 @@ public Void visitTraversalMethod_has_String_Object(final GremlinParser.Traversal sb.append(", "); tryAppendCastToObject(ctx.genericArgument()); visit(ctx.genericArgument()); + afterCastToObject(ctx.genericArgument()); sb.append(")"); return null; } @@ -632,12 +661,14 @@ public Void visitTraversalMethod_has_String_String_Object(final GremlinParser.Tr sb.append("("); tryAppendCastToString(ctx.stringNullableArgument()); visit(ctx.stringNullableArgument()); + afterCastToString(ctx.stringNullableArgument()); sb.append(", "); tryAppendCastToString(ctx.stringNullableLiteral()); visit(ctx.stringNullableLiteral()); sb.append(", "); tryAppendCastToObject(ctx.genericArgument()); visit(ctx.genericArgument()); + afterCastToObject(ctx.genericArgument()); sb.append(")"); return null; } @@ -649,6 +680,7 @@ public Void visitTraversalMethod_has_String_String_P(final GremlinParser.Travers sb.append("("); tryAppendCastToString(ctx.stringNullableArgument()); visit(ctx.stringNullableArgument()); + afterCastToString(ctx.stringNullableArgument()); sb.append(", "); tryAppendCastToString(ctx.stringNullableLiteral()); visit(ctx.stringNullableLiteral()); @@ -667,6 +699,7 @@ public Void visitTraversalMethod_has_T_Object(final GremlinParser.TraversalMetho sb.append(", "); tryAppendCastToObject(ctx.genericArgument()); visit(ctx.genericArgument()); + afterCastToObject(ctx.genericArgument()); sb.append(")"); return null; } @@ -718,6 +751,7 @@ public Void visitTraversalMethod_hasValue_Object_Object(final GremlinParser.Trav sb.append("("); tryAppendCastToObject(ctx.genericArgument()); visit(ctx.genericArgument()); + afterCastToObject(ctx.genericArgument()); sb.append(")"); return null; } else { @@ -754,24 +788,83 @@ public Void visitTraversalMethod_hasLabel_String_String(final GremlinParser.Trav sb.append("("); tryAppendCastToString(ctx.stringNullableArgument()); visit(ctx.stringNullableArgument()); + afterCastToString(ctx.stringNullableArgument()); sb.append(")"); return null; } else { + // Multi-arg hasLabel: in parameterize mode, we must use GValue for ALL args or NONE. + // If the first arg is a variable, wrap all in GValue; otherwise keep plain string casts. + final boolean firstIsVariable = ctx.stringNullableArgument().variable() != null; + // Use GValue wrapping only if ALL args are variables (safe for GValue overload) + // Otherwise use plain string casts for all to match HasLabel(string, params string[]) + final boolean useGValue = parameterize && firstIsVariable && allVariablesInVarargs(ctx.stringNullableArgumentVarargs()); + final String step = ctx.getChild(0).getText(); sb.append(convertToPascalCase(step)); sb.append("("); - tryAppendCastToString(ctx.stringNullableArgument()); - visit(ctx.stringNullableArgument()); + if (useGValue) { + sb.append("new GValue(\"").append(ctx.stringNullableArgument().variable().getText()).append("\", (string) "); + visit(ctx.stringNullableArgument()); + sb.append(")"); + } else { + // Plain cast for non-variable or mixed mode + if (ctx.stringNullableArgument().variable() != null || ctx.stringNullableArgument().stringNullableLiteral().K_NULL() != null) { + sb.append("(string) "); + } + visit(ctx.stringNullableArgument()); + } // more arguments to come - if (!ctx.stringNullableArgumentVarargs().isEmpty()) sb.append(", "); - visit(ctx.stringNullableArgumentVarargs()); + if (!ctx.stringNullableArgumentVarargs().isEmpty()) sb.append(", "); + if (useGValue) { + visitStringNullableArgumentVarargsWithGValue(ctx.stringNullableArgumentVarargs()); + } else { + visitStringNullableArgumentVarargsPlain(ctx.stringNullableArgumentVarargs()); + } sb.append(")"); return null; } } + private boolean allVariablesInVarargs(final GremlinParser.StringNullableArgumentVarargsContext ctx) { + for (int ix = 0; ix < ctx.getChildCount(); ix++) { + if (ctx.getChild(ix) instanceof GremlinParser.StringNullableArgumentContext) { + if (((GremlinParser.StringNullableArgumentContext) ctx.getChild(ix)).variable() == null) return false; + } + } + return true; + } + + private void visitStringNullableArgumentVarargsWithGValue(final GremlinParser.StringNullableArgumentVarargsContext ctx) { + for (int ix = 0; ix < ctx.getChildCount(); ix++) { + final ParseTree pt = ctx.getChild(ix); + if (pt instanceof GremlinParser.StringNullableArgumentContext) { + GremlinParser.StringNullableArgumentContext sna = (GremlinParser.StringNullableArgumentContext) pt; + sb.append("new GValue(\"").append(sna.variable().getText()).append("\", (string) "); + visit(sna); + sb.append(")"); + } else { + visit(pt); + } + } + } + + private void visitStringNullableArgumentVarargsPlain(final GremlinParser.StringNullableArgumentVarargsContext ctx) { + for (int ix = 0; ix < ctx.getChildCount(); ix++) { + final ParseTree pt = ctx.getChild(ix); + if (pt instanceof GremlinParser.StringNullableArgumentContext) { + GremlinParser.StringNullableArgumentContext sna = (GremlinParser.StringNullableArgumentContext) pt; + if (sna.variable() != null || sna.stringNullableLiteral().K_NULL() != null) { + sb.append("(string) "); + } + visit(sna); + } else { + visit(pt); + } + } + } + @Override public Void visitStringNullableArgumentVarargs(final GremlinParser.StringNullableArgumentVarargsContext ctx) { for (int ix = 0; ix < ctx.getChildCount(); ix++) { @@ -780,6 +873,7 @@ public Void visitStringNullableArgumentVarargs(final GremlinParser.StringNullabl GremlinParser.StringNullableArgumentContext sna = (GremlinParser.StringNullableArgumentContext) pt; tryAppendCastToString(sna); visit(sna); + afterCastToString(sna); } else { visit(pt); } @@ -852,8 +946,9 @@ public Void visitTraversalMethod_mergeV_Map(final GremlinParser.TraversalMethod_ // call is ambiguous without an explicit cast visit(ctx.getChild(0)); sb.append("("); - sb.append("(IDictionary) "); + tryAppendCastToDict(ctx.genericMapNullableArgument()); visit(ctx.genericMapNullableArgument()); + afterCastToDict(ctx.genericMapNullableArgument()); sb.append(")"); return null; } @@ -874,8 +969,9 @@ public Void visitTraversalMethod_mergeE_Map(final GremlinParser.TraversalMethod_ // call is ambiguous without an explicit cast visit(ctx.getChild(0)); sb.append("("); - sb.append("(IDictionary) "); + tryAppendCastToDict(ctx.genericMapNullableArgument()); visit(ctx.genericMapNullableArgument()); + afterCastToDict(ctx.genericMapNullableArgument()); sb.append(")"); return null; } @@ -908,8 +1004,9 @@ public Void visitTraversalMethod_option_Merge_Map(final GremlinParser.TraversalM sb.append("("); visit(ctx.traversalMerge()); sb.append(", "); - sb.append("(IDictionary) "); - visit(ctx.genericMapNullableArgument()); // second argument + tryAppendCastToDict(ctx.genericMapNullableArgument()); + visit(ctx.genericMapNullableArgument()); + afterCastToDict(ctx.genericMapNullableArgument()); sb.append(")"); return null; } @@ -975,6 +1072,7 @@ public Void visitTraversalMethod_property_Cardinality_Object_Object_Object(final sb.append(", "); tryAppendCastToObject(ctx.genericArgument()); visit(ctx.genericArgument()); + afterCastToObject(ctx.genericArgument()); sb.append(")"); return null; } else { @@ -1252,9 +1350,13 @@ private Void handleLongArguments(final ParseTree ctx) { for (int ix = 1; ix < ctx.getChildCount(); ix++) { if (ctx.getChild(ix) instanceof GremlinParser.IntegerArgumentContext) { - tryAppendCastToLong((GremlinParser.IntegerArgumentContext) ctx.getChild(ix)); + final GremlinParser.IntegerArgumentContext iac = (GremlinParser.IntegerArgumentContext) ctx.getChild(ix); + tryAppendCastToLong(iac); + visit(iac); + afterCastToLong(iac); + } else { + visit(ctx.getChild(ix)); } - visit(ctx.getChild(ix)); } return null; } @@ -1293,7 +1395,17 @@ private void tryAppendCastToLong(final GremlinParser.IntegerLiteralContext ctx) private void tryAppendCastToLong(final GremlinParser.IntegerArgumentContext ctx) { if (ctx.variable() != null) { - sb.append("(long) "); + if (parameterize) { + sb.append("new GValue(\"").append(ctx.variable().getText()).append("\", (long) "); + } else { + sb.append("(long) "); + } + } + } + + private void afterCastToLong(final GremlinParser.IntegerArgumentContext ctx) { + if (parameterize && ctx.variable() != null) { + sb.append(")"); } } @@ -1304,17 +1416,41 @@ private void tryAppendCastToString(final GremlinParser.StringLiteralContext ctx) } private void tryAppendCastToString(final GremlinParser.StringArgumentContext ctx) { - if (ctx.variable() != null || ctx.stringLiteral() != null) { + if (ctx.variable() != null) { + if (parameterize) { + sb.append("new GValue(\"").append(ctx.variable().getText()).append("\", (string) "); + } else { + sb.append("(string) "); + } + } else if (ctx.stringLiteral() != null) { sb.append("(string) "); } } + private void afterCastToString(final GremlinParser.StringArgumentContext ctx) { + if (parameterize && ctx.variable() != null) { + sb.append(")"); + } + } + private void tryAppendCastToString(final GremlinParser.StringNullableArgumentContext ctx) { - if (ctx.variable() != null || ctx.stringNullableLiteral().K_NULL() != null) { + if (ctx.variable() != null) { + if (parameterize) { + sb.append("new GValue(\"").append(ctx.variable().getText()).append("\", (string) "); + } else { + sb.append("(string) "); + } + } else if (ctx.stringNullableLiteral().K_NULL() != null) { sb.append("(string) "); } } + private void afterCastToString(final GremlinParser.StringNullableArgumentContext ctx) { + if (parameterize && ctx.variable() != null) { + sb.append(")"); + } + } + private void tryAppendCastToString(final GremlinParser.StringNullableLiteralContext ctx) { if (ctx.K_NULL() != null) { sb.append("(string) "); @@ -1322,8 +1458,21 @@ private void tryAppendCastToString(final GremlinParser.StringNullableLiteralCont } private void tryAppendCastToObject(final GremlinParser.GenericArgumentContext ctx) { - if (ctx.variable() != null || ctx.genericLiteral().nullLiteral() != null) + if (ctx.variable() != null) { + if (parameterize) { + sb.append("new GValue(\"").append(ctx.variable().getText()).append("\", (object) "); + } else { + sb.append("(object) "); + } + } else if (ctx.genericLiteral().nullLiteral() != null) { sb.append("(object) "); + } + } + + private void afterCastToObject(final GremlinParser.GenericArgumentContext ctx) { + if (parameterize && ctx.variable() != null) { + sb.append(")"); + } } private void tryAppendCastToObject(final GremlinParser.GenericLiteralContext ctx) { @@ -1331,6 +1480,42 @@ private void tryAppendCastToObject(final GremlinParser.GenericLiteralContext ctx sb.append("(object) "); } + private void tryAppendCastToDict(final GremlinParser.GenericMapNullableArgumentContext ctx) { + if (ctx.variable() != null) { + if (parameterize) { + sb.append("new GValue>(\"").append(ctx.variable().getText()).append("\", (IDictionary) "); + } else { + sb.append("(IDictionary) "); + } + } else { + sb.append("(IDictionary) "); + } + } + + private void afterCastToDict(final GremlinParser.GenericMapNullableArgumentContext ctx) { + if (parameterize && ctx.variable() != null) { + sb.append(")"); + } + } + + private void tryAppendCastToDict(final GremlinParser.GenericMapArgumentContext ctx) { + if (ctx.variable() != null) { + if (parameterize) { + sb.append("new GValue>(\"").append(ctx.variable().getText()).append("\", (IDictionary) "); + } else { + sb.append("(IDictionary) "); + } + } else { + sb.append("(IDictionary) "); + } + } + + private void afterCastToDict(final GremlinParser.GenericMapArgumentContext ctx) { + if (parameterize && ctx.variable() != null) { + sb.append(")"); + } + } + private boolean isCalledAsFirstStepInAnonymousTraversal(final ParseTree stepToTest) { final ParseTree parent = stepToTest.getParent(); final ParseTree parentParent = parent.getParent(); diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/language/translator/Translator.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/language/translator/Translator.java index 9f84ae2c1cb..1435e6692ff 100644 --- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/language/translator/Translator.java +++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/language/translator/Translator.java @@ -48,6 +48,11 @@ public enum Translator { */ DOTNET("DotNet", DotNetTranslateVisitor::new), + /** + * Translates to gremlin-dotnet with parameterized GValue wrapping for variables. + */ + DOTNET_PARAMETERIZE("DotNetParameterize", name -> new DotNetTranslateVisitor(name, true)), + /** * Translates to gremlin-groovy. */ diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/GValue.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/GValue.java index d45f0c073ae..4e7ca2b7b13 100644 --- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/GValue.java +++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/GValue.java @@ -48,9 +48,6 @@ private GValue(final V value) { } private GValue(final String name, final V value) { - if (name != null && name.startsWith("_")) { - throw new IllegalArgumentException(String.format("Invalid GValue name [%s]. Should not start with _.", name)); - } if (value instanceof GValue) { throw new IllegalArgumentException("GValues cannot be nested"); } diff --git a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/GremlinLangTest.java b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/GremlinLangTest.java index 57649b697d2..a7bda5e7f2d 100644 --- a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/GremlinLangTest.java +++ b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/GremlinLangTest.java @@ -160,9 +160,10 @@ public void shouldCheckParameterNameIsValidIdentifier() { g.V(GValue.of("1a", new int[]{1, 2, 3})); } - @Test(expected = IllegalArgumentException.class) - public void shouldCheckParameterNameIsNotReserved() { - g.V(GValue.of("_1", new int[]{1, 2, 3})); + @Test + public void shouldAllowParameterNameStartingWithUnderscore() { + final GremlinLang gremlin = g.V(GValue.of("_1", new int[]{1, 2, 3})).asAdmin().getGremlinLang(); + assertEquals("g.V(_1)", gremlin.getGremlin()); } @Test(expected = IllegalArgumentException.class) diff --git a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/step/GValueTest.java b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/step/GValueTest.java index d1b84bd9021..36bc28ed36b 100644 --- a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/step/GValueTest.java +++ b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/step/GValueTest.java @@ -59,9 +59,10 @@ public void shouldReturnAnExistInTypedGValue() { GValue.of("x", gValue); } - @Test(expected = IllegalArgumentException.class) - public void shouldRejectVariableNamesStartingWithUnderscore() { - GValue.of("_invalid", "value"); + @Test + public void shouldAcceptVariableNamesStartingWithUnderscore() { + final GValue gValue = GValue.of("_valid", "value"); + assertEquals("_valid", gValue.getName()); } @Test(expected = IllegalArgumentException.class) diff --git a/gremlin-dotnet/build/generate.groovy b/gremlin-dotnet/build/generate.groovy index 24bc271ad51..4be6c8f1214 100644 --- a/gremlin-dotnet/build/generate.groovy +++ b/gremlin-dotnet/build/generate.groovy @@ -84,9 +84,24 @@ radishGremlinFile.withWriter('UTF-8') { Writer writer -> ' new List, ITraversal>>(translations));\n' + ' }\n' + ' }\n') + writer.writeLine( + ' public static void InstantiateParameterizedTranslationsForTestRun()\n' + + ' {\n' + + ' _parameterizedTranslationsForTestRun =\n' + + ' new Dictionary, ITraversal>>>(\n' + + ' ParameterizedTranslations.Count);\n' + + ' foreach (var (traversal, translations) in ParameterizedTranslations)\n' + + ' {\n' + + ' _parameterizedTranslationsForTestRun.Add(traversal,\n' + + ' new List, ITraversal>>(translations));\n' + + ' }\n' + + ' }\n') writer.writeLine( ' private static IDictionary, ITraversal>>>\n' + ' _translationsForTestRun;\n') + writer.writeLine( + ' private static IDictionary, ITraversal>>>\n' + + ' _parameterizedTranslationsForTestRun;\n') writer.writeLine( ' private static readonly IDictionary,ITraversal>>> FixedTranslations = \n' + ' new Dictionary, ITraversal>>>\n' + @@ -132,6 +147,43 @@ radishGremlinFile.withWriter('UTF-8') { Writer writer -> } writer.writeLine(' };\n') + // Generate parameterized translations + writer.writeLine( + ' private static readonly IDictionary,ITraversal>>> ParameterizedTranslations = \n' + + ' new Dictionary, ITraversal>>>\n' + + ' {') + + gremlins.each { k,v -> + if (staticTranslate.containsKey(k)) { + writer.writeLine(staticTranslate[k]) + } else { + writer.write(" {\"") + writer.write(k) + writer.write("\", new List, ITraversal>> {") + def collected = v.collect { GremlinTranslator.translate(it, Translator.DOTNET_PARAMETERIZE) } + def gremlinItty = collected.iterator() + while (gremlinItty.hasNext()) { + def t = gremlinItty.next() + writer.write("(g,p) =>") + writer.write(t.getTranslated(). + replaceAll("(? parameters, IDictionary sideEffects)\n' + ' {\n' + @@ -151,6 +203,24 @@ radishGremlinFile.withWriter('UTF-8') { Writer writer -> ' traversal.GremlinLang.Gremlin = sideEffectLang.Gremlin + traversal.GremlinLang.Gremlin;\n' + ' }\n' + ' return traversal;\n' + + ' }\n') + writer.writeLine( + ' public static ITraversal UseParameterizedTraversal(string scenarioName, GraphTraversalSource g, IDictionary parameters, IDictionary sideEffects)\n' + + ' {\n' + + ' List, ITraversal>> list = _parameterizedTranslationsForTestRun[scenarioName];\n' + + ' Func, ITraversal> f = list[0];\n' + + ' list.RemoveAt(0);\n' + + ' ITraversal traversal = f.Invoke(g, parameters);\n' + + ' if (sideEffects.Count > 0)\n' + + ' {\n' + + ' var sideEffectLang = new GremlinLang();\n' + + ' foreach (var sideEffect in sideEffects)\n' + + ' {\n' + + ' sideEffectLang.AddSource("withSideEffect", sideEffect.Key, sideEffect.Value);\n' + + ' }\n' + + ' traversal.GremlinLang.Gremlin = sideEffectLang.Gremlin + traversal.GremlinLang.Gremlin;\n' + + ' }\n' + + ' return traversal;\n' + ' }\n' + ' }\n' + '}\n') diff --git a/gremlin-dotnet/docker-compose.yml b/gremlin-dotnet/docker-compose.yml index d68175d0e30..ccfe760f6c3 100644 --- a/gremlin-dotnet/docker-compose.yml +++ b/gremlin-dotnet/docker-compose.yml @@ -75,6 +75,10 @@ services: EXIT_CODE=$$?; /root/.dotnet/tools/trx || true; if [ $$EXIT_CODE -ne 0 ]; then echo '❌ dotnet test FAILED (exit code '$$EXIT_CODE') — build or test errors above'; fi; + echo 'Running parameterize Gherkin tests...'; + PARAMETERIZE=true dotnet test ./Gremlin.Net.sln -c Release --logger trx --filter FullyQualifiedName~Gremlin.Net.IntegrationTest.Gherkin.GherkinTestRunner --no-build; + PARAM_EXIT=$$?; + if [ $$PARAM_EXIT -ne 0 ]; then echo '❌ parameterize Gherkin test FAILED (exit code '$$PARAM_EXIT')'; EXIT_CODE=$$PARAM_EXIT; fi; echo 'Running examples...'; dotnet run --project Examples/BasicGremlin/BasicGremlin.csproj; dotnet run --project Examples/Connections/Connections.csproj; diff --git a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GValue.cs b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GValue.cs index 84c4eb0402b..c23a65b4ca4 100644 --- a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GValue.cs +++ b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GValue.cs @@ -52,30 +52,18 @@ public class GValue : IGValue, IEquatable> /// /// Initializes a new instance of the class. /// - /// The parameter name. Must be a valid identifier, not null, and not start with underscore. + /// The parameter name. Must not be null. /// The parameter value. /// Thrown when is null. - /// Thrown when is not a valid identifier. + /// Thrown when value is a nested GValue. public GValue(string name, T value) { + if (value is IGValue) + throw new ArgumentException("GValues cannot be nested"); + if (name == null) throw new ArgumentNullException(nameof(name), "The parameter name cannot be null."); - if (name.Length == 0) - throw new ArgumentException($"Invalid parameter name [{name}]."); - - if (name[0] == '_') - throw new ArgumentException($"Invalid GValue name {name}. Should not start with _."); - - if (!char.IsLetter(name[0])) - throw new ArgumentException($"Invalid parameter name [{name}]."); - - for (int i = 1; i < name.Length; i++) - { - if (!char.IsLetterOrDigit(name[i])) - throw new ArgumentException($"Invalid parameter name [{name}]."); - } - Name = name; Value = value; } @@ -119,10 +107,15 @@ public override int GetHashCode() } } + /// + /// Gets a value indicating whether the parameter value is null. + /// + public bool IsNull => Value == null; + /// public override string ToString() { - return $"GValue({Name}, {Value})"; + return $"{Name}={Value}"; } } } diff --git a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs index de01df33678..32605edecfa 100644 --- a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs +++ b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs @@ -131,6 +131,15 @@ public GraphTraversal AddE (string edgeLabel) return Wrap(this); } + /// + /// Adds the addE step to this . + /// + public GraphTraversal AddE (GValue edgeLabel) + { + GremlinLang.AddStep("addE", edgeLabel); + return Wrap(this); + } + /// /// Adds the addE step to this . /// @@ -158,6 +167,15 @@ public GraphTraversal AddV (string vertexLabel) return Wrap(this); } + /// + /// Adds the addV step to this . + /// + public GraphTraversal AddV (GValue vertexLabel) + { + GremlinLang.AddStep("addV", vertexLabel); + return Wrap(this); + } + /// /// Adds the addV step to this . /// @@ -297,6 +315,19 @@ public GraphTraversal Both (params string?[] edgeLabels) return Wrap(this); } + /// + /// Adds the both step to this . + /// + public GraphTraversal Both (GValue edgeLabel, params GValue[] otherEdgeLabels) + { + if (otherEdgeLabels == null) throw new ArgumentNullException(nameof(otherEdgeLabels)); + + var args = new List(1 + otherEdgeLabels.Length) { edgeLabel }; + args.AddRange(otherEdgeLabels); + GremlinLang.AddStep("both", args.ToArray()); + return Wrap(this); + } + /// /// Adds the bothE step to this . /// @@ -310,6 +341,19 @@ public GraphTraversal BothE (params string?[] edgeLabels) return Wrap(this); } + /// + /// Adds the bothE step to this . + /// + public GraphTraversal BothE (GValue edgeLabel, params GValue[] otherEdgeLabels) + { + if (otherEdgeLabels == null) throw new ArgumentNullException(nameof(otherEdgeLabels)); + + var args = new List(1 + otherEdgeLabels.Length) { edgeLabel }; + args.AddRange(otherEdgeLabels); + GremlinLang.AddStep("bothE", args.ToArray()); + return Wrap(this); + } + /// /// Adds the bothV step to this . /// @@ -464,6 +508,24 @@ public GraphTraversal Call(string? service, IDictionar return Wrap(this); } + /// + /// Adds the call step to this . + /// + public GraphTraversal Call (string? service, GValue> m) + { + GremlinLang.AddStep("call", service, m); + return Wrap(this); + } + + /// + /// Adds the call step to this . + /// + public GraphTraversal Call (string? service, GValue> m, ITraversal childTraversal) + { + GremlinLang.AddStep("call", service, m, childTraversal); + return Wrap(this); + } + /// /// Adds the cap step to this . /// @@ -554,6 +616,15 @@ public GraphTraversal Coin (double probability) return Wrap(this); } + /// + /// Adds the coin step to this . + /// + public GraphTraversal Coin (GValue probability) + { + GremlinLang.AddStep("coin", probability); + return Wrap(this); + } + /// /// Adds the combine step to this . /// @@ -622,6 +693,15 @@ public GraphTraversal Constant (TNewEnd e) return Wrap(this); } + /// + /// Adds the constant step to this . + /// + public GraphTraversal Constant (GValue e) + { + GremlinLang.AddStep("constant", e); + return Wrap(this); + } + /// /// Adds the count step to this . /// @@ -932,6 +1012,15 @@ public GraphTraversal From (Vertex? fromVertex) return Wrap(this); } + /// + /// Adds the from step to this . + /// + public GraphTraversal From (GValue fromVertex) + { + GremlinLang.AddStep("from", fromVertex); + return Wrap(this); + } + /// /// Adds the group step to this . /// @@ -1013,6 +1102,24 @@ public GraphTraversal Has (string? label, string? propertyKey, P? return Wrap(this); } + /// + /// Adds the has step to this . + /// + public GraphTraversal Has (GValue label, string? propertyKey, object? value) + { + GremlinLang.AddStep("has", label, propertyKey, value); + return Wrap(this); + } + + /// + /// Adds the has step to this . + /// + public GraphTraversal Has (GValue label, string? propertyKey, P? predicate) + { + GremlinLang.AddStep("has", label, propertyKey, predicate); + return Wrap(this); + } + /// /// Adds the has step to this . /// @@ -1115,6 +1222,19 @@ public GraphTraversal HasLabel (string? label, params string?[]? o return Wrap(this); } + /// + /// Adds the hasLabel step to this . + /// + public GraphTraversal HasLabel (GValue label, params GValue[] otherLabels) + { + if (otherLabels == null) throw new ArgumentNullException(nameof(otherLabels)); + + var args = new List(1 + otherLabels.Length) { label }; + args.AddRange(otherLabels); + GremlinLang.AddStep("hasLabel", args.ToArray()); + return Wrap(this); + } + /// /// Adds the hasNot step to this . /// @@ -1183,6 +1303,19 @@ public GraphTraversal In (params string?[] edgeLabels) return Wrap(this); } + /// + /// Adds the in step to this . + /// + public GraphTraversal In (GValue edgeLabel, params GValue[] otherEdgeLabels) + { + if (otherEdgeLabels == null) throw new ArgumentNullException(nameof(otherEdgeLabels)); + + var args = new List(1 + otherEdgeLabels.Length) { edgeLabel }; + args.AddRange(otherEdgeLabels); + GremlinLang.AddStep("in", args.ToArray()); + return Wrap(this); + } + /// /// Adds the inE step to this . /// @@ -1196,6 +1329,19 @@ public GraphTraversal InE (params string?[] edgeLabels) return Wrap(this); } + /// + /// Adds the inE step to this . + /// + public GraphTraversal InE (GValue edgeLabel, params GValue[] otherEdgeLabels) + { + if (otherEdgeLabels == null) throw new ArgumentNullException(nameof(otherEdgeLabels)); + + var args = new List(1 + otherEdgeLabels.Length) { edgeLabel }; + args.AddRange(otherEdgeLabels); + GremlinLang.AddStep("inE", args.ToArray()); + return Wrap(this); + } + /// /// Adds the inV step to this . /// @@ -1315,6 +1461,24 @@ public GraphTraversal Limit (long limit) return Wrap(this); } + /// + /// Adds the limit step to this . + /// + public GraphTraversal Limit (GValue limit) + { + GremlinLang.AddStep("limit", limit); + return Wrap(this); + } + + /// + /// Adds the limit step to this . + /// + public GraphTraversal Limit (Scope scope, GValue limit) + { + GremlinLang.AddStep("limit", scope, limit); + return Wrap(this); + } + /// /// Adds the local step to this . /// @@ -1469,6 +1633,15 @@ public GraphTraversal MergeE (IDictionary? m) return Wrap(this); } + /// + /// Adds the mergeE step to this . + /// + public GraphTraversal MergeE (GValue> m) + { + GremlinLang.AddStep("mergeE", m); + return Wrap(this); + } + /// /// Adds the mergeE step to this . /// @@ -1496,6 +1669,15 @@ public GraphTraversal MergeV (IDictionary? m) return Wrap(this); } + /// + /// Adds the mergeV step to this . + /// + public GraphTraversal MergeV (GValue> m) + { + GremlinLang.AddStep("mergeV", m); + return Wrap(this); + } + /// /// Adds the mergeV step to this . /// @@ -1568,6 +1750,15 @@ public GraphTraversal Option (object pickToken, IDictionary(this); } + /// + /// Adds the option step to this . + /// + public GraphTraversal Option (object pickToken, GValue> m) + { + GremlinLang.AddStep("option", pickToken, m); + return Wrap(this); + } + /// /// Adds the option step to this . /// @@ -1639,6 +1830,19 @@ public GraphTraversal Out (params string?[] edgeLabels) return Wrap(this); } + /// + /// Adds the out step to this . + /// + public GraphTraversal Out (GValue edgeLabel, params GValue[] otherEdgeLabels) + { + if (otherEdgeLabels == null) throw new ArgumentNullException(nameof(otherEdgeLabels)); + + var args = new List(1 + otherEdgeLabels.Length) { edgeLabel }; + args.AddRange(otherEdgeLabels); + GremlinLang.AddStep("out", args.ToArray()); + return Wrap(this); + } + /// /// Adds the outE step to this . /// @@ -1652,6 +1856,19 @@ public GraphTraversal OutE (params string?[] edgeLabels) return Wrap(this); } + /// + /// Adds the outE step to this . + /// + public GraphTraversal OutE (GValue edgeLabel, params GValue[] otherEdgeLabels) + { + if (otherEdgeLabels == null) throw new ArgumentNullException(nameof(otherEdgeLabels)); + + var args = new List(1 + otherEdgeLabels.Length) { edgeLabel }; + args.AddRange(otherEdgeLabels); + GremlinLang.AddStep("outE", args.ToArray()); + return Wrap(this); + } + /// /// Adds the outV step to this . /// @@ -1857,6 +2074,24 @@ public GraphTraversal Range (long low, long high) return Wrap(this); } + /// + /// Adds the range step to this . + /// + public GraphTraversal Range (GValue low, GValue high) + { + GremlinLang.AddStep("range", low, high); + return Wrap(this); + } + + /// + /// Adds the range step to this . + /// + public GraphTraversal Range (Scope scope, GValue low, GValue high) + { + GremlinLang.AddStep("range", scope, low, high); + return Wrap(this); + } + /// /// Adds the read step to this . /// @@ -2092,6 +2327,24 @@ public GraphTraversal Skip (long skip) return Wrap(this); } + /// + /// Adds the skip step to this . + /// + public GraphTraversal Skip (GValue skip) + { + GremlinLang.AddStep("skip", skip); + return Wrap(this); + } + + /// + /// Adds the skip step to this . + /// + public GraphTraversal Skip (Scope scope, GValue skip) + { + GremlinLang.AddStep("skip", scope, skip); + return Wrap(this); + } + /// /// Adds the split step to this . /// @@ -2209,6 +2462,24 @@ public GraphTraversal Tail (long limit) return Wrap(this); } + /// + /// Adds the tail step to this . + /// + public GraphTraversal Tail (GValue limit) + { + GremlinLang.AddStep("tail", limit); + return Wrap(this); + } + + /// + /// Adds the tail step to this . + /// + public GraphTraversal Tail (Scope scope, GValue limit) + { + GremlinLang.AddStep("tail", scope, limit); + return Wrap(this); + } + /// /// Adds the timeLimit step to this . /// @@ -2239,6 +2510,19 @@ public GraphTraversal To (Direction? direction, params string?[] GremlinLang.AddStep("to", args.ToArray()); return Wrap(this); } + + /// + /// Adds the to step to this . + /// + public GraphTraversal To (Direction? direction, GValue edgeLabel, params GValue[] otherEdgeLabels) + { + if (otherEdgeLabels == null) throw new ArgumentNullException(nameof(otherEdgeLabels)); + + var args = new List(2 + otherEdgeLabels.Length) { direction, edgeLabel }; + args.AddRange(otherEdgeLabels); + GremlinLang.AddStep("to", args.ToArray()); + return Wrap(this); + } /// /// Adds the to step to this . @@ -2277,6 +2561,15 @@ public GraphTraversal To (Vertex? toVertex) return Wrap(this); } + /// + /// Adds the to step to this . + /// + public GraphTraversal To (GValue toVertex) + { + GremlinLang.AddStep("to", toVertex); + return Wrap(this); + } + /// /// Adds the toE step to this . /// @@ -2289,6 +2582,19 @@ public GraphTraversal ToE (Direction? direction, params string?[] GremlinLang.AddStep("toE", args.ToArray()); return Wrap(this); } + + /// + /// Adds the toE step to this . + /// + public GraphTraversal ToE (Direction? direction, GValue edgeLabel, params GValue[] otherEdgeLabels) + { + if (otherEdgeLabels == null) throw new ArgumentNullException(nameof(otherEdgeLabels)); + + var args = new List(2 + otherEdgeLabels.Length) { direction, edgeLabel }; + args.AddRange(otherEdgeLabels); + GremlinLang.AddStep("toE", args.ToArray()); + return Wrap(this); + } /// /// Adds the toLower step to this . @@ -2514,7 +2820,6 @@ public GraphTraversal Write () return Wrap(this); } - /// /// Make a copy of a traversal that is reset for iteration. /// @@ -2523,4 +2828,4 @@ public GraphTraversal Clone() return new GraphTraversal(TraversalStrategies, GremlinLang.Clone()); } } -} \ No newline at end of file +} diff --git a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversalSource.cs b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversalSource.cs index fe1f6028a60..92a7a0c2171 100644 --- a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversalSource.cs +++ b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversalSource.cs @@ -345,6 +345,17 @@ public GraphTraversal AddE(string label) return traversal; } + /// + /// Spawns a off this graph traversal source and adds the addE step to that + /// traversal. + /// + public GraphTraversal AddE(GValue label) + { + var traversal = new GraphTraversal(TraversalStrategies, GremlinLang.Clone()); + traversal.GremlinLang.AddStep("addE", label); + return traversal; + } + /// /// Spawns a off this graph traversal source and adds the addE step to that /// traversal. @@ -373,6 +384,17 @@ public GraphTraversal MergeE(IDictionary? m) return traversal; } + /// + /// Spawns a off this graph traversal source and adds the mergeE step to that + /// traversal. + /// + public GraphTraversal MergeE(GValue> searchCreate) + { + var traversal = new GraphTraversal(TraversalStrategies, GremlinLang.Clone()); + traversal.GremlinLang.AddStep("mergeE", searchCreate); + return traversal; + } + /// /// Spawns a off this graph traversal source and adds the mergeE step to that /// traversal. @@ -406,6 +428,17 @@ public GraphTraversal AddV(string label) return traversal; } + /// + /// Spawns a off this graph traversal source and adds the addV step to that + /// traversal. + /// + public GraphTraversal AddV(GValue vertexLabel) + { + var traversal = new GraphTraversal(TraversalStrategies, GremlinLang.Clone()); + traversal.GremlinLang.AddStep("addV", vertexLabel); + return traversal; + } + /// /// Spawns a off this graph traversal source and adds the addV step to that /// traversal. @@ -428,6 +461,17 @@ public GraphTraversal MergeV(IDictionary? m) return traversal; } + /// + /// Spawns a off this graph traversal source and adds the mergeV step to that + /// traversal. + /// + public GraphTraversal MergeV(GValue> searchCreate) + { + var traversal = new GraphTraversal(TraversalStrategies, GremlinLang.Clone()); + traversal.GremlinLang.AddStep("mergeV", searchCreate); + return traversal; + } + /// /// Spawns a off this graph traversal source and adds the mergeV step to that /// traversal. @@ -529,6 +573,29 @@ public GraphTraversal Call(string? service, IDictionary< return traversal; } + /// + /// Spawns a off this graph traversal source and adds the call step to that + /// traversal. + /// + public GraphTraversal Call(string service, GValue> m) + { + var traversal = new GraphTraversal(TraversalStrategies, GremlinLang.Clone()); + traversal.GremlinLang.AddStep("call", service, m); + return traversal; + } + + /// + /// Spawns a off this graph traversal source and adds the call step to that + /// traversal. + /// + public GraphTraversal Call(string service, GValue> m, + ITraversal childTraversal) + { + var traversal = new GraphTraversal(TraversalStrategies, GremlinLang.Clone()); + traversal.GremlinLang.AddStep("call", service, m, childTraversal); + return traversal; + } + /// /// Spawns a off this graph traversal source and adds the union step to that /// traversal. diff --git a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GremlinLang.cs b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GremlinLang.cs index 21115a8f8ff..1a14dda48f9 100644 --- a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GremlinLang.cs +++ b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GremlinLang.cs @@ -302,11 +302,6 @@ private string ArgAsString(object? arg) { var key = gValue.Name; - if (key == null) - { - return ArgAsString(gValue.ObjectValue); - } - if (!IsValidIdentifier(key)) { throw new ArgumentException($"Invalid parameter name [{key}]."); @@ -314,7 +309,7 @@ private string ArgAsString(object? arg) if (_parameters.ContainsKey(key)) { - if (!Equals(_parameters[key], gValue.ObjectValue)) + if (!ValuesEqual(_parameters[key], gValue.ObjectValue)) { throw new ArgumentException($"Parameter with name [{key}] already defined."); } @@ -718,16 +713,57 @@ private static bool IsValidIdentifier(string name) { if (string.IsNullOrEmpty(name)) return false; - if (!char.IsLetter(name[0])) + if (!char.IsLetter(name[0]) && name[0] != '_' && name[0] != '$') return false; for (int i = 1; i < name.Length; i++) { - if (!char.IsLetterOrDigit(name[i])) + if (!char.IsLetterOrDigit(name[i]) && name[i] != '_' && name[i] != '$') return false; } return true; } + private static bool ValuesEqual(object? a, object? b) + { + if (Equals(a, b)) return true; + if (a == null || b == null) return false; + + if (a is IDictionary dictA && b is IDictionary dictB) + { + if (dictA.Count != dictB.Count) return false; + foreach (DictionaryEntry entry in dictA) + { + if (!dictB.Contains(entry.Key)) return false; + if (!ValuesEqual(entry.Value, dictB[entry.Key])) return false; + } + return true; + } + + if (a is string || b is string) return false; + + if (a is IEnumerable enumA && b is IEnumerable enumB) + { + var enumeratorA = enumA.GetEnumerator(); + var enumeratorB = enumB.GetEnumerator(); + try + { + while (enumeratorA.MoveNext()) + { + if (!enumeratorB.MoveNext()) return false; + if (!ValuesEqual(enumeratorA.Current, enumeratorB.Current)) return false; + } + return !enumeratorB.MoveNext(); + } + finally + { + if (enumeratorA is IDisposable dA) dA.Dispose(); + if (enumeratorB is IDisposable dB) dB.Dispose(); + } + } + + return false; + } + /// /// Creates a deep copy of this instance. /// diff --git a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/__.cs b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/__.cs index b16732a61b0..484b393c198 100644 --- a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/__.cs +++ b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/__.cs @@ -68,6 +68,14 @@ public static GraphTraversal AddE(string edgeLabel) return new GraphTraversal().AddE(edgeLabel); } + /// + /// Spawns a and adds the addE step to that traversal. + /// + public static GraphTraversal AddE(GValue edgeLabel) + { + return new GraphTraversal().AddE(edgeLabel); + } + /// /// Spawns a and adds the addE step to that traversal. /// @@ -92,6 +100,14 @@ public static GraphTraversal AddV(string vertexLabel) return new GraphTraversal().AddV(vertexLabel); } + /// + /// Spawns a and adds the addV step to that traversal. + /// + public static GraphTraversal AddV(GValue vertexLabel) + { + return new GraphTraversal().AddV(vertexLabel); + } + /// /// Spawns a and adds the addV step to that traversal. /// @@ -210,6 +226,14 @@ public static GraphTraversal Both(params string?[] edgeLabels) : new GraphTraversal().Both(edgeLabels); } + /// + /// Spawns a and adds the both step to that traversal. + /// + public static GraphTraversal Both(GValue edgeLabel, params GValue[] otherEdgeLabels) + { + return new GraphTraversal().Both(edgeLabel, otherEdgeLabels); + } + /// /// Spawns a and adds the bothE step to that traversal. /// @@ -220,6 +244,14 @@ public static GraphTraversal BothE(params string?[] edgeLabels) : new GraphTraversal().BothE(edgeLabels); } + /// + /// Spawns a and adds the bothE step to that traversal. + /// + public static GraphTraversal BothE(GValue edgeLabel, params GValue[] otherEdgeLabels) + { + return new GraphTraversal().BothE(edgeLabel, otherEdgeLabels); + } + /// /// Spawns a and adds the bothV step to that traversal. /// @@ -276,6 +308,22 @@ public static GraphTraversal Call(string? service, IDictionary().Call(service, m, t); } + /// + /// Spawns a and adds the call step to that traversal. + /// + public static GraphTraversal Call(string service, GValue> m) + { + return new GraphTraversal().Call(service, m); + } + + /// + /// Spawns a and adds the call step to that traversal. + /// + public static GraphTraversal Call(string service, GValue> m, ITraversal childTraversal) + { + return new GraphTraversal().Call(service, m, childTraversal); + } + /// /// Spawns a and adds the cap step to that traversal. /// @@ -352,6 +400,14 @@ public static GraphTraversal Coin(double probability) return new GraphTraversal().Coin(probability); } + /// + /// Spawns a and adds the coin step to that traversal. + /// + public static GraphTraversal Coin(GValue probability) + { + return new GraphTraversal().Coin(probability); + } + /// /// Spawns a and adds the combine step to that traversal. /// @@ -394,6 +450,14 @@ public static GraphTraversal Constant(E2 a) return new GraphTraversal().Constant(a); } + /// + /// Spawns a and adds the constant step to that traversal. + /// + public static GraphTraversal Constant(GValue a) + { + return new GraphTraversal().Constant(a); + } + /// /// Spawns a and adds the count step to that traversal. /// @@ -712,6 +776,22 @@ public static GraphTraversal Has(T accessor, P? predicate) return new GraphTraversal().Has(accessor, predicate); } + /// + /// Spawns a and adds the has step to that traversal. + /// + public static GraphTraversal Has(GValue label, string propertyKey, P predicate) + { + return new GraphTraversal().Has(label, propertyKey, predicate); + } + + /// + /// Spawns a and adds the has step to that traversal. + /// + public static GraphTraversal Has(GValue label, string propertyKey, object value) + { + return new GraphTraversal().Has(label, propertyKey, value); + } + /// /// Spawns a and adds the hasId step to that traversal. /// @@ -766,6 +846,14 @@ public static GraphTraversal HasLabel(string? label, params stri : new GraphTraversal().HasLabel(label, otherLabels); } + /// + /// Spawns a and adds the hasLabel step to that traversal. + /// + public static GraphTraversal HasLabel(GValue label, params GValue[] otherLabels) + { + return new GraphTraversal().HasLabel(label, otherLabels); + } + /// /// Spawns a and adds the hasNot step to that traversal. /// @@ -818,6 +906,14 @@ public static GraphTraversal In(params string?[] edgeLabels) : new GraphTraversal().In(edgeLabels); } + /// + /// Spawns a and adds the in step to that traversal. + /// + public static GraphTraversal In(GValue edgeLabel, params GValue[] otherEdgeLabels) + { + return new GraphTraversal().In(edgeLabel, otherEdgeLabels); + } + /// /// Spawns a and adds the inE step to that traversal. /// @@ -828,6 +924,14 @@ public static GraphTraversal InE(params string?[] edgeLabels) : new GraphTraversal().InE(edgeLabels); } + /// + /// Spawns a and adds the inE step to that traversal. + /// + public static GraphTraversal InE(GValue edgeLabel, params GValue[] otherEdgeLabels) + { + return new GraphTraversal().InE(edgeLabel, otherEdgeLabels); + } + /// /// Spawns a and adds the inV step to that traversal. /// @@ -918,6 +1022,14 @@ public static GraphTraversal Limit(Scope scope, long limit) return new GraphTraversal().Limit(scope, limit); } + /// + /// Spawns a and adds the limit step to that traversal. + /// + public static GraphTraversal Limit(Scope scope, GValue limit) + { + return new GraphTraversal().Limit(scope, limit); + } + /// /// Spawns a and adds the limit step to that traversal. /// @@ -926,6 +1038,14 @@ public static GraphTraversal Limit(long limit) return new GraphTraversal().Limit(limit); } + /// + /// Spawns a and adds the limit step to that traversal. + /// + public static GraphTraversal Limit(GValue limit) + { + return new GraphTraversal().Limit(limit); + } + /// /// Spawns a and adds the local step to that traversal. /// @@ -1056,6 +1176,14 @@ public static GraphTraversal MergeE (IDictionary? return new GraphTraversal().MergeE(m); } + /// + /// Spawns a and adds the mergeE step to that traversal. + /// + public static GraphTraversal MergeE(GValue> m) + { + return new GraphTraversal().MergeE(m); + } + /// /// Spawns a and adds the mergeE step to that traversal. /// @@ -1080,6 +1208,14 @@ public static GraphTraversal MergeV (IDictionary? return new GraphTraversal().MergeV(m); } + /// + /// Spawns a and adds the mergeV step to that traversal. + /// + public static GraphTraversal MergeV(GValue> m) + { + return new GraphTraversal().MergeV(m); + } + /// /// Adds the mergeV step to this . /// @@ -1172,6 +1308,14 @@ public static GraphTraversal Out(params string?[] edgeLabels) : new GraphTraversal().Out(edgeLabels); } + /// + /// Spawns a and adds the out step to that traversal. + /// + public static GraphTraversal Out(GValue edgeLabel, params GValue[] otherEdgeLabels) + { + return new GraphTraversal().Out(edgeLabel, otherEdgeLabels); + } + /// /// Spawns a and adds the outE step to that traversal. /// @@ -1182,6 +1326,14 @@ public static GraphTraversal OutE(params string?[] edgeLabels) : new GraphTraversal().OutE(edgeLabels); } + /// + /// Spawns a and adds the outE step to that traversal. + /// + public static GraphTraversal OutE(GValue edgeLabel, params GValue[] otherEdgeLabels) + { + return new GraphTraversal().OutE(edgeLabel, otherEdgeLabels); + } + /// /// Spawns a and adds the outV step to that traversal. /// @@ -1274,6 +1426,14 @@ public static GraphTraversal Range(Scope scope, long low, long h return new GraphTraversal().Range(scope, low, high); } + /// + /// Spawns a and adds the range step to that traversal. + /// + public static GraphTraversal Range(Scope scope, GValue low, GValue high) + { + return new GraphTraversal().Range(scope, low, high); + } + /// /// Spawns a and adds the range step to that traversal. /// @@ -1282,6 +1442,14 @@ public static GraphTraversal Range(long low, long high) return new GraphTraversal().Range(low, high); } + /// + /// Spawns a and adds the range step to that traversal. + /// + public static GraphTraversal Range(GValue low, GValue high) + { + return new GraphTraversal().Range(low, high); + } + /// /// Spawns a and adds the repeat step to that traversal. /// @@ -1458,6 +1626,14 @@ public static GraphTraversal Skip(Scope scope, long skip) return new GraphTraversal().Skip(scope, skip); } + /// + /// Spawns a and adds the skip step to that traversal. + /// + public static GraphTraversal Skip(Scope scope, GValue skip) + { + return new GraphTraversal().Skip(scope, skip); + } + /// /// Spawns a and adds the skip step to that traversal. /// @@ -1466,6 +1642,14 @@ public static GraphTraversal Skip(long skip) return new GraphTraversal().Skip(skip); } + /// + /// Spawns a and adds the skip step to that traversal. + /// + public static GraphTraversal Skip(GValue skip) + { + return new GraphTraversal().Skip(skip); + } + /// /// Spawns a and adds the split step to that traversal. /// @@ -1546,6 +1730,14 @@ public static GraphTraversal Tail(Scope scope, long limit) return new GraphTraversal().Tail(scope, limit); } + /// + /// Spawns a and adds the tail step to that traversal. + /// + public static GraphTraversal Tail(Scope scope, GValue limit) + { + return new GraphTraversal().Tail(scope, limit); + } + /// /// Spawns a and adds the tail step to that traversal. /// @@ -1554,6 +1746,14 @@ public static GraphTraversal Tail(long limit) return new GraphTraversal().Tail(limit); } + /// + /// Spawns a and adds the tail step to that traversal. + /// + public static GraphTraversal Tail(GValue limit) + { + return new GraphTraversal().Tail(limit); + } + /// /// Spawns a and adds the timeLimit step to that traversal. /// @@ -1580,6 +1780,14 @@ public static GraphTraversal To(Direction? direction, params str : new GraphTraversal().To(direction, edgeLabels); } + /// + /// Spawns a and adds the to step to that traversal. + /// + public static GraphTraversal To(Direction? direction, GValue edgeLabel, params GValue[] otherEdgeLabels) + { + return new GraphTraversal().To(direction, edgeLabel, otherEdgeLabels); + } + /// /// Spawns a and adds the toE step to that traversal. /// @@ -1589,6 +1797,14 @@ public static GraphTraversal ToE(Direction? direction, params stri ? new GraphTraversal().ToE(direction) : new GraphTraversal().ToE(direction, edgeLabels); } + + /// + /// Spawns a and adds the toE step to that traversal. + /// + public static GraphTraversal ToE(Direction? direction, GValue edgeLabel, params GValue[] otherEdgeLabels) + { + return new GraphTraversal().ToE(direction, edgeLabel, otherEdgeLabels); + } /// /// Spawns a and adds the toLower step to that traversal. @@ -1761,4 +1977,4 @@ public static GraphTraversal Where(ITraversal whereTraversal) } } -} \ No newline at end of file +} diff --git a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/CommonSteps.cs b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/CommonSteps.cs index 2c42d1a8bed..1864149b39e 100644 --- a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/CommonSteps.cs +++ b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/CommonSteps.cs @@ -43,6 +43,9 @@ namespace Gremlin.Net.IntegrationTest.Gherkin { internal class CommonSteps : StepDefinition { + private static readonly bool Parameterize = + Environment.GetEnvironmentVariable("PARAMETERIZE") == "true"; + private GraphTraversalSource? _g; private string? _graphName; private readonly IDictionary _parameters = new Dictionary(); @@ -148,15 +151,30 @@ public void TranslateTraversal(string traversalText) _g = _g.WithComputer(); } - _traversal = - Gremlin.UseTraversal(ScenarioData.CurrentScenario!.Name, _g, _parameters, _sideEffects); + if (Parameterize) + { + _traversal = + Gremlin.UseParameterizedTraversal(ScenarioData.CurrentScenario!.Name, _g, _parameters, _sideEffects); + } + else + { + _traversal = + Gremlin.UseTraversal(ScenarioData.CurrentScenario!.Name, _g, _parameters, _sideEffects); + } } [Given("the graph initializer of")] public void InitTraversal(string traversalText) { - var traversal = - Gremlin.UseTraversal(ScenarioData.CurrentScenario!.Name, _g, _parameters, _sideEffects); + ITraversal traversal; + if (Parameterize) + { + traversal = Gremlin.UseParameterizedTraversal(ScenarioData.CurrentScenario!.Name, _g, _parameters, _sideEffects); + } + else + { + traversal = Gremlin.UseTraversal(ScenarioData.CurrentScenario!.Name, _g, _parameters, _sideEffects); + } traversal.Iterate(); // We may have modified the so-called `empty` graph @@ -481,7 +499,9 @@ public void AssertTraversalCount(int expectedCount, string traversalText) traversalText = traversalText.Substring(1, traversalText.Length - 2); } - var traversal = (ITraversal) Gremlin.UseTraversal(ScenarioData.CurrentScenario!.Name, _g, _parameters, _sideEffects); + var traversal = Parameterize + ? (ITraversal) Gremlin.UseParameterizedTraversal(ScenarioData.CurrentScenario!.Name, _g, _parameters, _sideEffects) + : (ITraversal) Gremlin.UseTraversal(ScenarioData.CurrentScenario!.Name, _g, _parameters, _sideEffects); var count = 0; while (traversal.MoveNextAsync().AsTask().GetAwaiter().GetResult()) diff --git a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/GherkinTestRunner.cs b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/GherkinTestRunner.cs index 6aee9027626..91ea4bbb8fa 100644 --- a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/GherkinTestRunner.cs +++ b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/GherkinTestRunner.cs @@ -88,6 +88,10 @@ public void RunGherkinBasedTests(IMessageSerializer messageSerializer) { WriteOutput($"Starting Gherkin-based tests with serializer: {messageSerializer.GetType().Name}"); Gremlin.InstantiateTranslationsForTestRun(); + if (Environment.GetEnvironmentVariable("PARAMETERIZE") == "true") + { + Gremlin.InstantiateParameterizedTranslationsForTestRun(); + } var stepDefinitionTypes = GetStepDefinitionTypes(); var results = new List(); using var scenarioData = new ScenarioData(messageSerializer); diff --git a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs index 8ac4ef7b25f..92d42fad6a8 100644 --- a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs +++ b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs @@ -57,9 +57,24 @@ public static void InstantiateTranslationsForTestRun() } } + public static void InstantiateParameterizedTranslationsForTestRun() + { + _parameterizedTranslationsForTestRun = + new Dictionary, ITraversal>>>( + ParameterizedTranslations.Count); + foreach (var (traversal, translations) in ParameterizedTranslations) + { + _parameterizedTranslationsForTestRun.Add(traversal, + new List, ITraversal>>(translations)); + } + } + private static IDictionary, ITraversal>>> _translationsForTestRun; + private static IDictionary, ITraversal>>> + _parameterizedTranslationsForTestRun; + private static readonly IDictionary,ITraversal>>> FixedTranslations = new Dictionary, ITraversal>>> { @@ -2185,14 +2200,2157 @@ private static IDictionary, ITraversal>> {(g,p) =>g.Io("tinkerpop-modern.xml").With(IO.Writer, IO.GraphML).Write()}}, }; - public static ITraversal UseTraversal(string scenarioName, GraphTraversalSource g, IDictionary parameters, IDictionary sideEffects) - { - List, ITraversal>> list = _translationsForTestRun[scenarioName]; - Func, ITraversal> f = list[0]; - list.RemoveAt(0); - ITraversal traversal = f.Invoke(g, parameters); - // Side effects need to be prepended as source steps (before traversal steps). - // Build them in a temporary GremlinLang and prepend to the traversal's gremlin string. + private static readonly IDictionary,ITraversal>>> ParameterizedTranslations = + new Dictionary, ITraversal>>> + { + {"g_V_branchXlabel_isXpersonX_countX_optionX1__ageX_optionX0__langX_optionX0__nameX", new List, ITraversal>> {(g,p) =>g.V().Branch(__.Label().Is("person").Count()).Option(p["xx1"], __.Values("age")).Option(p["xx2"], __.Values("lang")).Option(p["xx2"], __.Values("name"))}}, + {"g_V_branchXlabel_isXpersonX_countX_optionX1__ageX_optionX0__langX_optionX0__nameX_optionXany__labelX", new List, ITraversal>> {(g,p) =>g.V().Branch(__.Label().Is("person").Count()).Option(p["xx1"], __.Values("age")).Option(p["xx2"], __.Values("lang")).Option(p["xx2"], __.Values("name")).Option(Pick.Any, __.Label())}}, + {"g_V_branchXageX_optionXltX30X__youngX_optionXgtX30X__oldX_optionXnone__on_the_edgeX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Branch(__.Values("age")).Option(P.Lt(30), __.Constant("young")).Option(P.Gt(30), __.Constant("old")).Option(Pick.None, __.Constant("on the edge"))}}, + {"g_V_branchXidentityX_optionXhasLabelXsoftwareX__inXcreatedX_name_order_foldX_optionXhasXname_vadasX__ageX_optionXneqX123X__bothE_countX", new List, ITraversal>> {(g,p) =>g.V().Branch(__.Identity()).Option(__.HasLabel("software"), __.In("created").Values("name").Order().Fold()).Option(__.Has("name", "vadas"), __.Values("age")).Option(P.Neq(123), __.BothE().Count())}}, + {"g_V_chooseXout_countX_optionX2L_nameX_optionX3L_ageX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Out().Count()).Option(p["xx1"], __.Values("name")).Option(p["xx2"], __.Values("age"))}}, + {"g_V_chooseXout_countX_optionX2L_nameX_optionX3L_ageX_optionXnone_discardX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Out().Count()).Option(p["xx1"], __.Values("name")).Option(p["xx2"], __.Values("age")).Option(Pick.None, __.Discard())}}, + {"g_V_chooseXhasLabelXpersonX_and_outXcreatedX__outXknowsX_identityX_name", new List, ITraversal>> {(g,p) =>g.V().Choose(__.HasLabel("person").And().Out("created"), __.Out("knows"), __.Identity()).Values("name")}}, + {"g_V_chooseXhasLabelXpersonX_and_outXcreatedX_outXknowsX_name", new List, ITraversal>> {(g,p) =>g.V().Choose(__.HasLabel("person").And().Out("created"), __.Out("knows")).Values("name")}}, + {"g_V_chooseXlabelX_optionXblah__outXknowsXX_optionXbleep__outXcreatedXX_optionXnone__identityX_name", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Label()).Option("blah", __.Out("knows")).Option("bleep", __.Out("created")).Option(Pick.None, __.Identity()).Values("name")}}, + {"g_V_chooseXTlabelX_optionXperson__outXknowsX_nameX_optionXbleep_constantXbleepXX", new List, ITraversal>> {(g,p) =>g.V().Choose(T.Label).Option("person", __.Out("knows").Values("name")).Option("bleep", __.Constant("bleep"))}}, + {"g_V_chooseXTlabelX_optionXblah__outXknowsXX_optionXbleep__outXcreatedXX_optionXnone__identityX_name", new List, ITraversal>> {(g,p) =>g.V().Choose(T.Label).Option("blah", __.Out("knows")).Option("bleep", __.Out("created")).Option(Pick.None, __.Identity()).Values("name")}}, + {"g_V_chooseXTlabelX_optionXblah__outXknowsXX_optionXbleep__outXcreatedXX_optionXnone_discardX_name", new List, ITraversal>> {(g,p) =>g.V().Choose(T.Label).Option("blah", __.Out("knows")).Option("bleep", __.Out("created")).Option(Pick.None, __.Discard()).Values("name")}}, + {"g_V_chooseXoutXknowsX_count_isXgtX0XX__outXknowsXX_name", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Out("knows").Count().Is(P.Gt(0)), __.Out("knows")).Values("name")}}, + {"g_V_hasLabelXpersonX_asXp1X_chooseXoutEXknowsX__outXknowsXX_asXp2X_selectXp1_p2X_byXnameX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").As("p1").Choose(__.OutE("knows"), __.Out("knows")).As("p2").Select("p1", "p2").By("name")}}, + {"g_V_hasLabelXpersonX_chooseXageX__optionX27L__constantXyoungXX_optionXnone__constantXoldXX_groupCount", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Choose(__.Values("age")).Option(p["xx1"], __.Constant("young")).Option(Pick.None, __.Constant("old")).GroupCount()}}, + {"g_injectX1X_chooseXisX1X__constantX10Xfold__foldX", new List, ITraversal>> {(g,p) =>g.Inject(1).Choose(__.Is(p["xx1"]), __.Constant(10).Fold(), __.Fold())}}, + {"g_injectX2X_chooseXisX1X__constantX10Xfold__foldX", new List, ITraversal>> {(g,p) =>g.Inject(2).Choose(__.Is(p["xx1"]), __.Constant(10).Fold(), __.Fold())}}, + {"g_V_chooseXhasLabelXpersonX_chooseXageX_optionXbetweenX26_30X_constantXxXX_optionXbetweenX20_30X_constantXyXX_optionXnone_constantXzXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Choose(__.Values("age")).Option(P.Between(26, 30), __.Constant("x")).Option(P.Between(20, 30), __.Constant("y")).Option(Pick.None, __.Constant("z"))}}, + {"g_V_chooseXhasLabelXpersonX_chooseXageX_optionXbetweenX26_30X_orXgtX34XX_constantXxXX_optionXgtX34X_constantXyXX_optionXnone_constantXzXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Choose(__.Values("age")).Option(P.Between(26, 30).Or(P.Gt(34)), __.Constant("x")).Option(P.Gt(34), __.Constant("y")).Option(Pick.None, __.Constant("z"))}}, + {"g_V_hasLabelXpersonX_chooseXageX_optionXbetweenX26_30X_nameX_optionXnone_nameX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Choose(__.Values("age")).Option(P.Between(26, 30), __.Values("name")).Option(Pick.None, __.Values("name"))}}, + {"g_V_chooseXhasLabelXpersonX_localXchooseXageX_optionXbetweenX26_30X_name_foldX_optionXnone_name_foldXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Local(__.Choose(__.Values("age")).Option(P.Between(26, 30), __.Values("name").Fold()).Option(Pick.None, __.Values("name").Fold()))}}, + {"g_V_chooseXhasLabelXpersonX_mapXchooseXageX_optionXbetweenX26_30X_name_foldX_optionXnone_name_foldXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Map(__.Choose(__.Values("age")).Option(P.Between(26, 30), __.Values("name").Fold()).Option(Pick.None, __.Values("name").Fold()))}}, + {"g_unionXV_VXhasLabelXpersonX_barrier_localXchooseXageX_optionXbetweenX26_30X_name_foldX_optionXnone_name_foldXX", new List, ITraversal>> {(g,p) =>g.Union(__.V(), __.V()).HasLabel("person").Barrier().Local(__.Choose(__.Values("age")).Option(P.Between(26, 30), __.Values("name").Fold()).Option(Pick.None, __.Values("name").Fold()))}}, + {"g_unionXV_VXhasLabelXpersonX_barrier_mapXchooseXageX_optionXbetweenX26_30X_name_foldX_optionXnone_name_foldXX", new List, ITraversal>> {(g,p) =>g.Union(__.V(), __.V()).HasLabel("person").Barrier().Map(__.Choose(__.Values("age")).Option(P.Between(26, 30), __.Values("name").Fold()).Option(Pick.None, __.Values("name").Fold()))}}, + {"g_V_chooseXageX_optionXbetweenX26_30X_nameX_optionXnone_nameX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Values("age")).Option(P.Between(26, 30), __.Values("name")).Option(Pick.None, __.Values("name"))}}, + {"g_V_chooseXageX_optionXbetweenX26_30X_nameX_optionXnone_nameX_optionXunproductive_labelX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Values("age")).Option(P.Between(26, 30), __.Values("name")).Option(Pick.None, __.Values("name")).Option(Pick.Unproductive, __.Label())}}, + {"g_V_chooseXageX_optionXbetweenX26_30X_nameX_optionXnone_nameX_optionXnone_identityX_optionXnone_failX_optionXunproductive_identityX_optionXunproductive_labelX_optionXnone_failX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Values("age")).Option(P.Between(26, 30), __.Values("name")).Option(Pick.None, __.Values("name")).Option(Pick.None, __.Identity()).Option(Pick.None, __.Fail()).Option(Pick.Unproductive, __.Label()).Option(Pick.Unproductive, __.Identity()).Option(Pick.Unproductive, __.Fail())}}, + {"g_V_chooseXage_nameX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Values("age"), __.Values("name"))}}, + {"g_V_chooseXageX_optionXbetweenX26_30X_nameX_optionXnone_discardX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Values("age")).Option(P.Between(26, 30), __.Values("name")).Option(Pick.None, __.Discard())}}, + {"g_V_chooseXnameX_optionXneqXyX_ageX_optionXnone_constantXxXX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Values("name")).Option(P.Neq("y"), __.Values("age")).Option(Pick.None, __.Constant("x"))}}, + {"g_V_hasLabelXpersonX_chooseXoutXcreatedX_count_isXeqX0XX__constantXdidnt_createX__constantXcreatedXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Choose(__.Out("created").Count().Is(P.Eq(0)), __.Constant("didnt_create"), __.Constant("created"))}}, + {"g_V_hasLabelXpersonX_chooseXvaluesXageX_isXgtX30XX__valuesXageX__constantX30XX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Choose(__.Values("age").Is(P.Gt(30)), __.Values("age"), __.Constant(30))}}, + {"g_V_hasLabelXpersonX_chooseXvaluesXageX_isXgtX29XX_and_valuesXageX_isXltX35XX__valuesXnameX__constantXotherXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Choose(__.Values("age").Is(P.Gt(29)).And().Values("age").Is(P.Lt(35)), __.Values("name"), __.Constant("other"))}}, + {"g_V_chooseXhasXname_vadasX__valuesXnameX__valuesXageXX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Has("name", "vadas"), __.Values("name"), __.Values("age"))}}, + {"g_V_hasLabelXpersonX_chooseXoutXcreatedX_countX_optionX0__constantXnoneXX_optionX1__constantXoneXX_optionX2__constantXmanyXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Choose(__.Out("created").Count()).Option(p["xx0"], __.Constant("none")).Option(p["xx1"], __.Constant("one")).Option(p["xx2"], __.Constant("many"))}}, + {"g_V_hasLabelXpersonX_chooseXlocalXoutXknowsX_countX__optionX0__constantXnoFriendsXX__optionXnone__constantXhasFriendsXXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Choose(__.Local(__.Out("knows").Count())).Option(p["xx0"], __.Constant("noFriends")).Option(Pick.None, __.Constant("hasFriends"))}}, + {"g_V_chooseXoutE_countX_optionX0__constantXnoneXX_optionXnone__constantXsomeXX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.OutE().Count()).Option(p["xx0"], __.Constant("none")).Option(Pick.None, __.Constant("some"))}}, + {"g_V_chooseXlabelX_optionXperson__chooseXageX_optionXP_lt_30__constantXyoungXX_optionXP_gte_30__constantXoldXXX_optionXsoftware__constantXprogramXX_optionXnone__constantXunknownXX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Label()).Option("person", __.Choose(__.Values("age")).Option(P.Lt(30), __.Constant("young")).Option(P.Gte(30), __.Constant("old"))).Option("software", __.Constant("program")).Option(Pick.None, __.Constant("unknown"))}}, + {"g_V_chooseXhasXname_vadasX__valuesXnameXX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Has("name", "vadas"), __.Values("name"))}}, + {"g_V_hasLabelXpersonX_age_chooseXP_eqX29X_constantXmatchedX_constantXotherXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("age").Choose(P.Eq(29), __.Constant("matched"), __.Constant("other"))}}, + {"g_V_hasLabelXpersonX_age_chooseXP_eqX29X_constantXmatchedX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("age").Choose(P.Eq(29), __.Constant("matched"))}}, + {"g_V_hasLabelXpersonX_chooseX_valuesXnameX_option1X_isXmarkoX_valuesXageXX_option2Xnone_valuesXnameXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Choose(__.Values("name")).Option(__.Is("marko"), __.Values("age")).Option(Pick.None, __.Values("name"))}}, + {"g_V_hasLabelXpersonX_chooseX_valuesXnameX_option1X_PeqXmarkoX_valuesXageXX_option2Xnone_valuesXnameXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Choose(__.Values("name")).Option(P.Eq("marko"), __.Values("age")).Option(Pick.None, __.Values("name"))}}, + {"g_V_localXpropertiesXlocationX_order_byXvalueX_limitX2XX_value", new List, ITraversal>> {(g,p) =>g.V().Local(__.Properties("location").Order().By(T.Value, Order.Asc).Range(0, 2)).Value()}}, + {"g_V_hasXlabel_personX_asXaX_localXoutXcreatedX_asXbXX_selectXa_bX_byXnameX_byXidX", new List, ITraversal>> {(g,p) =>g.V().Has(T.Label, "person").As("a").Local(__.Out("created").As("b")).Select("a", "b").By("name").By(T.Id)}}, + {"g_V_localXoutE_countX", new List, ITraversal>> {(g,p) =>g.V().Local(__.OutE().Count())}}, + {"g_VX1X_localXoutEXknowsX_limitX1XX_inV_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Local(__.OutE("knows").Limit(1)).InV().Values("name")}}, + {"g_V_localXbothEXcreatedX_limitX1XX_otherV_name", new List, ITraversal>> {(g,p) =>g.V().Local(__.BothE("created").Limit(1)).OtherV().Values("name")}}, + {"g_VX4X_localXbothEX1_createdX_limitX1XX", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).Local(__.BothE("created").Limit(1))}}, + {"g_VX4X_localXbothEXknows_createdX_limitX1XX", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).Local(__.BothE("knows", "created").Limit(1))}}, + {"g_VX4X_localXbothE_limitX1XX_otherV_name", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).Local(__.BothE().Limit(1)).OtherV().Values("name")}}, + {"g_VX4X_localXbothE_limitX2XX_otherV_name", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).Local(__.BothE().Limit(2)).OtherV().Values("name")}}, + {"g_V_localXinEXknowsX_limitX2XX_outV_name", new List, ITraversal>> {(g,p) =>g.V().Local(__.InE("knows").Limit(2)).OutV().Values("name")}}, + {"g_V_localXmatchXproject__created_person__person_name_nameX_selectXname_projectX_by_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Match(__.As("project").In("created").As("person"), __.As("person").Values("name").As("name"))).Select("name", "project").By().By("name")}}, + {"g_V_in_barrier_localXcountX", new List, ITraversal>> {(g,p) =>g.V().In().Barrier().Local(__.Count())}}, + {"g_V_localXout_in_simplePathX_path", new List, ITraversal>> {(g,p) =>g.V().Local(__.Out().In().SimplePath()).Path()}}, + {"g_withSackX0LX_V_in_barrier_localXsackXsumX_byXageXX_sack", new List, ITraversal>> {(g,p) =>g.WithSack(0l).V().In().Barrier().Local(__.Sack(Operator.Sum).By("age")).Sack()}}, + {"g_V_localXout_localXcountXX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Out().Local(__.Count()))}}, + {"g_V_unionXoutE_count_localXinE_countXX", new List, ITraversal>> {(g,p) =>g.V().Union(__.OutE().Count(), __.Local(__.InE().Count()))}}, + {"g_VX2X_optionalXoutXknowsXX", new List, ITraversal>> {(g,p) =>g.V(p["vid2"]).Optional(__.Out("knows"))}}, + {"g_VX2X_optionalXinXknowsXX", new List, ITraversal>> {(g,p) =>g.V(p["vid2"]).Optional(__.In("knows"))}}, + {"g_V_hasLabelXpersonX_optionalXoutXknowsX_optionalXoutXcreatedXXX_path", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Optional(__.Out("knows").Optional(__.Out("created"))).Path()}}, + {"g_V_optionalXout_optionalXoutXX_path", new List, ITraversal>> {(g,p) =>g.V().Optional(__.Out().Optional(__.Out())).Path()}}, + {"g_VX1X_optionalXaddVXdogXX_label", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V(p["vid1"]).Optional(__.AddV((string) "dog")).Label(), (g,p) =>g.V()}}, + {"g_V_repeatXoutX_timesX2X_emit_path", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out()).Times(2).Emit().Path()}}, + {"g_V_repeatXoutX_timesX2X_repeatXinX_timesX2X_name", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out()).Times(2).Repeat(__.In()).Times(2).Values("name")}}, + {"g_V_repeatXoutE_inVX_timesX2X_path_by_name_by_label", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.OutE().InV()).Times(2).Path().By("name").By(T.Label)}}, + {"g_V_repeatXoutX_timesX2X", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out()).Times(2)}}, + {"g_V_repeatXoutX_timesX2X_emit", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out()).Times(2).Emit()}}, + {"g_VX1X_timesX2X_repeatXoutX_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Times(2).Repeat(__.Out()).Values("name")}}, + {"g_V_emit_timesX2X_repeatXoutX_path", new List, ITraversal>> {(g,p) =>g.V().Emit().Times(2).Repeat(__.Out()).Path()}}, + {"g_V_emit_repeatXoutX_timesX2X_path", new List, ITraversal>> {(g,p) =>g.V().Emit().Repeat(__.Out()).Times(2).Path()}}, + {"g_VX1X_emitXhasXlabel_personXX_repeatXoutX_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Emit(__.Has(T.Label, "person")).Repeat(__.Out()).Values("name")}}, + {"g_V_repeatXgroupCountXmX_byXnameX_outX_timesX2X_capXmX", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.GroupCount("m").By("name").Out()).Times(2).Cap("m")}}, + {"g_VX1X_repeatXgroupCountXmX_byXloopsX_outX_timesX3X_capXmX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Repeat(__.GroupCount("m").By(__.Loops()).Out()).Times(3).Cap("m")}}, + {"g_V_repeatXbothX_timesX10X_asXaX_out_asXbX_selectXa_bX", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Both()).Times(10).As("a").Out().As("b").Select("a", "b").Count()}}, + {"g_VX1X_repeatXoutX_untilXoutE_count_isX0XX_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Repeat(__.Out()).Until(__.OutE().Count().Is(0)).Values("name")}}, + {"g_V_hasXname_markoX_repeatXoutE_inV_simplePathX_untilXhasXname_rippleXX_path_byXnameX_byXlabelX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "marko").Repeat(__.OutE().InV().SimplePath()).Until(__.Has("name", "ripple")).Path().By("name").By(T.Label)}}, + {"g_V_hasXloop_name_loopX_repeatXinX_timesX5X_path_by_name", new List, ITraversal>> {(g,p) =>g.V().Has("loops", "name", "loop").Repeat(__.In()).Times(5).Path().By("name")}}, + {"g_V_repeatXout_repeatXout_order_byXname_descXX_timesX1XX_timesX1X_limitX1X_path_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out().Repeat(__.Out().Order().By("name", Order.Desc)).Times(1)).Times(1).Limit(1).Path().By("name")}}, + {"g_V_repeatXoutXknowsXX_untilXrepeatXoutXcreatedXX_emitXhasXname_lopXXX_path_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out("knows")).Until(__.Repeat(__.Out("created")).Emit(__.Has("name", "lop"))).Path().By("name")}}, + {"g_V_repeatXrepeatXout_createdXX_untilXhasXname_rippleXXXemit_lang", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Repeat(__.Out("created")).Until(__.Has("name", "ripple"))).Emit().Values("lang")}}, + {"g_V_untilXconstantXtrueXX_repeatXrepeatXout_createdXX_untilXhasXname_rippleXXXemit_lang", new List, ITraversal>> {(g,p) =>g.V().Until(__.Constant(true)).Repeat(__.Repeat(__.Out("created")).Until(__.Has("name", "ripple"))).Emit().Values("lang")}}, + {"g_V_emit_repeatXa_outXknows_filterXloops_isX0XX_lang", new List, ITraversal>> {(g,p) =>g.V().Emit().Repeat("a", __.Out("knows").Filter(__.Loops("a").Is(0))).Values("lang")}}, + {"g_VX3X_repeatXbothX_createdXX_untilXloops_is_40XXemit_repeatXin_knowsXX_emit_loopsXisX1Xdedup_values", new List, ITraversal>> {(g,p) =>g.V(p["vid3"]).Repeat(__.Both("created")).Until(__.Loops().Is(40)).Emit(__.Repeat(__.In("knows")).Emit(__.Loops().Is(1))).Dedup().Values("name")}}, + {"g_VX1X_repeatXrepeatXunionXout_uses_out_traversesXX_whereXloops_isX0X_timesX1X_timeX2X_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Repeat(__.Repeat(__.Union(__.Out("uses"), __.Out("traverses")).Where(__.Loops().Is(0))).Times(1)).Times(2).Values("name")}}, + {"g_V_repeatXa_outXknows_repeatXb_outXcreatedX_filterXloops_isX0XX_emit_lang", new List, ITraversal>> {(g,p) =>g.V().Repeat("a", __.Out("knows").Repeat("b", __.Out("created").Filter(__.Loops("a").Is(0))).Emit()).Emit().Values("lang")}}, + {"g_VX6X_repeatXa_bothXcreatedX_simplePathX_emitXrepeatXb_bothXknowsXX_untilXloopsXbX_asXb_whereXloopsXaX_asXbX_hasXname_vadasXX_dedup_name", new List, ITraversal>> {(g,p) =>g.V(p["vid6"]).Repeat("a", __.Both("created").SimplePath()).Emit(__.Repeat("b", __.Both("knows")).Until(__.Loops("b").As("b").Where(__.Loops("a").As("b"))).Has("name", "vadas")).Dedup().Values("name")}}, + {"g_V_emit", new List, ITraversal>> {(g,p) =>g.V().Emit()}}, + {"g_V_untilXidentityX", new List, ITraversal>> {(g,p) =>g.V().Until(__.Identity())}}, + {"g_V_timesX5X", new List, ITraversal>> {(g,p) =>g.V().Times(5)}}, + {"g_V_hasXperson_name_markoX_repeatXoutXcreatedXX_timesX1X_name", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", "marko").Repeat(__.Out("created")).Times(1).Values("name")}}, + {"g_V_hasXperson_name_markoX_repeatXoutXcreatedXX_timesX0X_name", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", "marko").Repeat(__.Out("created")).Times(0).Values("name")}}, + {"g_V_hasXperson_name_markoX_timesX1X_repeatXoutXcreatedXX_name", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", "marko").Times(1).Repeat(__.Out("created")).Values("name")}}, + {"g_V_hasXperson_name_markoX_timesX0X_repeatXoutXcreatedXX_name", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", "marko").Times(0).Repeat(__.Out("created")).Values("name")}}, + {"g_V_repeatXboth_hasXnot_productiveXX_timesX3X_constantX1X", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Both().Has("not", "productive")).Times(3).Constant(1)}}, + {"g_V_hasXnot_productiveX_repeatXbothX_timesX3X_constantX1X", new List, ITraversal>> {(g,p) =>g.V().Has("not", "productive").Repeat(__.Both()).Times(3).Constant(1)}}, + {"g_VX1_2_3X_repeatXboth_barrierX_emit_timesX2X_path", new List, ITraversal>> {(g,p) =>g.V(p["vid1"], p["vid2"], p["vid3"]).Repeat(__.Both().Barrier()).Emit().Times(2).Path()}}, + {"g_V_order_byXname_descX_repeatXboth_simplePath_order_byXname_descXX_timesX2X_path", new List, ITraversal>> {(g,p) =>g.V().Order().By("name", Order.Desc).Repeat(__.Both().SimplePath().Order().By("name", Order.Desc)).Times(2).Path()}}, + {"g_V_repeatXboth_repeatXorder_byXnameXX_timesX1XX_timesX1X", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Both().Repeat(__.Order().By("name")).Times(1)).Times(1)}}, + {"g_V_order_byXname_descX_repeatXlocalXout_order_byXnameXXX_timesX1X", new List, ITraversal>> {(g,p) =>g.V().Order().By("name", Order.Desc).Repeat(__.Local(__.Out().Order().By("name"))).Times(1)}}, + {"g_V_order_byXnameX_repeatXlocalXboth_simplePath_order_byXnameXXX_timesX2X_path", new List, ITraversal>> {(g,p) =>g.V().Order().By("name").Repeat(__.Local(__.Both().SimplePath().Order().By("name"))).Times(2).Path()}}, + {"g_V_repeatXunionXoutXknowsX_order_byXnameX_inXcreatedX_order_byXnameXXX_timesX1X", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Union(__.Out("knows").Order().By("name"), __.In("created").Order().By("name"))).Times(1)}}, + {"g_V_repeatXaddV_propertyXgenerated_trueXX_timesX2X", new List, ITraversal>> {(g,p) =>g.AddV().Property("notGenerated", "true").AddV().Property("notGenerated", "true"), (g,p) =>g.V().Repeat(__.AddV().Property("generated", "true")).Times(2), (g,p) =>g.V().Has("notGenerated"), (g,p) =>g.V().Has("generated")}}, + {"g_V_repeatXdedup_bothX_timesX2X", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Dedup().Both()).Times(2)}}, + {"g_V_repeatXaggregateXxXX_timesX2X_selectXxX_limitX1X_unfold", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Aggregate("x")).Times(2).Select("x").Limit(1).Unfold()}}, + {"g_V_valuesXstrX_repeatXsplitXabcX_conjoinX_timesX2X", new List, ITraversal>> {(g,p) =>g.AddV().Property("str", "ababcczababcc").AddV().Property("str", "abcyabc"), (g,p) =>g.V().Values("str").Repeat(__.Split("abc").Conjoin((string) "")).Times(2)}}, + {"g_withSackX0X_V_repeatXsackXsumX_byXageX_whereXsack_isXltX59XXXX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithSack(0l).V().Repeat(__.Sack(Operator.Sum).By("age").Where(__.Sack().Is(P.Lt(59)))).Times(2)}}, + {"g_V_repeatXinjectXyXX_timesX2X", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Inject("y")).Times(2)}}, + {"g_V_repeatXunionXconstantXyX_limitX1X_identityXX_timesX3X", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Union(__.Constant("y").Limit(1), __.Identity())).Times(2)}}, + {"g_VX3X_repeatXout_order_byXperformancesX_tailX2XX_timesX1X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid3"]).Repeat(__.Out().Order().By("performances").Tail(2)).Times(1).Values("name")}}, + {"g_VX3X_repeatXout_order_byXperformancesX_tailX2XX_timesX2X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid3"]).Repeat(__.Out().Order().By("performances").Tail(2)).Times(2).Values("name")}}, + {"g_VX2X_repeatXout_localXorder_byXperformancesX_tailX1XXX_timesX1X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid2"]).Repeat(__.Out().Local(__.Order().By("performances").Tail(1))).Times(1).Values("name")}}, + {"g_VX250X_repeatXout_localXorder_byXperformancesX_tailX1XXX_timesX2X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid250"]).Repeat(__.Out().Local(__.Order().By("performances").Tail(1))).Times(2).Values("name")}}, + {"g_VX3X_repeatXout_order_byXperformancesX_tailX3X_limitX1XX_timesX2X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid3"]).Repeat(__.Out().Order().By("performances").Tail(3).Limit(1)).Times(2).Values("name")}}, + {"g_VX3X_repeatXout_order_byXperformances_descX_limitX5X_tailX1XX_timesX2X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid3"]).Repeat(__.Out().Order().By("performances", Order.Desc).Limit(5).Tail(1)).Times(2).Values("name")}}, + {"g_VX3X_repeatXoutE_order_byXweightX_tailX2X_inVX_timesX2X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid3"]).Repeat(__.OutE().Order().By("weight").Tail(2).InV()).Times(2).Values("name")}}, + {"g_VX3X_repeatXoutE_order_byXweight_descX_limitX2X_inVX_timesX2X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid3"]).Repeat(__.OutE().Order().By("weight", Order.Desc).Limit(2).InV()).Times(2).Values("name")}}, + {"g_V_emit_repeatXout_order_byXnameXX_timesX2X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Emit().Repeat(__.Out().Order().By("name")).Times(2).Values("name")}}, + {"g_V_localXemit_repeatXout_order_byXnameXX_timesX2X_valuesXnameXX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Emit().Repeat(__.Out().Order().By("name")).Times(2).Values("name"))}}, + {"g_V_emit_repeatXlocalXout_order_byXnameXXX_timesX2X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Emit().Repeat(__.Local(__.Out().Order().By("name"))).Times(2).Values("name")}}, + {"g_V_localXemit_repeatXlocalXout_order_byXnameXXX_timesX2X_valuesXnameXX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Emit().Repeat(__.Local(__.Out().Order().By("name"))).Times(2).Values("name"))}}, + {"g_V_emitXhasLabelXpersonXX_repeatXout_order_byXnameXX_timesX2X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Emit(__.HasLabel("person")).Repeat(__.Out().Order().By("name")).Times(2).Values("name")}}, + {"g_V_untilXloops_isX2XX_repeatXout_order_byXnameXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Until(__.Loops().Is(2)).Repeat(__.Out().Order().By("name")).Values("name")}}, + {"g_V_emit_repeatXdedupX_timesX1X", new List, ITraversal>> {(g,p) =>g.V().Emit().Repeat(__.Dedup()).Times(1)}}, + {"g_V_emit_repeatXdedupX_timesX2X", new List, ITraversal>> {(g,p) =>g.V().Emit().Repeat(__.Dedup()).Times(2)}}, + {"g_unionXX", new List, ITraversal>> {(g,p) =>g.Union()}}, + {"g_unionXV_name", new List, ITraversal>> {(g,p) =>g.Union(__.V().Values("name"))}}, + {"g_unionXVXv1X_VX4XX_name", new List, ITraversal>> {(g,p) =>g.Union(__.V(p["vid1"]), __.V(p["vid4"])).Values("name")}}, + {"g_unionXV_hasLabelXsoftwareX_V_hasLabelXpersonXX_name", new List, ITraversal>> {(g,p) =>g.Union(__.V().HasLabel("software"), __.V().HasLabel("person")).Values("name")}}, + {"g_unionXV_out_out_V_hasLabelXsoftwareXX_path", new List, ITraversal>> {(g,p) =>g.Union(__.V().Out().Out(), __.V().HasLabel("software")).Path()}}, + {"g_unionXV_out_out_V_hasLabelXsoftwareXX_path_byXnameX", new List, ITraversal>> {(g,p) =>g.Union(__.V().Out().Out(), __.V().HasLabel("software")).Path().By("name")}}, + {"g_unionXunionXV_out_outX_V_hasLabelXsoftwareXX_path_byXnameX", new List, ITraversal>> {(g,p) =>g.Union(__.Union(__.V().Out().Out()), __.V().HasLabel("software")).Path().By("name")}}, + {"g_unionXinjectX1X_injectX2X", new List, ITraversal>> {(g,p) =>g.Union(__.Inject(1), __.Inject(2))}}, + {"g_V_unionXconstantX1X_constantX2X_constantX3XX", new List, ITraversal>> {(g,p) =>g.V(p["vid2"]).Union(__.Constant(1), __.Constant(2), __.Constant(3))}}, + {"g_V_unionXout__inX_name", new List, ITraversal>> {(g,p) =>g.V().Union(__.Out(), __.In()).Values("name")}}, + {"g_VX1X_unionXrepeatXoutX_timesX2X__outX_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Union(__.Repeat(__.Out()).Times(2), __.Out()).Values("name")}}, + {"g_V_chooseXlabel_is_person__unionX__out_lang__out_nameX__in_labelX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Label().Is("person"), __.Union(__.Out().Values("lang"), __.Out().Values("name")), __.In().Label())}}, + {"g_V_chooseXlabel_is_person__unionX__out_lang__out_nameX__in_labelX_groupCount", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Label().Is("person"), __.Union(__.Out().Values("lang"), __.Out().Values("name")), __.In().Label()).GroupCount()}}, + {"g_V_unionXrepeatXunionXoutXcreatedX__inXcreatedXX_timesX2X__repeatXunionXinXcreatedX__outXcreatedXX_timesX2XX_label_groupCount", new List, ITraversal>> {(g,p) =>g.V().Union(__.Repeat(__.Union(__.Out("created"), __.In("created"))).Times(2), __.Repeat(__.Union(__.In("created"), __.Out("created"))).Times(2)).Label().GroupCount()}}, + {"g_VX1_2X_unionXoutE_count__inE_count__outE_weight_sumX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"], p["vid2"]).Union(__.OutE().Count(), __.InE().Count(), __.OutE().Values("weight").Sum())}}, + {"g_VX1_2X_localXunionXoutE_count__inE_count__outE_weight_sumXX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"], p["vid2"]).Local(__.Union(__.OutE().Count(), __.InE().Count(), __.OutE().Values("weight").Sum()))}}, + {"g_VX1_2X_localXunionXcountXX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"], p["vid2"]).Local(__.Union(__.Count()))}}, + {"g_unionXaddVXpersonX_propertyXname_aliceX_addVXpersonX_propertyXname_bobX_addVXpersonX_propertyXname_chrisX_name", new List, ITraversal>> {(g,p) =>g.Union(__.AddV((string) "person").Property("name", "alice"), __.AddV((string) "person").Property("name", "bob"), __.AddV((string) "person").Property("name", "chris")).Values("name")}}, + {"g_VX_hasLabelXpersonX_unionX_whereX_out_count_isXgtX2XXX_valuesXageX_notX_whereX_bothE_count_isXgt2XXX_valusXnameXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Union(__.Where(__.OutE().Count().Is(P.Gt(2))).Values("age"), __.Not(__.Where(__.OutE().Count().Is(P.Gt(2)))).Values("name"))}}, + {"g_V_valuesXintX_asNumberXGType_BIGDECIMALX_isXtypeOfXGType_BIGDECIMALXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 123), (g,p) =>g.V().Values("int").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal))}}, + {"g_V_valuesXintX_asNumberXGType_BIGDECIMALX_isXtypeOfXGType_BIGDECIMALXX_mathXaddX0_5XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 10), (g,p) =>g.V().Values("int").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Math("_ + 0.5")}}, + {"g_V_valuesXintX_asNumberXGType_BIGDECIMALX_isXtypeOfXGType_BIGDECIMALXX_isXgtX0XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 5), (g,p) =>g.V().Values("int").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Is(P.Gt(0))}}, + {"g_V_valuesXintX_asNumberXGType_BIGDECIMALX_isXtypeOfXGType_BIGDECIMALXX_sumX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 2).AddV((string) "data").Property("int", 3).AddV((string) "data").Property("int", 4), (g,p) =>g.V().Values("int").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Sum()}}, + {"g_V_valuesXintX_asNumberXGType_BIGDECIMALX_isXtypeOfXGType_BIGDECIMALXX_minX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 1).AddV((string) "data").Property("int", 5).AddV((string) "data").Property("int", 10), (g,p) =>g.V().Values("int").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Min()}}, + {"g_V_valuesXintX_asNumberXGType_BIGDECIMALX_isXtypeOfXGType_BIGDECIMALXX_maxX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 7).AddV((string) "data").Property("int", 14).AddV((string) "data").Property("int", 21), (g,p) =>g.V().Values("int").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Max()}}, + {"g_V_valuesXintX_asNumberXGType_BIGDECIMALX_isXtypeOfXGType_BIGDECIMALXX_project_byXidentityX_byXmathXmulX10XXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 6), (g,p) =>g.V().Values("int").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Project("original", "multiplied").By(__.Identity()).By(__.Math("_ * 10"))}}, + {"g_injectX99X_asNumberXGType_BIGDECIMALX_isXtypeOfXGType_BIGDECIMALXX_groupCount", new List, ITraversal>> {(g,p) =>g.Inject(99).AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).GroupCount()}}, + {"g_V_valuesXageX_isXtypeOfXGType_BIGDECIMALXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.BigDecimal))}}, + {"g_V_valuesXintX_asNumberXGType_BIGINTX_isXtypeOfXGType_BIGINTXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 456), (g,p) =>g.V().Values("int").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt))}}, + {"g_V_valuesXintX_asNumberXGType_BIGINTX_isXtypeOfXGType_BIGINTXX_mathXmulX1000XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 100), (g,p) =>g.V().Values("int").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Math("_ * 1000")}}, + {"g_V_valuesXintX_asNumberXGType_BIGINTX_isXtypeOfXGType_BIGINTXX_isXeqX42XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 42), (g,p) =>g.V().Values("int").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Is(P.Eq(42))}}, + {"g_V_valuesXintX_asNumberXGType_BIGINTX_isXtypeOfXGType_BIGINTXX_sumX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 10).AddV((string) "data").Property("int", 20).AddV((string) "data").Property("int", 30), (g,p) =>g.V().Values("int").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Sum()}}, + {"g_V_valuesXintX_asNumberXGType_BIGINTX_isXtypeOfXGType_BIGINTXX_minX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 5).AddV((string) "data").Property("int", 15).AddV((string) "data").Property("int", 25), (g,p) =>g.V().Values("int").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Min()}}, + {"g_V_valuesXintX_asNumberXGType_BIGINTX_isXtypeOfXGType_BIGINTXX_maxX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 100).AddV((string) "data").Property("int", 200).AddV((string) "data").Property("int", 300), (g,p) =>g.V().Values("int").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Max()}}, + {"g_V_valuesXintX_asNumberXGType_BIGINTX_isXtypeOfXGType_BIGINTXX_project_byXidentityX_byXmathXaddX999XXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 50), (g,p) =>g.V().Values("int").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Project("original", "added").By(__.Identity()).By(__.Math("_ + 999"))}}, + {"g_injectX777X_asNumberXGType_BIGINTX_isXtypeOfXGType_BIGINTXX_groupCount", new List, ITraversal>> {(g,p) =>g.Inject(777).AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).GroupCount()}}, + {"g_V_valuesXageX_isXtypeOfXGType_BIGINTXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.BigInt))}}, + {"g_injectXBinaryXAQIDXX", new List, ITraversal>> {(g,p) =>g.Inject(Convert.FromBase64String("AQID"))}}, + {"g_injectXBinaryXemptyXX", new List, ITraversal>> {(g,p) =>g.Inject(Convert.FromBase64String(""))}}, + {"g_injectXBinaryXAA_eqeqXX", new List, ITraversal>> {(g,p) =>g.Inject(Convert.FromBase64String("AA=="))}}, + {"g_valuesXblobX_isXtypeOfXGType_BINARYXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("blob", Convert.FromBase64String("AQID")), (g,p) =>g.V().Values("blob").Is(P.TypeOf(GType.Binary))}}, + {"g_injectXBinaryXAQIDXX_isXeqXBinaryXAQIDXXX", new List, ITraversal>> {(g,p) =>g.Inject(Convert.FromBase64String("AQID")).Is(P.Eq(Convert.FromBase64String("AQID")))}}, + {"g_V_valuesXintX_asNumberXGType_BYTEX_isXtypeOfXGType_BYTEXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 5), (g,p) =>g.V().Values("int").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte))}}, + {"g_V_valuesXintX_asNumberXGType_BYTEX_isXtypeOfXGType_BYTEXX_mathXaddX20XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 10), (g,p) =>g.V().Values("int").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Math("_ + 20")}}, + {"g_V_valuesXintX_asNumberXGType_BYTEX_isXtypeOfXGType_BYTEXX_isXltX10XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 7), (g,p) =>g.V().Values("int").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Is(P.Lt(10))}}, + {"g_V_valuesXintX_asNumberXGType_BYTEX_isXtypeOfXGType_BYTEXX_sumX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 1).AddV((string) "data").Property("int", 2).AddV((string) "data").Property("int", 3), (g,p) =>g.V().Values("int").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Sum()}}, + {"g_V_valuesXintX_asNumberXGType_BYTEX_isXtypeOfXGType_BYTEXX_project_byXidentityX_byXmathXmulX2XXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 8), (g,p) =>g.V().Values("int").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Project("original", "doubled").By(__.Identity()).By(__.Math("_ * 2"))}}, + {"g_V_valuesXintX_asNumberXGType_BYTEX_isXtypeOfXGType_BYTEXX_chooseXisXeqX12XX_constantXtwelveX_constantXotherXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 12), (g,p) =>g.V().Values("int").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Choose(__.Is(P.Eq(12)), __.Constant("twelve"), __.Constant("other"))}}, + {"g_injectX15X_asNumberXGType_BYTEX_isXtypeOfXGType_BYTEXX_groupCount", new List, ITraversal>> {(g,p) =>g.Inject(15).AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).GroupCount()}}, + {"g_V_valuesXageX_isXtypeOfXGType_BYTEXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Byte))}}, + {"g_injectXaX", new List, ITraversal>> {(g,p) =>g.Inject('a')}}, + {"g_injectXescaped_quoteX", new List, ITraversal>> {(g,p) =>g.Inject('\"')}}, + {"g_injectXunicodeX", new List, ITraversal>> {(g,p) =>g.Inject('\u00E9')}}, + {"g_valuesXinitialX_isXtypeOfXGType_CHARXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("initial", 'a'), (g,p) =>g.V().Values("initial").Is(P.TypeOf(GType.Char))}}, + {"g_injectXaX_isXeqXaXX", new List, ITraversal>> {(g,p) =>g.Inject('a').Is(P.Eq('a'))}}, + {"g_V_valuesXdatetimeX_isXtypeOfXGType_DATETIMEXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "event").Property("datetime", DateTimeOffset.Parse("2023-08-08T00:00Z")), (g,p) =>g.V().Values("datetime").Is(P.TypeOf(GType.DateTime))}}, + {"g_V_valuesXdatetimeX_isXtypeOfXGType_DATETIMEXX_project_byXidentityX_byXdateAddXDT_dayX1XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "event").Property("datetime", DateTimeOffset.Parse("2023-08-08T00:00Z")), (g,p) =>g.V().Values("datetime").Is(P.TypeOf(GType.DateTime)).Project("original", "nextDay").By(__.Identity()).By(__.DateAdd(DT.Day, 1))}}, + {"g_V_valuesXdatetimeX_isXtypeOfXGType_DATETIMEXX_dateDiffXdatetimeX2023_08_10XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "event").Property("datetime", DateTimeOffset.Parse("2023-08-08T00:00Z")), (g,p) =>g.V().Values("datetime").Is(P.TypeOf(GType.DateTime)).DateDiff(DateTimeOffset.Parse("2023-08-08T00:00:30Z"))}}, + {"g_V_valuesXdatetimeX_isXtypeOfXGType_DATETIMEXX_whereXisXgtXdatetimeX2020_01_01XXXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "event").Property("datetime", DateTimeOffset.Parse("2023-08-08T12:34:56Z")), (g,p) =>g.V().Values("datetime").Is(P.TypeOf(GType.DateTime)).Where(__.Is(P.Gt(DateTimeOffset.Parse("2020-01-01T00:00Z"))))}}, + {"g_V_valuesXdatetimeX_isXtypeOfXGType_DATETIMEXX_chooseXisXeqXdatetimeX2023_08_08XXXX_constantXmatchX_constantXnoMatchXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "event").Property("datetime", DateTimeOffset.Parse("2023-08-08T00:00Z")), (g,p) =>g.V().Values("datetime").Is(P.TypeOf(GType.DateTime)).Choose(__.Is(P.Eq(DateTimeOffset.Parse("2023-08-08T00:00Z"))), __.Constant("match"), __.Constant("noMatch"))}}, + {"g_V_valuesXdatetimeX_isXtypeOfXGType_DATETIMEXX_localXaggregateXaX_capXaX", new List, ITraversal>> {(g,p) =>g.AddV((string) "event").Property("datetime", DateTimeOffset.Parse("2023-08-08T00:00Z")), (g,p) =>g.V().Values("datetime").Is(P.TypeOf(GType.DateTime)).Local(__.Aggregate("a")).Cap("a")}}, + {"g_injectXdatetimeX_isXtypeOfXGType_DATETIMEXX_aggregateXaX_capXaX", new List, ITraversal>> {(g,p) =>g.Inject(DateTimeOffset.Parse("2023-08-08T00:00Z")).Is(P.TypeOf(GType.DateTime)).Aggregate("a").Cap("a")}}, + {"g_injectXdatetimeX_isXtypeOfXGType_DATETIMEXX_groupCount", new List, ITraversal>> {(g,p) =>g.Inject(DateTimeOffset.Parse("2023-08-08T12:34:56Z")).Is(P.TypeOf(GType.DateTime)).GroupCount()}}, + {"g_V_valuesXdoubleX_isXtypeOfXGType_DOUBLEXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("double", 1.5d), (g,p) =>g.V().Values("double").Is(P.TypeOf(GType.Double))}}, + {"g_E_valuesXweightX_isXtypeOfXGType_DOUBLEXX", new List, ITraversal>> {(g,p) =>g.E().Values("weight").Is(P.TypeOf(GType.Double))}}, + {"g_V_valuesXdoubleX_isXtypeOfXGType_DOUBLEXX_mathXceilX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("double", 2.7d), (g,p) =>g.V().Values("double").Is(P.TypeOf(GType.Double)).Math("ceil _")}}, + {"g_V_valuesXdoubleX_isXtypeOfXGType_DOUBLEXX_isXgtX1_0XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("double", 0.8d).AddV((string) "data").Property("double", 1.2d), (g,p) =>g.V().Values("double").Is(P.TypeOf(GType.Double)).Is(P.Gt(1.0d))}}, + {"g_V_valuesXdoubleX_isXtypeOfXGType_DOUBLEXX_sumX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("double", 1.5d).AddV((string) "data").Property("double", 2.5d).AddV((string) "data").Property("double", 3.5d), (g,p) =>g.V().Values("double").Is(P.TypeOf(GType.Double)).Sum()}}, + {"g_V_valuesXdoubleX_isXtypeOfXGType_DOUBLEXX_minX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("double", 0.1d).AddV((string) "data").Property("double", 0.5d).AddV((string) "data").Property("double", 0.9d), (g,p) =>g.V().Values("double").Is(P.TypeOf(GType.Double)).Min()}}, + {"g_V_valuesXdoubleX_isXtypeOfXGType_DOUBLEXX_maxX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("double", 2.1d).AddV((string) "data").Property("double", 3.7d).AddV((string) "data").Property("double", 1.9d), (g,p) =>g.V().Values("double").Is(P.TypeOf(GType.Double)).Max()}}, + {"g_V_valuesXdoubleX_isXtypeOfXGType_DOUBLEXX_meanX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("double", 2.1d).AddV((string) "data").Property("double", 4.1d).AddV((string) "data").Property("double", 6.1d), (g,p) =>g.V().Values("double").Is(P.TypeOf(GType.Double)).Mean()}}, + {"g_V_valuesXdoubleX_isXtypeOfXGType_DOUBLEXX_order_byXascX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("double", 3.2d).AddV((string) "data").Property("double", 1.8d).AddV((string) "data").Property("double", 2.5d), (g,p) =>g.V().Values("double").Is(P.TypeOf(GType.Double)).Order().By(Order.Asc)}}, + {"g_injectX5_5dX_isXtypeOfXGType_DOUBLEXX_groupCount", new List, ITraversal>> {(g,p) =>g.Inject(5.5d).Is(P.TypeOf(GType.Double)).GroupCount()}}, + {"g_V_valuesXageX_isXtypeOfXGType_DOUBLEXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Double))}}, + {"g_injectXDurationX9000_0XX", new List, ITraversal>> {(g,p) =>g.Inject(TimeSpan.FromTicks(90000000000L))}}, + {"g_injectXDurationX0_0XX", new List, ITraversal>> {(g,p) =>g.Inject(TimeSpan.FromTicks(0L))}}, + {"g_injectXDurationX0_500000000XX", new List, ITraversal>> {(g,p) =>g.Inject(TimeSpan.FromTicks(5000000L))}}, + {"g_injectXDurationX30_0XX", new List, ITraversal>> {(g,p) =>g.Inject(TimeSpan.FromTicks(300000000L))}}, + {"g_injectXDurationX30_0_falseXX", new List, ITraversal>> {(g,p) =>g.Inject(TimeSpan.FromTicks(300000000L).Negate())}}, + {"g_injectXDurationX1_500000000_falseXX", new List, ITraversal>> {(g,p) =>g.Inject(TimeSpan.FromTicks(15000000L).Negate())}}, + {"g_valuesXlengthX_isXtypeOfXGType_DURATIONXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("length", TimeSpan.FromTicks(90000000000L)), (g,p) =>g.V().Values("length").Is(P.TypeOf(GType.Duration))}}, + {"g_injectXDurationX9000_0XX_isXgtXDurationX3600_0XXX", new List, ITraversal>> {(g,p) =>g.Inject(TimeSpan.FromTicks(90000000000L)).Is(P.Gt(TimeSpan.FromTicks(36000000000L)))}}, + {"g_V_valuesXfloatX_isXtypeOfXGType_FLOATXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("float", 2.5), (g,p) =>g.V().Values("float").AsNumber(GType.Float).Is(P.TypeOf(GType.Float))}}, + {"g_V_valuesXfloatX_isXtypeOfXGType_FLOATXX_mathXmulX2XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("float", 3.0), (g,p) =>g.V().Values("float").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Math("_ * 2")}}, + {"g_V_valuesXfloatX_isXtypeOfXGType_FLOATXX_isXeqX1_5XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("float", 1.5), (g,p) =>g.V().Values("float").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Is(P.Eq(1.5))}}, + {"g_V_valuesXfloatX_isXtypeOfXGType_FLOATXX_sumX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("float", 1.5).AddV((string) "data").Property("float", 2.5).AddV((string) "data").Property("float", 3.0), (g,p) =>g.V().Values("float").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Sum()}}, + {"g_V_valuesXfloatX_isXtypeOfXGType_FLOATXX_project_byXidentityX_byXmathXmulX10XXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("float", 4.5), (g,p) =>g.V().Values("float").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Project("original", "multiplied").By(__.Identity()).By(__.Math("_ * 10"))}}, + {"g_V_valuesXfloatX_isXtypeOfXGType_FLOATXX_whereXisXgtX1_0XXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("float", 0.5).AddV((string) "data").Property("float", 1.5), (g,p) =>g.V().Values("float").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Where(__.Is(P.Gt(1.0)))}}, + {"g_V_valuesXfloatX_isXtypeOfXGType_FLOATXX_chooseXisXeqX3_0XX_constantXthreeX_constantXotherXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("float", 3.0), (g,p) =>g.V().Values("float").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Choose(__.Is(P.Eq(3.0)), __.Constant("three"), __.Constant("other"))}}, + {"g_injectX2_0fX_isXtypeOfXGType_FLOATXX_groupCount", new List, ITraversal>> {(g,p) =>g.Inject(2.0).AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).GroupCount()}}, + {"g_V_valuesXageX_isXtypeOfXGType_FLOATXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Float))}}, + {"g_V_valuesXageX_isXtypeOfXGType_INTXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Int))}}, + {"g_V_hasXage_typeOfXGType_INTXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Has("age", P.TypeOf(GType.Int)).Values("name")}}, + {"g_V_whereXvaluesXageX_isXtypeOfXGType_INTXXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Where(__.Values("age").Is(P.TypeOf(GType.Int))).Values("name")}}, + {"g_V_valuesXageX_isXtypeOfXGType_INTXX_mathXincX", new List, ITraversal>> {(g,p) =>g.V().Values("name", "age").Is(P.TypeOf(GType.Int)).Math("_ + 1")}}, + {"g_V_valuesXageX_isXtypeOfXGType_INTXX_sumX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Int)).Sum()}}, + {"g_V_valuesXageX_isXtypeOfXGType_INTXX_minX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Int)).Min()}}, + {"g_V_valuesXageX_isXtypeOfXGType_INTXX_maxX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Int)).Max()}}, + {"g_V_valuesXageX_isXtypeOfXGType_INTXX_meanX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Int)).Mean()}}, + {"g_V_valuesXageX_isXtypeOfXGType_INTXX_order_byXdescX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Int)).Order().By(Order.Desc)}}, + {"g_V_valuesXageX_isXtypeOfXGType_INTXX_groupCount", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Int)).GroupCount()}}, + {"g_V_valuesXnameX_fold_isXtypeOfXGType_LISTXX_count", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Is(P.TypeOf(GType.List)).Count()}}, + {"g_V_valuesXageX_isXtypeOfXGType_LISTXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.List))}}, + {"g_V_valuesXlistX_isXtypeOfXGType_LISTXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("list", new List { "a", "b", "c" }), (g,p) =>g.V().Values("list").Is(P.TypeOf(GType.List))}}, + {"g_V_hasXlist_typeOfXGType_LISTXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("name", "test").Property("list", new List { 1, 2, 3 }), (g,p) =>g.V().Has("list", P.TypeOf(GType.List)).Values("name")}}, + {"g_V_valuesXlistX_isXtypeOfXGType_LISTXX_unfold", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("list", new List { "x", "y", "z" }), (g,p) =>g.V().Values("list").Is(P.TypeOf(GType.List)).Unfold()}}, + {"g_V_valuesXlistX_isXtypeOfXGType_LISTXX_countXlocalX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("list", new List { 1, 2, 3, 4, 5 }), (g,p) =>g.V().Values("list").Is(P.TypeOf(GType.List)).Count(Scope.Local)}}, + {"g_V_valuesXlistX_isXtypeOfXGType_LISTXX_unfold_rangeX1_3X", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("list", new List { "first", "second", "third", "fourth" }), (g,p) =>g.V().Values("list").Is(P.TypeOf(GType.List)).Unfold().Range(1, 3)}}, + {"g_V_valuesXlistX_isXtypeOfXGType_LISTXX_project_byXidentityX_byXcountXlocalX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("list", new List { "apple", "banana" }), (g,p) =>g.V().Values("list").Is(P.TypeOf(GType.List)).Project("original", "size").By(__.Identity()).By(__.Count(Scope.Local))}}, + {"g_V_valuesXlistX_isXtypeOfXGType_LISTXX_whereXcountXlocalX_isXgtX2XXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("list", new List { 1 }).AddV((string) "data").Property("list", new List { 1, 2, 3 }), (g,p) =>g.V().Values("list").Is(P.TypeOf(GType.List)).Where(__.Count(Scope.Local).Is(P.Gt(2)))}}, + {"g_injectXlistX_isXtypeOfXGType_LISTXX_groupCount", new List, ITraversal>> {(g,p) =>g.Inject(new List { "test" }).Is(P.TypeOf(GType.List)).GroupCount()}}, + {"g_V_valuesXlongX_isXtypeOfXGType_LONGXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("long", 1l), (g,p) =>g.V().Values("long").Is(P.TypeOf(GType.Long))}}, + {"g_V_hasXlong_typeOfXGType_LONGXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("name", "test").Property("long", 1l), (g,p) =>g.V().Has("long", P.TypeOf(GType.Long)).Values("name")}}, + {"g_V_valuesXlongX_isXtypeOfXGType_LONGXX_mathXmulX2XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("long", 5l), (g,p) =>g.V().Values("long").Is(P.TypeOf(GType.Long)).Math("_ * 2")}}, + {"g_V_valuesXlongX_isXtypeOfXGType_LONGXX_isXgtX5XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("long", 10l), (g,p) =>g.V().Values("long").Is(P.TypeOf(GType.Long)).Is(P.Gt(5l))}}, + {"g_V_valuesXlongX_isXtypeOfXGType_LONGXX_sumX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("long", 1l).AddV((string) "data").Property("long", 2l).AddV((string) "data").Property("long", 3l), (g,p) =>g.V().Values("long").Is(P.TypeOf(GType.Long)).Sum()}}, + {"g_V_valuesXlongX_isXtypeOfXGType_LONGXX_localXaggregateXaXX_capXaX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("long", 100l), (g,p) =>g.V().Values("long").Is(P.TypeOf(GType.Long)).Local(__.Aggregate("a")).Cap("a")}}, + {"g_V_hasLabelXpersonX_valueMap_isXtypeOfXGType_MAPXX_count", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").ValueMap().Is(P.TypeOf(GType.Map)).Count()}}, + {"g_V_groupCount_byXlabelX_isXtypeOfXGType_MAPX", new List, ITraversal>> {(g,p) =>g.V().GroupCount().By(T.Label).Is(P.TypeOf(GType.Map))}}, + {"g_V_valuesXageX_isXtypeOfXGType_MAPXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Map))}}, + {"g_V_valuesXmapX_isXtypeOfXGType_MAPXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("map", new Dictionary {{ "key1", "1" }, { "key2", "2" }}), (g,p) =>g.V().Values("map").Is(P.TypeOf(GType.Map))}}, + {"g_V_hasXmap_typeOfXGType_MAPXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("name", "test").Property("map", new Dictionary {{ "a", 1 }, { "b", 2 }}), (g,p) =>g.V().Has("map", P.TypeOf(GType.Map)).Values("name")}}, + {"g_V_valuesXmapX_isXtypeOfXGType_MAPXX_countXlocalX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("map", new Dictionary {{ "a", 1 }, { "b", 2 }, { "c", 3 }}), (g,p) =>g.V().Values("map").Is(P.TypeOf(GType.Map)).Count(Scope.Local)}}, + {"g_V_valuesXmapX_isXtypeOfXGType_MAPXX_selectXvaluesX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("map", new Dictionary {{ "city", "NYC" }, { "country", "USA" }}), (g,p) =>g.V().Values("map").Is(P.TypeOf(GType.Map)).Select(Column.Values)}}, + {"g_V_valuesXmapX_isXtypeOfXGType_MAPXX_whereX_countXlocalX_isXgtX1XXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("map", new Dictionary {{ "single", "value" }}).AddV((string) "data").Property("map", new Dictionary {{ "key1", "1" }, { "key2", "2" }}), (g,p) =>g.V().Values("map").Is(P.TypeOf(GType.Map)).Where(__.Count(Scope.Local).Is(P.Gt(1)))}}, + {"g_V_valuesXmapX_isXtypeOfXGType_MAPXX_foldX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("map", new Dictionary {{ "a", 1 }}).AddV((string) "data").Property("map", new Dictionary {{ "b", 2 }, { "c", 3 }}), (g,p) =>g.V().Values("map").Is(P.TypeOf(GType.Map)).Fold()}}, + {"g_V_valueXnameX_aggregateXxX_capXxX_isXtypeOfXGType_SETX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Aggregate("x").Cap("x").Is(P.TypeOf(GType.Set))}}, + {"g_V_valuesXageX_isXtypeOfXGType_SETXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Set))}}, + {"g_V_valueMap_selectXkeysX_dedup_isXtypeOfXGType_SETXX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Select(Column.Keys).Dedup().Is(P.TypeOf(GType.Set))}}, + {"g_V_valuesXsetX_isXtypeOfXGType_SETXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("set", new HashSet { "a", "b", "c" }), (g,p) =>g.V().Values("set").Is(P.TypeOf(GType.Set))}}, + {"g_V_hasXset_typeOfXGType_SETXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("name", "test").Property("set", new HashSet { 1, 2, 3 }), (g,p) =>g.V().Has("set", P.TypeOf(GType.Set)).Values("name")}}, + {"g_V_valuesXsetX_isXtypeOfXGType_SETXX_unfold", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("set", new HashSet { "x", "y", "z" }), (g,p) =>g.V().Values("set").Is(P.TypeOf(GType.Set)).Unfold()}}, + {"g_V_valuesXsetX_isXtypeOfXGType_SETXX_countXlocalX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("set", new HashSet { 1, 2, 3, 4, 5 }), (g,p) =>g.V().Values("set").Is(P.TypeOf(GType.Set)).Count(Scope.Local)}}, + {"g_V_valuesXsetX_isXtypeOfXGType_SETXX_whereXcountXlocalX_isXeqX3XXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("set", new HashSet { 1, 2 }).AddV((string) "data").Property("set", new HashSet { 1, 2, 3 }), (g,p) =>g.V().Values("set").Is(P.TypeOf(GType.Set)).Where(__.Count(Scope.Local).Is(P.Eq(3)))}}, + {"g_V_valuesXsetX_isXtypeOfXGType_SETXX_unfold_limitX2X", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("set", new HashSet { "first", "second", "third", "fourth" }), (g,p) =>g.V().Values("set").Is(P.TypeOf(GType.Set)).Unfold().Limit(2)}}, + {"g_injectXsetX_isXtypeOfXGType_SETXX_groupCount", new List, ITraversal>> {(g,p) =>g.Inject(new HashSet { "test" }).Is(P.TypeOf(GType.Set)).GroupCount()}}, + {"g_V_valuesXintX_asNumberXGType_SHORTX_isXtypeOfXGType_SHORTXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 100), (g,p) =>g.V().Values("int").AsNumber(GType.Short).Is(P.TypeOf(GType.Short))}}, + {"g_V_valuesXintX_asNumberXGType_SHORTX_isXtypeOfXGType_SHORTXX_mathXmulX10XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 50), (g,p) =>g.V().Values("int").AsNumber(GType.Short).Is(P.TypeOf(GType.Short)).Math("_ * 10")}}, + {"g_V_valuesXintX_asNumberXGType_SHORTX_isXtypeOfXGType_SHORTXX_isXbetweenX20_30XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 25), (g,p) =>g.V().Values("int").AsNumber(GType.Short).Is(P.TypeOf(GType.Short)).Is(P.Between(20, 30))}}, + {"g_V_valuesXintX_asNumberXGType_SHORTX_isXtypeOfXGType_SHORTXX_minX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 10).AddV((string) "data").Property("int", 20).AddV((string) "data").Property("int", 30), (g,p) =>g.V().Values("int").AsNumber(GType.Short).Is(P.TypeOf(GType.Short)).Min()}}, + {"g_V_valuesXintX_asNumberXGType_SHORTX_isXtypeOfXGType_SHORTXX_maxX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("int", 15).AddV((string) "data").Property("int", 25).AddV((string) "data").Property("int", 35), (g,p) =>g.V().Values("int").AsNumber(GType.Short).Is(P.TypeOf(GType.Short)).Max()}}, + {"g_injectX42X_asNumberXGType_SHORTX_isXtypeOfXGType_SHORTXX_storeXaX_capXaX", new List, ITraversal>> {(g,p) =>g.Inject(42).AsNumber(GType.Short).Is(P.TypeOf(GType.Short))}}, + {"g_V_valuesXageX_isXtypeOfXGType_SHORTXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Short))}}, + {"g_V_valuesXuuidX_isXtypeOfXGType_UUIDXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("uuid", Guid.Parse("f47af10b-58cc-4372-a567-0f02b2f3d479")), (g,p) =>g.V().Values("uuid").Is(P.TypeOf(GType.UUID))}}, + {"g_V_hasXuuid_typeOfXGType_UUIDXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("name", "test").Property("uuid", Guid.Parse("f47af10b-58cc-4372-a567-0f02b2f3d479")), (g,p) =>g.V().Has("uuid", P.TypeOf(GType.UUID)).Values("name")}}, + {"g_V_valuesXuuidX_isXtypeOfXGType_UUIDXX_project_byXidentityX_byXconstantXuuidXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("uuid", Guid.Parse("f47af10b-58cc-4372-a567-0f02b2f3d479")), (g,p) =>g.V().Values("uuid").Is(P.TypeOf(GType.UUID)).Project("original", "type").By(__.Identity()).By(__.Constant("uuid"))}}, + {"g_V_valuesXuuidX_isXtypeOfXGType_UUIDXX_whereXisXeqXuuidXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("uuid", Guid.Parse("f47af10b-58cc-4372-a567-0f02b2f3d479")), (g,p) =>g.V().Values("uuid").Is(P.TypeOf(GType.UUID)).Where(__.Is(P.Eq(Guid.Parse("f47af10b-58cc-4372-a567-0f02b2f3d479"))))}}, + {"g_V_valuesXuuidX_isXtypeOfXGType_UUIDXX_chooseXisXeqXuuidXX_constantXmatchX_constantXnoMatchXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("uuid", Guid.Parse("f47af10b-58cc-4372-a567-0f02b2f3d479")), (g,p) =>g.V().Values("uuid").Is(P.TypeOf(GType.UUID)).Choose(__.Is(P.Eq(Guid.Parse("f47af10b-58cc-4372-a567-0f02b2f3d479"))), __.Constant("match"), __.Constant("noMatch"))}}, + {"g_V_valuesXuuidX_isXtypeOfXGType_UUIDXX_localXaggregateXaXX_capXaX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("uuid", Guid.Parse("f47af10b-58cc-4372-a567-0f02b2f3d479")), (g,p) =>g.V().Values("uuid").Is(P.TypeOf(GType.UUID)).Local(__.Aggregate("a")).Cap("a")}}, + {"g_V_valuesXuuidX_isXtypeOfXGType_UUIDXX_aggregateXaX_capXaX", new List, ITraversal>> {(g,p) =>g.AddV((string) "data").Property("uuid", Guid.Parse("f47af10b-58cc-4372-a567-0f02b2f3d479")), (g,p) =>g.V().Values("uuid").Is(P.TypeOf(GType.UUID)).Aggregate("a").Cap("a")}}, + {"g_injectXuuidX_isXtypeOfXGType_UUIDXX_groupCount", new List, ITraversal>> {(g,p) =>g.Inject(Guid.Parse("f47af10b-58cc-4372-a567-0f02b2f3d479")).Is(P.TypeOf(GType.UUID)).GroupCount()}}, + {"g_injectXUUIDX47af10b_58cc_4372_a567_0f02b2f3d479XX", new List, ITraversal>> {(g,p) =>g.Inject(Guid.Parse("f47af10b-58cc-4372-a567-0f02b2f3d479"))}}, + {"g_injectXUUIDXXX", new List, ITraversal>> {(g,p) =>g.Inject(Guid.NewGuid())}}, + {"g_V_aggregateXxX_byXnameX_byXageX_capXxX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("x").By("name").By("age").Cap("x")}}, + {"g_V_localXaggregateXxX_byXnameXX_byXageX_capXxX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Aggregate("x").By("name").By("age")).Cap("x")}}, + {"g_V_valuesXageX_allXgtX32XX", new List, ITraversal>> {(g,p) =>g.V().Values("age").All(P.Gt(32))}}, + {"g_V_valuesXageX_whereXisXP_gtX33XXX_fold_allXgtX33XX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Where(__.Is(P.Gt(33))).Fold().All(P.Gt(33))}}, + {"g_V_valuesXageX_order_byXdescX_fold_allXgtX10XX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Order().By(Order.Desc).Fold().All(P.Gt(10))}}, + {"g_V_valuesXageX_order_byXdescX_fold_allXgtX30XX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Order().By(Order.Desc).Fold().All(P.Gt(30))}}, + {"g_injectXabc_bcdX_allXeqXbcdXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "abc", "bcd" }).All(P.Eq("bcd"))}}, + {"g_injectXbcd_bcdX_allXeqXbcdXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "bcd", "bcd" }).All(P.Eq("bcd"))}}, + {"g_injectXnull_abcX_allXTextP_startingWithXaXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { null, "abc" }).All(TextP.StartingWith("a"))}}, + {"g_injectX5_8_10_10_7X_allXgteX7XX", new List, ITraversal>> {(g,p) =>g.Inject(new List { 5, 8, 10 }, new List { 10, 7 }).All(P.Gte(7))}}, + {"g_injectXnullX_allXeqXnullXX", new List, ITraversal>> {(g,p) =>g.Inject(null).All(P.Eq(null))}}, + {"g_injectX7X_allXeqX7XX", new List, ITraversal>> {(g,p) =>g.Inject(7).All(P.Eq(7))}}, + {"g_injectXnull_nullX_allXeqXnullXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { null, null }).All(P.Eq(null))}}, + {"g_injectX3_threeX_allXeqX3XX", new List, ITraversal>> {(g,p) =>g.Inject(new List { 3, "three" }).All(P.Eq(3))}}, + {"g_V_andXhasXage_gt_27X__outE_count_gte_2X_name", new List, ITraversal>> {(g,p) =>g.V().And(__.Has("age", P.Gt(27)), __.OutE().Count().Is(P.Gte(2))).Values("name")}}, + {"g_V_andXoutE__hasXlabel_personX_and_hasXage_gte_32XX_name", new List, ITraversal>> {(g,p) =>g.V().And(__.OutE(), __.Has(T.Label, "person").And().Has("age", P.Gte(32))).Values("name")}}, + {"g_V_asXaX_outXknowsX_and_outXcreatedX_inXcreatedX_asXaX_name", new List, ITraversal>> {(g,p) =>g.V().As("a").Out("knows").And().Out("created").In("created").As("a").Values("name")}}, + {"g_V_asXaX_andXselectXaX_selectXaXX", new List, ITraversal>> {(g,p) =>g.V().As("a").And(__.Select("a"), __.Select("a"))}}, + {"g_V_hasXname_markoX_and_hasXname_markoX_and_hasXname_markoX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "marko").And().Has("name", "marko").And().Has("name", "marko")}}, + {"g_V_valuesXageX_anyXgtX32XX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Any(P.Gt(32))}}, + {"g_V_valuesXageX_order_byXdescX_fold_anyXeqX29XX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Order().By(Order.Desc).Fold().Any(P.Eq(29))}}, + {"g_V_valuesXageX_order_byXdescX_fold_anyXgtX10XX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Order().By(Order.Desc).Fold().Any(P.Gt(10))}}, + {"g_V_valuesXageX_order_byXdescX_fold_anyXgtX42XX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Order().By(Order.Desc).Fold().Any(P.Gt(42))}}, + {"g_injectXabc_cdeX_anyXeqXbcdXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "abc", "cde" }).Any(P.Eq("bcd"))}}, + {"g_injectXabc_bcdX_anyXeqXbcdXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "abc", "bcd" }).Any(P.Eq("bcd"))}}, + {"g_injectXnull_abcX_anyXTextP_startingWithXaXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { null, "abc" }).Any(TextP.StartingWith("a"))}}, + {"g_injectX5_8_10_10_7X_anyXeqX7XX", new List, ITraversal>> {(g,p) =>g.Inject(new List { 5, 8, 10 }, new List { 10, 7 }).Any(P.Eq(7))}}, + {"g_injectXnullX_anyXeqXnullXX", new List, ITraversal>> {(g,p) =>g.Inject(null).Any(P.Eq(null))}}, + {"g_injectX7X_anyXeqX7XX", new List, ITraversal>> {(g,p) =>g.Inject(7).Any(P.Eq(7))}}, + {"g_injectXnull_nullX_anyXeqXnullXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { null, null }).Any(P.Eq(null))}}, + {"g_injectX3_threeX_anyXeqX3XX", new List, ITraversal>> {(g,p) =>g.Inject(new List { 3, "three" }).Any(P.Eq(3))}}, + {"g_V_coinX1_0X", new List, ITraversal>> {(g,p) =>g.V().Coin(1.0)}}, + {"g_V_coinX1X", new List, ITraversal>> {(g,p) =>g.V().Coin(1)}}, + {"g_V_coinX0X", new List, ITraversal>> {(g,p) =>g.V().Coin(0.0)}}, + {"g_withStrategiesXSeedStrategyX_V_order_byXnameX_coinX50X", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SeedStrategy(seed: 999999)).V().Order().By("name").Coin(0.5)}}, + {"g_VX1X_outXcreatedX_inXcreatedX_cyclicPath", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("created").In("created").CyclicPath()}}, + {"g_VX1X_both_both_cyclicPath_byXageX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Both().Both().CyclicPath().By("age")}}, + {"g_VX1X_outXcreatedX_inXcreatedX_cyclicPath_path", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("created").In("created").CyclicPath().Path()}}, + {"g_VX1X_asXaX_outXcreatedX_asXbX_inXcreatedX_asXcX_cyclicPath_fromXaX_toXbX_path", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Out("created").As("b").In("created").As("c").CyclicPath().From("a").To("b").Path()}}, + {"g_injectX0X_V_both_coalesceXhasXname_markoX_both_constantX0XX_cyclicPath_path", new List, ITraversal>> {(g,p) =>g.Inject(0).V().Both().Coalesce(__.Has("name", "marko").Both(), __.Constant(0)).CyclicPath().Path()}}, + {"g_V_out_in_valuesXnameX_fold_dedupXlocalX_unfold", new List, ITraversal>> {(g,p) =>g.V().Out().In().Values("name").Fold().Dedup(Scope.Local).Unfold()}}, + {"g_V_out_in_valuesXnameX_fold_dedupXlocalX", new List, ITraversal>> {(g,p) =>g.V().Out().Map(__.In().Values("name").Fold().Dedup(Scope.Local))}}, + {"g_V_out_asXxX_in_asXyX_selectXx_yX_byXnameX_fold_dedupXlocal_x_yX_unfold", new List, ITraversal>> {(g,p) =>g.V().Out().As("x").In().As("y").Select("x", "y").By("name").Fold().Dedup(Scope.Local, "x", "y").Unfold()}}, + {"g_V_both_dedup_name", new List, ITraversal>> {(g,p) =>g.V().Both().Dedup().Values("name")}}, + {"g_V_both_hasXlabel_softwareX_dedup_byXlangX_name", new List, ITraversal>> {(g,p) =>g.V().Both().Has(T.Label, "software").Dedup().By("lang").Values("name")}}, + {"g_V_both_both_name_dedup", new List, ITraversal>> {(g,p) =>g.V().Both().Both().Values("name").Dedup()}}, + {"g_V_both_both_dedup", new List, ITraversal>> {(g,p) =>g.V().Both().Both().Dedup()}}, + {"g_V_both_both_dedup_byXlabelX", new List, ITraversal>> {(g,p) =>g.V().Both().Both().Dedup().By(T.Label)}}, + {"g_V_group_byXlabelX_byXbothE_weight_dedup_foldX", new List, ITraversal>> {(g,p) =>g.V().Group().By(T.Label).By(__.BothE().Values("weight").Dedup().Order().By(Order.Asc).Fold())}}, + {"g_V_asXaX_both_asXbX_dedupXa_bX_byXlabelX_selectXa_bX", new List, ITraversal>> {(g,p) =>g.V().As("a").Both().As("b").Dedup("a", "b").By(T.Label).Select("a", "b")}}, + {"g_V_asXaX_out_asXbX_in_asXcX_dedupXa_bX_path_byXnameX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").As("a").AddV((string) "person").Property("name", "bob").As("b").AddV((string) "person").Property("name", "carol").As("c").AddE((string) "knows").From("a").To("b").AddE((string) "likes").From("a").To("b").AddE((string) "likes").From("a").To("c"), (g,p) =>g.V().As("a").Out().As("b").In().As("c").Dedup("a", "b").Path().By("name")}}, + {"g_V_outE_asXeX_inV_asXvX_selectXeX_order_byXweight_ascX_selectXvX_valuesXnameX_dedup", new List, ITraversal>> {(g,p) =>g.V().OutE().As("e").InV().As("v").Select("e").Order().By("weight", Order.Asc).Select("v").Values("name").Dedup()}}, + {"g_V_both_both_dedup_byXoutE_countX_name", new List, ITraversal>> {(g,p) =>g.V().Both().Both().Dedup().By(__.OutE().Count()).Values("name")}}, + {"g_V_groupCount_selectXvaluesX_unfold_dedup", new List, ITraversal>> {(g,p) =>g.V().GroupCount().Select(Column.Values).Unfold().Dedup()}}, + {"g_V_asXaX_repeatXbothX_timesX3X_emit_name_asXbX_group_byXselectXaXX_byXselectXbX_dedup_order_foldX_selectXvaluesX_unfold_dedup", new List, ITraversal>> {(g,p) =>g.V().As("a").Repeat(__.Both()).Times(3).Emit().Values("name").As("b").Group().By(__.Select("a")).By(__.Select("b").Dedup().Order().Fold()).Select(Column.Values).Unfold().Dedup()}}, + {"g_V_repeatXdedupX_timesX2X_count", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Dedup()).Times(2).Count()}}, + {"g_V_both_group_by_byXout_dedup_foldX_unfold_selectXvaluesX_unfold_out_order_byXnameX_limitX1X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Both().Group().By().By(__.Out().Dedup().Fold()).Unfold().Select(Column.Values).Unfold().Out().Order().By("name").Limit(1).Values("name")}}, + {"g_V_bothE_properties_dedup_count", new List, ITraversal>> {(g,p) =>g.V().BothE().Properties().Dedup().Count()}}, + {"g_V_both_properties_dedup_count", new List, ITraversal>> {(g,p) =>g.V().Both().Properties().Dedup().Count()}}, + {"g_V_both_properties_properties_dedup_count", new List, ITraversal>> {(g,p) =>g.V().Both().Properties().Properties().Dedup().Count()}}, + {"g_V_order_byXname_descX_barrier_dedup_age_name", new List, ITraversal>> {(g,p) =>g.V().Order().By("name", Order.Desc).Barrier().Dedup().By("age").Values("name")}}, + {"g_withStrategiesXProductiveByStrategyX_V_order_byXname_descX_barrier_dedup_age_name", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Order().By("name", Order.Desc).Barrier().Dedup().By("age").Values("name")}}, + {"g_V_both_dedup_age_name", new List, ITraversal>> {(g,p) =>g.V().Both().Dedup().By("age").Values("name")}}, + {"g_VX1X_asXaX_both_asXbX_both_asXcX_dedupXa_bX_age_selectXa_b_cX_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Both().As("b").Both().As("c").Dedup("a", "b").By("age").Select("a", "b", "c").By("name")}}, + {"g_VX1X_valuesXageX_dedupXlocalX_unfold", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Values("age").Dedup(Scope.Local).Unfold()}}, + {"g_V_properties_dedup_count", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "josh").AddV((string) "person").Property("name", "josh").AddV((string) "person").Property("name", "josh"), (g,p) =>g.V().Properties("name").Dedup().Count()}}, + {"g_V_properties_dedup_byXvalueX_count", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "josh").AddV((string) "person").Property("name", "josh").AddV((string) "person").Property("name", "josh"), (g,p) =>g.V().Properties("name").Dedup().By(T.Value).Count()}}, + {"g_V_both_hasXlabel_softwareX_dedup_byXlangX_byXnameX_name", new List, ITraversal>> {(g,p) =>g.V().Both().Has(T.Label, "software").Dedup().By("lang").By("name").Values("name")}}, + {"g_V_count_discard", new List, ITraversal>> {(g,p) =>g.V().Count().Discard()}}, + {"g_V_hasLabelXpersonX_discard", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Discard()}}, + {"g_VX1X_outXcreatedX_discard", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("created").Discard()}}, + {"g_V_discard", new List, ITraversal>> {(g,p) =>g.V().Discard()}}, + {"g_V_discard_discard", new List, ITraversal>> {(g,p) =>g.V().Discard().Discard()}}, + {"g_V_discard_fold", new List, ITraversal>> {(g,p) =>g.V().Discard().Fold()}}, + {"g_V_discard_fold_discard", new List, ITraversal>> {(g,p) =>g.V().Discard().Fold().Discard()}}, + {"g_V_discard_fold_constantX1X", new List, ITraversal>> {(g,p) =>g.V().Discard().Fold().Constant(1)}}, + {"g_V_projectXxX_byXcoalesceXage_isXgtX29XX_discardXX_selectXxX", new List, ITraversal>> {(g,p) =>g.V().Project("x").By(__.Coalesce(__.Values("age").Is(P.Gt(29)), __.Discard())).Select("x")}}, + {"g_V_drop", new List, ITraversal>> {(g,p) =>g.AddV().As("a").AddV().As("b").AddE((string) "knows").To("a"), (g,p) =>g.V().Drop(), (g,p) =>g.V(), (g,p) =>g.E()}}, + {"g_V_outE_drop", new List, ITraversal>> {(g,p) =>g.AddV().As("a").AddV().As("b").AddE((string) "knows").To("a"), (g,p) =>g.V().OutE().Drop(), (g,p) =>g.V(), (g,p) =>g.E()}}, + {"g_V_properties_drop", new List, ITraversal>> {(g,p) =>g.AddV().Property("name", "bob").AddV().Property("name", "alice"), (g,p) =>g.V().Properties().Drop(), (g,p) =>g.V(), (g,p) =>g.V().Properties()}}, + {"g_E_propertiesXweightX_drop", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.E().Properties("weight").Drop(), (g,p) =>g.E().Properties()}}, + {"g_V_properties_propertiesXstartTimeX_drop", new List, ITraversal>> {(g,p) =>g.AddV().Property("name", "bob").Property(Cardinality.List, "location", "ny", "startTime", 2014, "endTime", 2016).Property(Cardinality.List, "location", "va", "startTime", 2016).AddV().Property("name", "alice").Property(Cardinality.List, "location", "va", "startTime", 2014, "endTime", 2016).Property(Cardinality.List, "location", "ny", "startTime", 2016), (g,p) =>g.V().Properties().Properties("startTime").Drop(), (g,p) =>g.V().Properties().Properties(), (g,p) =>g.V().Properties().Properties("startTime")}}, + {"g_V_filterXisX0XX", new List, ITraversal>> {(g,p) =>g.V().Filter(__.Is(0))}}, + {"g_V_filterXconstantX0XX", new List, ITraversal>> {(g,p) =>g.V().Filter(__.Constant(0))}}, + {"g_V_filterXhasXlang_javaXX", new List, ITraversal>> {(g,p) =>g.V().Filter(__.Has("lang", "java"))}}, + {"g_VX1X_filterXhasXage_gtX30XXX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Filter(__.Has("age", P.Gt(30)))}}, + {"g_VX2X_filterXhasXage_gtX30XXX", new List, ITraversal>> {(g,p) =>g.V(p["vid2"]).Filter(__.Has("age", P.Gt(30)))}}, + {"g_VX1X_out_filterXhasXage_gtX30XXX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Filter(__.Has("age", P.Gt(30)))}}, + {"g_V_filterXhasXname_startingWithXm_or_pXX", new List, ITraversal>> {(g,p) =>g.V().Filter(__.Has("name", TextP.StartingWith("m").Or(TextP.StartingWith("p"))))}}, + {"g_E_filterXisX0XX", new List, ITraversal>> {(g,p) =>g.E().Filter(__.Is(0))}}, + {"g_E_filterXconstantX0XX", new List, ITraversal>> {(g,p) =>g.E().Filter(__.Constant(0))}}, + {"g_VX1X_hasXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Has("name")}}, + {"g_VX1X_hasXcircumferenceX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Has("circumference")}}, + {"g_VX1X_hasXname_markoX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Has("name", "marko")}}, + {"g_VX1X_hasXname_markovarX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Has("name", new GValue("xx1", (object) p["xx1"]))}}, + {"g_VX2X_hasXname_markoX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Has("name", "marko")}}, + {"g_V_hasXname_markoX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "marko")}}, + {"g_V_hasXname_blahX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "blah")}}, + {"g_V_hasXage_gt_30X", new List, ITraversal>> {(g,p) =>g.V().Has("age", P.Gt(30))}}, + {"g_VX1X_hasXage_gt_30X", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Has("age", P.Gt(30))}}, + {"g_V_hasXpersonvar_age_gt_30X", new List, ITraversal>> {(g,p) =>g.V().Has(new GValue("xx1", (string) p["xx1"]), "age", P.Gt(30))}}, + {"g_VX4X_hasXage_gt_30X", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).Has("age", P.Gt(30))}}, + {"g_VXv1X_hasXage_gt_30X", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Has("age", P.Gt(30))}}, + {"g_VXv4X_hasXage_gt_30X", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).Has("age", P.Gt(30))}}, + {"g_VX1X_out_hasXid_2X", new List, ITraversal>> {(g,p) =>g.V(p["vid2"]).Has("age", P.Gt(30))}}, + {"g_V_hasXblahX", new List, ITraversal>> {(g,p) =>g.V().Has("blah")}}, + {"g_V_hasXperson_name_markoX_age", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", "marko").Values("age")}}, + {"g_V_hasXperson_name_markovarX_age", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", new GValue("xx1", (object) p["xx1"])).Values("age")}}, + {"g_V_hasXpersonvar_name_markoX_age", new List, ITraversal>> {(g,p) =>g.V().Has(new GValue("xx1", (string) p["xx1"]), "name", "marko").Values("age")}}, + {"g_VX1X_outE_hasXweight_inside_0_06X_inV", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE().Has("weight", P.Inside(0.0, 0.6)).InV()}}, + {"g_EX11X_outV_outE_hasXid_10X", new List, ITraversal>> {(g,p) =>g.E(p["eid11"]).OutV().OutE().Has(T.Id, new GValue("eid10", (object) p["eid10"]))}}, + {"g_EX11X_outV_outE_hasXid_10AsStringX", new List, ITraversal>> {(g,p) =>g.E(p["eid11"]).OutV().OutE().Has(T.Id, new GValue("eid10", (object) p["eid10"]))}}, + {"g_V_hasXlocationX", new List, ITraversal>> {(g,p) =>g.V().Has("location")}}, + {"g_V_hasXage_withinX27X_count", new List, ITraversal>> {(g,p) =>g.V().Has("age", P.Within(27)).Count()}}, + {"g_V_hasXage_withinX27_nullX_count", new List, ITraversal>> {(g,p) =>g.V().Has("age", P.Within(27, null)).Count()}}, + {"g_V_hasXage_withinX27_29X_count", new List, ITraversal>> {(g,p) =>g.V().Has("age", P.Within(27, 29)).Count()}}, + {"g_V_hasXage_withoutX27X_count", new List, ITraversal>> {(g,p) =>g.V().Has("age", P.Without(27)).Count()}}, + {"g_V_hasXage_withoutX27_29X_count", new List, ITraversal>> {(g,p) =>g.V().Has("age", P.Without(27, 29)).Count()}}, + {"g_V_hasXperson_age_withinX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "age", P.Within())}}, + {"g_V_hasXperson_age_withoutX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "age", P.Without())}}, + {"g_V_hasXname_containingXarkXX", new List, ITraversal>> {(g,p) =>g.V().Has("name", TextP.Containing("ark"))}}, + {"g_V_hasXname_startingWithXmarXX", new List, ITraversal>> {(g,p) =>g.V().Has("name", TextP.StartingWith("mar"))}}, + {"g_V_hasXname_endingWithXasXX", new List, ITraversal>> {(g,p) =>g.V().Has("name", TextP.EndingWith("as"))}}, + {"g_V_hasXperson_name_containingXoX_andXltXmXXX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", TextP.Containing("o").And(P.Lt("m")))}}, + {"g_V_hasXname_gtXmX_andXcontainingXoXXX", new List, ITraversal>> {(g,p) =>g.V().Has("name", P.Gt("m").And(TextP.Containing("o")))}}, + {"g_V_hasXname_not_containingXarkXX", new List, ITraversal>> {(g,p) =>g.V().Has("name", TextP.NotContaining("ark"))}}, + {"g_V_hasXname_not_startingWithXmarXX", new List, ITraversal>> {(g,p) =>g.V().Has("name", TextP.NotStartingWith("mar"))}}, + {"g_V_hasXname_not_endingWithXasXX", new List, ITraversal>> {(g,p) =>g.V().Has("name", TextP.NotEndingWith("as"))}}, + {"g_V_hasXname_regexXrMarXX", new List, ITraversal>> {(g,p) =>g.V().Has("name", TextP.Regex("^mar"))}}, + {"g_V_hasXname_notRegexXrMarXX", new List, ITraversal>> {(g,p) =>g.V().Has("name", TextP.NotRegex("^mar"))}}, + {"g_V_hasXname_regexXTinkerXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "software").Property("name", "Apache TinkerPop©"), (g,p) =>g.V().Has("name", TextP.Regex("Tinker")).Values("name")}}, + {"g_V_hasXname_regexXTinkerUnicodeXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "software").Property("name", "Apache TinkerPop©"), (g,p) =>g.V().Has("name", TextP.Regex("Tinker.*\u00A9")).Values("name")}}, + {"g_V_hasXp_neqXvXX", new List, ITraversal>> {(g,p) =>g.V().Has("p", P.Neq("v"))}}, + {"g_V_hasXage_gtX18X_andXltX30XXorXgtx35XXX", new List, ITraversal>> {(g,p) =>g.V().Has("age", P.Gt(18).And(P.Lt(30)).Or(P.Gt(35)))}}, + {"g_V_hasXage_gtX18X_andXltX30XXorXltx35XXX", new List, ITraversal>> {(g,p) =>g.V().Has("age", P.Gt(18).And(P.Lt(30)).And(P.Lt(35)))}}, + {"g_V_hasXk_withinXcXX_valuesXkX", new List, ITraversal>> {(g,p) =>g.AddV().Property("k", "轉注").AddV().Property("k", "✦").AddV().Property("k", "♠").AddV().Property("k", "A"), (g,p) =>g.V().Has("k", P.Within("轉注", "✦", "♠")).Values("k")}}, + {"g_V_hasXnullX", new List, ITraversal>> {(g,p) =>g.V().Has(null)}}, + {"g_V_hasXnull_testnullkeyX", new List, ITraversal>> {(g,p) =>g.V().Has((string) null, "test-null-key")}}, + {"g_E_hasXnullX", new List, ITraversal>> {(g,p) =>g.E().Has(null)}}, + {"g_V_hasXlabel_personX", new List, ITraversal>> {(g,p) =>g.V().Has(T.Label, "person")}}, + {"g_V_hasXlabel_eqXpersonXX", new List, ITraversal>> {(g,p) =>g.V().Has(T.Label, P.Eq("person"))}}, + {"g_V_hasXname_nullX", new List, ITraversal>> {(g,p) =>g.V().Has("name", (object) null)}}, + {"g_V_hasIdXemptyX_count", new List, ITraversal>> {(g,p) =>g.V().HasId(p["xx1"]).Count()}}, + {"g_V_hasIdXwithinXemptyXX_count", new List, ITraversal>> {(g,p) =>g.V().HasId(P.Within(new List { })).Count()}}, + {"g_V_hasIdXwithoutXemptyXX_count", new List, ITraversal>> {(g,p) =>g.V().HasId(P.Without(new List { })).Count()}}, + {"g_V_notXhasIdXwithinXemptyXXX_count", new List, ITraversal>> {(g,p) =>g.V().Not(__.HasId(P.Within(new List { }))).Count()}}, + {"g_V_hasIdXnullX", new List, ITraversal>> {(g,p) =>g.V().HasId(null)}}, + {"g_V_hasIdXeqXnullXX", new List, ITraversal>> {(g,p) =>g.V().HasId(P.Eq(null))}}, + {"g_V_hasIdX2_nullX", new List, ITraversal>> {(g,p) =>g.V().HasId(p["vid2"], null)}}, + {"g_V_hasIdXmarkovar_vadasvarX", new List, ITraversal>> {(g,p) =>g.V().HasId(p["vid1"], p["vid2"])}}, + {"g_V_hasIdXmarkovar_vadasvar_petervarX", new List, ITraversal>> {(g,p) =>g.V().HasId(p["vid1"], p["vid2"])}}, + {"g_V_hasIdX2AsString_nullX", new List, ITraversal>> {(g,p) =>g.V().HasId(p["vid2"], null)}}, + {"g_V_hasIdX1AsString_2AsString_nullX", new List, ITraversal>> {(g,p) =>g.V().HasId(p["vid1"], p["vid2"], null)}}, + {"g_V_hasIdXnull_2X", new List, ITraversal>> {(g,p) =>g.V().HasId(null, p["vid2"])}}, + {"g_V_hasIdX1X_hasIdX2X", new List, ITraversal>> {(g,p) =>g.V().HasId(p["vid1"]).HasId(p["vid2"])}}, + {"g_V_in_hasIdXneqX1XX", new List, ITraversal>> {(g,p) =>g.V().In().HasId(P.Neq(p["xx1"]))}}, + {"g_VX1X_out_hasIdX2X", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().HasId(p["vid2"])}}, + {"g_VX1X_out_hasXid_2_3X", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().HasId(p["vid2"], p["vid3"])}}, + {"g_VX1X_out_hasXid_2AsString_3AsStringX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().HasId(p["vid2"], p["vid3"])}}, + {"g_VX1AsStringX_out_hasXid_2AsStringX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().HasId(p["vid2"])}}, + {"g_VX1X_out_hasXid_2_3X_inList", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().HasId(p["xx1"])}}, + {"g_V_hasXid_1_2X", new List, ITraversal>> {(g,p) =>g.V().HasId(p["vid1"], p["vid2"])}}, + {"g_V_hasXid_1_2X_inList", new List, ITraversal>> {(g,p) =>g.V().HasId(p["xx1"])}}, + {"g_V_both_dedup_properties_hasKeyXageX_value", new List, ITraversal>> {(g,p) =>g.V().Both().Properties().Dedup().HasKey("age").Value()}}, + {"g_V_both_properties_dedup_hasKeyXageX_hasValueXgtX30XX_value", new List, ITraversal>> {(g,p) =>g.V().Both().Properties().Dedup().HasKey("age").HasValue(P.Gt(30)).Value(), (g,p) =>g.V().Both().Properties().Dedup().HasKey("age").HasValue(P.Gt(30)).Value()}}, + {"g_V_bothE_properties_dedup_hasKeyXweightX_value", new List, ITraversal>> {(g,p) =>g.V().BothE().Properties().Dedup().HasKey("weight").Value()}}, + {"g_V_bothE_properties_dedup_hasKeyXweightX_hasValueXltX0d3XX_value", new List, ITraversal>> {(g,p) =>g.V().BothE().Properties().Dedup().HasKey("weight").HasValue(P.Lt(0.3)).Value(), (g,p) =>g.V().BothE().Properties().Dedup().HasKey("weight").HasValue(P.Lt(0.3)).Value()}}, + {"g_V_properties_hasKeyXnullX", new List, ITraversal>> {(g,p) =>g.V().Properties().HasKey((string) null)}}, + {"g_V_properties_hasKeyXnull_nullX", new List, ITraversal>> {(g,p) =>g.V().Properties().HasKey(null, null)}}, + {"g_V_properties_hasKeyXnull_ageX_value", new List, ITraversal>> {(g,p) =>g.V().Properties().HasKey(null, "age").Value()}}, + {"g_E_properties_hasKeyXnullX", new List, ITraversal>> {(g,p) =>g.E().Properties().HasKey((string) null)}}, + {"g_E_properties_hasKeyXnull_nullX", new List, ITraversal>> {(g,p) =>g.E().Properties().HasKey(null, null)}}, + {"g_E_properties_hasKeyXnull_weightX_value", new List, ITraversal>> {(g,p) =>g.E().Properties().HasKey(null, "weight").Value()}}, + {"g_EX7X_hasLabelXknowsX", new List, ITraversal>> {(g,p) =>g.E(p["eid7"]).HasLabel("knows")}}, + {"g_E_hasLabelXknowsX", new List, ITraversal>> {(g,p) =>g.E().HasLabel("knows")}}, + {"g_E_hasLabelXuses_traversesX", new List, ITraversal>> {(g,p) =>g.E().HasLabel("uses", "traverses")}}, + {"g_V_hasLabelXperson_software_blahX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person", "software", "blah")}}, + {"g_V_hasLabelXperson_softwarevarX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person", (string) p["xx1"])}}, + {"g_V_hasLabelXpersonX_hasLabelXsoftwareX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").HasLabel("software")}}, + {"g_V_hasLabelXpersonvarX_hasLabelXsoftwareX", new List, ITraversal>> {(g,p) =>g.V().HasLabel(new GValue("xx1", (string) p["xx1"])).HasLabel("software")}}, + {"g_V_hasLabelXpersonvar_softwarevarX", new List, ITraversal>> {(g,p) =>g.V().HasLabel(new GValue("xx1", (string) p["xx1"]), new GValue("xx2", (string) p["xx2"]))}}, + {"g_V_hasLabelXpersonX_hasXage_notXlteX10X_andXnotXbetweenX11_20XXXX_andXltX29X_orXeqX35XXXX_name", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Has("age", P.Not(P.Lte(10).And(P.Not(P.Between(11, 20)))).And(P.Lt(29).Or(P.Eq(35)))).Values("name")}}, + {"g_V_hasLabelXnullX", new List, ITraversal>> {(g,p) =>g.V().HasLabel((string) null)}}, + {"g_V_hasXlabel_nullX", new List, ITraversal>> {(g,p) =>g.V().Has(T.Label, (object) null)}}, + {"g_V_hasLabelXnull_nullX", new List, ITraversal>> {(g,p) =>g.V().HasLabel((string) null, (string) null)}}, + {"g_V_hasLabelXnull_personX", new List, ITraversal>> {(g,p) =>g.V().HasLabel((string) null, "person")}}, + {"g_E_hasLabelXnullX", new List, ITraversal>> {(g,p) =>g.E().HasLabel((string) null)}}, + {"g_E_hasXlabel_nullX", new List, ITraversal>> {(g,p) =>g.E().Has(T.Label, (object) null)}}, + {"g_V_properties_hasLabelXnullX", new List, ITraversal>> {(g,p) =>g.V().Properties().HasLabel((string) null)}}, + {"g_V_hasNotXageX_name", new List, ITraversal>> {(g,p) =>g.V().HasNot("age").Values("name")}}, + {"g_V_properties_hasValueXnullX", new List, ITraversal>> {(g,p) =>g.V().Properties().HasValue((object) null)}}, + {"g_V_properties_hasValueXnull_nullX", new List, ITraversal>> {(g,p) =>g.V().Properties().HasValue(null, null)}}, + {"g_V_properties_hasValueXnull_joshX_value", new List, ITraversal>> {(g,p) =>g.V().Properties().HasValue(null, "josh").Value()}}, + {"g_V_valuesXageX_isX32X", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(32)}}, + {"g_V_valuesXageX_isX32varX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(p["xx1"])}}, + {"g_V_valuesXageX_isXlte_30X", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.Lte(30))}}, + {"g_V_valuesXageX_isXlte_30varX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.Lte(p["xx1"]))}}, + {"g_V_valuesXageX_isXgte_29X_isXlt_34X", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.Gte(29)).Is(P.Lt(34))}}, + {"g_V_valuesXageX_isXgte_29vaarX_isXlt_34varX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.Gte(p["xx1"])).Is(P.Lt(p["xx2"]))}}, + {"g_V_whereXinXcreatedX_count_isX1XX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Where(__.In("created").Count().Is(1)).Values("name")}}, + {"g_V_whereXinXcreatedX_count_isXgte_2XX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Where(__.In("created").Count().Is(P.Gte(2))).Values("name")}}, + {"g_V_valuesXageX_noneXgtX32XX", new List, ITraversal>> {(g,p) =>g.V().Values("age").None(P.Gt(32))}}, + {"g_V_valuesXageX_whereXisXP_gtX33XXX_fold_noneXlteX33XX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Where(__.Is(P.Gt(33))).Fold().None(P.Lte(33))}}, + {"g_V_valuesXageX_order_byXdescX_fold_noneXltX10XX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Order().By(Order.Desc).Fold().None(P.Lt(10))}}, + {"g_V_valuesXageX_order_byXdescX_fold_noneXgtX30XX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Order().By(Order.Desc).Fold().None(P.Gt(30))}}, + {"g_injectXabc_bcdX_noneXeqXbcdXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "abc", "bcd" }).None(P.Eq("bcd"))}}, + {"g_injectXbcd_bcdX_noneXeqXabcXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "bcd", "bcd" }).None(P.Eq("abc"))}}, + {"g_injectXnull_bcdX_noneXP_eqXabcXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { null, "bcd" }).None(P.Eq("abc"))}}, + {"g_injectX5_8_10_10_7X_noneXltX7XX", new List, ITraversal>> {(g,p) =>g.Inject(new List { 5, 8, 10 }, new List { 10, 7 }).None(P.Lt(7))}}, + {"g_injectXnullX_noneXeqXnullXX", new List, ITraversal>> {(g,p) =>g.Inject(null).None(P.Eq(null))}}, + {"g_injectX7X_noneXeqX7XX", new List, ITraversal>> {(g,p) =>g.Inject(7).None(P.Eq(7))}}, + {"g_injectXnull_1_emptyX_noneXeqXnullXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { null, 1 }, new List { }).None(P.Eq(null))}}, + {"g_injectXnull_nullX_noneXnotXnullXX", new List, ITraversal>> {(g,p) =>g.Inject(new List { null, null }).None(P.Neq(null))}}, + {"g_injectX3_threeX_noneXeqX3XX", new List, ITraversal>> {(g,p) =>g.Inject(new List { 3, "three" }).None(P.Eq(3))}}, + {"g_V_notXhasXage_gt_27XX_name", new List, ITraversal>> {(g,p) =>g.V().Not(__.Has("age", P.Gt(27))).Values("name")}}, + {"g_V_notXnotXhasXage_gt_27XXX_name", new List, ITraversal>> {(g,p) =>g.V().Not(__.Not(__.Has("age", P.Gt(27)))).Values("name")}}, + {"g_V_notXhasXname_gt_27XX_name", new List, ITraversal>> {(g,p) =>g.V().Not(__.Has("name", P.Gt(27))).Values("name")}}, + {"g_V_orXhasXage_gt_27X__outE_count_gte_2X_name", new List, ITraversal>> {(g,p) =>g.V().Or(__.Has("age", P.Gt(27)), __.OutE().Count().Is(P.Gte(2))).Values("name")}}, + {"g_V_orXoutEXknowsX__hasXlabel_softwareX_or_hasXage_gte_35XX_name", new List, ITraversal>> {(g,p) =>g.V().Or(__.OutE("knows"), __.Has(T.Label, "software").Or().Has("age", P.Gte(35))).Values("name")}}, + {"g_V_asXaX_orXselectXaX_selectXaXX", new List, ITraversal>> {(g,p) =>g.V().As("a").Or(__.Select("a"), __.Select("a"))}}, + {"g_VX1X_out_limitX2X", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Limit(2)}}, + {"g_VX1X_out_limitX2varX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Limit(new GValue("xx1", (long) p["xx1"]))}}, + {"g_V_localXoutE_limitX1X_inVX_limitX3X", new List, ITraversal>> {(g,p) =>g.V().Local(__.OutE().Limit(1)).InV().Limit(3)}}, + {"g_VX1X_outXknowsX_outEXcreatedX_rangeX0_1X_inV", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("knows").OutE("created").Range(0, 1).InV()}}, + {"g_VX1X_outXknowsX_outXcreatedX_rangeX0_1X", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("knows").Out("created").Range(0, 1)}}, + {"g_VX1X_outXcreatedX_inXcreatedX_rangeX1_3X", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("created").In("created").Range(1, 3)}}, + {"g_VX1X_outXcreatedX_inXcreatedX_rangeX1var_3varX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("created").In("created").Range(new GValue("xx1", (long) p["xx1"]), new GValue("xx2", (long) p["xx2"]))}}, + {"g_VX1X_outXcreatedX_inEXcreatedX_rangeX1_3X_outV", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("created").InE("created").Range(1, 3).OutV()}}, + {"g_V_repeatXbothX_timesX3X_rangeX5_11X", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Both()).Times(3).Range(5, 11)}}, + {"g_V_asXaX_in_asXbX_in_asXcX_selectXa_b_cX_byXnameX_limitXlocal_2X", new List, ITraversal>> {(g,p) =>g.V().As("a").In().As("b").In().As("c").Select("a", "b", "c").By("name").Limit(Scope.Local, 2)}}, + {"g_V_asXaX_in_asXbX_in_asXcX_selectXa_b_cX_byXnameX_limitXlocal_2varX", new List, ITraversal>> {(g,p) =>g.V().As("a").In().As("b").In().As("c").Select("a", "b", "c").By("name").Limit(Scope.Local, new GValue("xx1", (long) p["xx1"]))}}, + {"g_V_asXaX_in_asXbX_in_asXcX_selectXa_b_cX_byXnameX_limitXlocal_1X", new List, ITraversal>> {(g,p) =>g.V().As("a").In().As("b").In().As("c").Select("a", "b", "c").By("name").Limit(Scope.Local, 1)}}, + {"g_V_asXaX_out_asXbX_out_asXcX_selectXa_b_cX_byXnameX_rangeXlocal_1_3X", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Out().As("c").Select("a", "b", "c").By("name").Range(Scope.Local, 1, 3)}}, + {"g_V_asXaX_out_asXbX_out_asXcX_selectXa_b_cX_byXnameX_rangeXlocal_1var_3varX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Out().As("c").Select("a", "b", "c").By("name").Range(Scope.Local, new GValue("xx1", (long) p["xx1"]), new GValue("xx2", (long) p["xx2"]))}}, + {"g_V_asXaX_out_asXbX_out_asXcX_selectXa_b_cX_byXnameX_rangeXlocal_1_2X", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Out().As("c").Select("a", "b", "c").By("name").Range(Scope.Local, 1, 2)}}, + {"g_V_hasLabelXpersonX_order_byXageX_skipX1X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Order().By("age").Skip(1).Values("name")}}, + {"g_V_hasLabelXpersonX_order_byXageX_skipX1varX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Order().By("age").Skip(new GValue("xx1", (long) p["xx1"])).Values("name")}}, + {"g_V_foldX_rangeXlocal_6_7X", new List, ITraversal>> {(g,p) =>g.V().Fold().Range(Scope.Local, 6, 7)}}, + {"g_V_outE_valuesXweightX_fold_orderXlocalX_skipXlocal_2X", new List, ITraversal>> {(g,p) =>g.V().OutE().Values("weight").Fold().Order(Scope.Local).Skip(Scope.Local, 2)}}, + {"g_V_outE_valuesXweightX_fold_orderXlocalX_skipXlocal_2varX", new List, ITraversal>> {(g,p) =>g.V().OutE().Values("weight").Fold().Order(Scope.Local).Skip(Scope.Local, new GValue("xx1", (long) p["xx1"]))}}, + {"g_V_hasLabelXpersonX_order_byXageX_valuesXnameX_skipX1X", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Order().By("age").Values("name").Skip(1)}}, + {"g_VX1X_valuesXageX_rangeXlocal_20_30X", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Values("age").Range(Scope.Local, 20, 30)}}, + {"g_V_mapXin_hasIdX1XX_limitX2X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Map(__.In().HasId(p["vid1"])).Limit(2).Values("name")}}, + {"g_V_rangeX2_1X", new List, ITraversal>> {(g,p) =>g.V().Range(2, 1)}}, + {"g_V_rangeX3_2X", new List, ITraversal>> {(g,p) =>g.V().Range(3, 2)}}, + {"g_injectXlistX1_2_3XX_rangeXlocal_1_2X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2, 3 }).Range(Scope.Local, 1, 2)}}, + {"g_injectXlistX1_2_3XX_limitXlocal_1X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2, 3 }).Limit(Scope.Local, 1)}}, + {"g_injectXlistX1_2_3X_limitXlocal_1X_unfold", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2, 3 }).Limit(Scope.Local, 1).Unfold()}}, + {"g_injectX1_2_3_4_5X_limitXlocal_1X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2 }, new List { 3, 4, 5 }).Limit(Scope.Local, 1)}}, + {"g_injectX1_2_3_4_5_6X_rangeXlocal_1_2X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2, 3 }, new List { 4, 5, 6 }).Range(Scope.Local, 1, 2)}}, + {"g_VX5X_repeatXlimitX1X_inX_timesX2X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid5"]).Repeat(__.Limit(1).In()).Times(2).Values("name")}}, + {"g_VX5X_repeatXlimitX1X_inX_untilXloopsXisX2XXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid5"]).Repeat(__.Limit(1).In()).Until(__.Loops().Is(2)).Values("name")}}, + {"g_VX5X_limitX1X_in_limitX1X_in_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid5"]).Limit(1).In().Limit(1).In().Values("name")}}, + {"g_VX5X_repeatXlimitX1X_inX_timesX1X_repeatXlimitX1X_inX_timesX1X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid5"]).Repeat(__.Limit(1).In()).Times(1).Repeat(__.Limit(1).In()).Times(1).Values("name")}}, + {"g_VX5X_repeatXlimitX1X_in_aggregateXxXX_timesX2X_capXxX", new List, ITraversal>> {(g,p) =>g.V(p["vid5"]).Repeat(__.Limit(1).In().Aggregate("x")).Times(2).Cap("x")}}, + {"g_VX5X_repeatXrangeX0_1X_inX_timesX2X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid5"]).Repeat(__.Range(0, 1).In()).Times(2).Values("name")}}, + {"g_VX5X_repeatXrangeX0_1X_inX_untilXloopsXisX2XXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid5"]).Repeat(__.Range(0, 1).In()).Until(__.Loops().Is(2)).Values("name")}}, + {"g_VX5X_rangeX0_1X_in_rangeX0_1X_in_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid5"]).Range(0, 1).In().Range(0, 1).In().Values("name")}}, + {"g_VX5X_repeatXrangeX0_1X_in_repeatXrangeX0_1X_inX_timesX1XX_timesX1X_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid5"]).Repeat(__.Range(0, 1).In().Repeat(__.Range(0, 1).In()).Times(1)).Times(1).Values("name")}}, + {"g_VX5X_repeatXrangeX0_1X_in_aggregateXxXX_timesX2X_capXxX", new List, ITraversal>> {(g,p) =>g.V(p["vid5"]).Repeat(__.Range(0, 1).In().Aggregate("x")).Times(2).Cap("x")}}, + {"g_withoutStrategiesXEarlyLimitStrategyX_VX5X_repeatXlimitX1X_in_limitX1X_limitX1XX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(EarlyLimitStrategy)).V(p["vid5"]).Repeat(__.Limit(1).In().Limit(1).Limit(1)).Times(2)}}, + {"g_V_repeatXout_whereXhasXnameX_order_byXnameX_limitX1XXX_timesX2X", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out().Where(__.Has("name").Order().By("name").Limit(1))).Times(2)}}, + {"g_V_out_whereXhasXnameX_order_byXnameX_limitX1XX_out_whereXhasXnameX_order_byXnameX_limitX1XX", new List, ITraversal>> {(g,p) =>g.V().Out().Where(__.Has("name").Order().By("name").Limit(1)).Out().Where(__.Has("name").Order().By("name").Limit(1))}}, + {"g_V_hasXnameXJAMXX_repeatXoutXfollowedByX_order_byXnameX_limitX2XX_timesX2X", new List, ITraversal>> {(g,p) =>g.V().Has("name", "JAM").Repeat(__.Out("followedBy").Order().By("name").Limit(2)).Times(2)}}, + {"g_V_hasXnameXJAMXX_outXfollowedByX_order_byXnameX_limitX2X_outXfollowedByX_order_byXnameX_limitX2X", new List, ITraversal>> {(g,p) =>g.V().Has("name", "JAM").Out("followedBy").Order().By("name").Limit(2).Out("followedBy").Order().By("name").Limit(2)}}, + {"g_V_hasXnameXDRUMSXX_repeatXinXfollowedByX_order_byXnameX_rangeX1_4XX_timesX2X", new List, ITraversal>> {(g,p) =>g.V().Has("name", "DRUMS").Repeat(__.In("followedBy").Order().By("name").Range(1, 4)).Times(2)}}, + {"g_V_hasXnameXDRUMSXX_inXfollowedByX_order_byXnameX_rangeX1_4X_inXfollowedByX_order_byXnameX_rangeX1_4X", new List, ITraversal>> {(g,p) =>g.V().Has("name", "DRUMS").In("followedBy").Order().By("name").Range(1, 4).In("followedBy").Order().By("name").Range(1, 4)}}, + {"g_V_chooseXvaluesXageX_isXlteX30XX_out_order_byXnameX_limitX1X_out_order_byXnameX_limitX2XX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Values("age").Is(P.Lte(30)), __.Out().Order().By("name").Limit(1), __.Out().Order().By("name").Limit(2))}}, + {"g_V_chooseXvaluesXageX_isXlteX30XX_localXout_order_byXnameX_limitX1XX_localXout_order_byXnameX_limitX2XXX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Values("age").Is(P.Lte(30)), __.Local(__.Out().Order().By("name").Limit(1)), __.Local(__.Out().Order().By("name").Limit(2)))}}, + {"g_V_hasXnameXHEY_BO_DIDDLEYXX_unionXoutXfollowedByX_order_byXnameX_limitX2X_outXsungByX_order_byXnameX_byXnameX_limitX1XX_unionXoutXfollowedByX_order_limitX2X_outXsungByX_order_byXnameX_limitX1XX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "HEY BO DIDDLEY").Union(__.Out("followedBy").Order().By("name").Limit(2), __.Out("sungBy").Order().By("name").Limit(1)).Union(__.Out("followedBy").Order().By("name").Limit(2), __.Out("sungBy").Order().By("name").Limit(1))}}, + {"g_V_hasXnameXHEY_BO_DIDDLEYXX_repeatXunionXoutXfollowedByX_order_byXnameX_limitX2X_outXsungByX_order_byXnameX_limitX1XXX_timesX2X", new List, ITraversal>> {(g,p) =>g.V().Has("name", "HEY BO DIDDLEY").Repeat(__.Union(__.Out("followedBy").Order().By("name").Limit(2), __.Out("sungBy").Order().By("name").Limit(1))).Times(2)}}, + {"g_V_sampleX1X_byXageX_byXT_idX", new List, ITraversal>> {(g,p) =>g.V().Sample(1).By("age").By(T.Id)}}, + {"g_E_sampleX1X", new List, ITraversal>> {(g,p) =>g.E().Sample(1)}}, + {"g_E_sampleX2X_byXweightX", new List, ITraversal>> {(g,p) =>g.E().Sample(2).By("weight")}}, + {"g_V_localXoutE_sampleX1X_byXweightXX", new List, ITraversal>> {(g,p) =>g.V().Local(__.OutE().Sample(1).By("weight"))}}, + {"g_withStrategiesXSeedStrategyX_V_group_byXlabelX_byXbothE_weight_order_sampleX2X_foldXunfold", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SeedStrategy(seed: 999999)).V().Group().By(T.Label).By(__.BothE().Values("weight").Order().Sample(2).Fold()).Unfold()}}, + {"g_withStrategiesXSeedStrategyX_V_group_byXlabelX_byXbothE_weight_order_fold_sampleXlocal_5XXunfold", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SeedStrategy(seed: 999999)).V().Group().By(T.Label).By(__.BothE().Values("weight").Order().Fold().Sample(Scope.Local, 5)).Unfold()}}, + {"g_withStrategiesXSeedStrategyX_V_order_byXlabel_descX_sampleX1X_byXageX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SeedStrategy(seed: 999999)).V().Order().By(T.Label, Order.Desc).Sample(1).By("age")}}, + {"g_VX1X_valuesXageX_sampleXlocal_5X", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Values("age").Sample(Scope.Local, 5)}}, + {"g_V_repeatXsampleX2XX_timesX2X", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Sample(2)).Times(2)}}, + {"g_V_sampleX2X_sampleX2X", new List, ITraversal>> {(g,p) =>g.V().Sample(2).Sample(2)}}, + {"g_V3_repeatXout_order_byXperformancesX_sampleX2X_aggregateXxXX_untilXloops_isX2XX_capXxX_unfold", new List, ITraversal>> {(g,p) =>g.V(p["vid3"]).Repeat(__.Out().Order().By("performances").Sample(2).Aggregate("x")).Until(__.Loops().Is(2)).Cap("x").Unfold()}}, + {"g_V3_out_order_byXperformancesX_sampleX2X_aggregateXxX_out_order_byXperformancesX_sampleX2X_aggregateXxX_capXxX_unfold", new List, ITraversal>> {(g,p) =>g.V(p["vid3"]).Out().Order().By("performances").Sample(2).Aggregate("x").Out().Order().By("performances").Sample(2).Aggregate("x").Cap("x").Unfold()}}, + {"g_VX1X_outXcreatedX_inXcreatedX_simplePath", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("created").In("created").SimplePath()}}, + {"g_V_repeatXboth_simplePathX_timesX3X_path", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Both().SimplePath()).Times(3).Path()}}, + {"g_V_asXaX_out_asXbX_out_asXcX_simplePath_byXlabelX_fromXbX_toXcX_path_byXnameX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Out().As("c").SimplePath().By(T.Label).From("b").To("c").Path().By("name")}}, + {"g_injectX0X_V_both_coalesceXhasXname_markoX_both_constantX0XX_simplePath_path", new List, ITraversal>> {(g,p) =>g.Inject(0).V().Both().Coalesce(__.Has("name", "marko").Both(), __.Constant(0)).SimplePath().Path()}}, + {"g_V_both_asXaX_both_asXbX_simplePath_path_byXageX__fromXaX_toXbX", new List, ITraversal>> {(g,p) =>g.V().Both().As("a").Both().As("b").SimplePath().Path().By("age").From("a").To("b")}}, + {"g_V_valuesXnameX_order_tailXglobal_2X", new List, ITraversal>> {(g,p) =>g.V().Values("name").Order().Tail(Scope.Global, 2)}}, + {"g_V_valuesXnameX_order_tailX2X", new List, ITraversal>> {(g,p) =>g.V().Values("name").Order().Tail(2)}}, + {"g_V_valuesXnameX_order_tailX2varX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Order().Tail(new GValue("xx1", (long) p["xx1"]))}}, + {"g_V_valuesXnameX_order_tail", new List, ITraversal>> {(g,p) =>g.V().Values("name").Order().Tail()}}, + {"g_V_valuesXnameX_order_tailX7X", new List, ITraversal>> {(g,p) =>g.V().Values("name").Order().Tail(7)}}, + {"g_V_repeatXbothX_timesX3X_tailX7X", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Both()).Times(3).Tail(7)}}, + {"g_V_repeatXin_outX_timesX3X_tailX7X_count", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.In().Out()).Times(3).Tail(7).Count()}}, + {"g_V_asXaX_out_asXaX_out_asXaX_selectXaX_byXunfold_valuesXnameX_foldX_tailXlocal_1X_unfold", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("a").Out().As("a").Select("a").By(__.Unfold().Values("name").Fold()).Tail(Scope.Local, 1).Unfold()}}, + {"g_V_asXaX_out_asXaX_out_asXaX_selectXaX_byXunfold_valuesXnameX_foldX_tailXlocalX_unfold", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("a").Out().As("a").Select("a").By(__.Unfold().Values("name").Fold()).Tail(Scope.Local).Unfold()}}, + {"g_V_asXaX_out_asXbX_out_asXcX_selectXa_b_cX_byXnameX_tailXlocal_2X", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Out().As("c").Select("a", "b", "c").By("name").Tail(Scope.Local, 2)}}, + {"g_V_asXaX_out_asXbX_out_asXcX_selectXa_b_cX_byXnameX_tailXlocal_2varX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Out().As("c").Select("a", "b", "c").By("name").Tail(Scope.Local, new GValue("xx1", (long) p["xx1"]))}}, + {"g_V_asXaX_out_asXbX_out_asXcX_selectXa_b_cX_byXnameX_tailXlocal_1X", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Out().As("c").Select("a", "b", "c").By("name").Tail(Scope.Local, 1)}}, + {"g_V_asXaX_out_asXaX_out_asXaX_selectXmixed_aX_byXunfold_valuesXnameX_foldX_tailXlocal_1X_unfold", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("a").Out().As("a").Select(Pop.Mixed, "a").By(__.Unfold().Values("name").Fold()).Tail(Scope.Local, 1).Unfold()}}, + {"g_V_asXaX_out_asXaX_out_asXaX_selectXmixed_aX_byXunfold_valuesXnameX_foldX_tailXlocalX_unfold", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("a").Out().As("a").Select(Pop.Mixed, "a").By(__.Unfold().Values("name").Fold()).Tail(Scope.Local).Unfold()}}, + {"g_V_asXaX_out_asXaX_out_asXaX_selectXmixed_aX_byXlimitXlocal_0XX_tailXlocal_1X", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("a").Out().As("a").Select(Pop.Mixed, "a").By(__.Limit(Scope.Local, 0)).Tail(Scope.Local, 1)}}, + {"g_V_asXaX_out_asXaX_out_asXaX_selectXmixed_aX_byXunfold_valuesXnameX_foldX_tailXlocal_2X", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("a").Out().As("a").Select(Pop.Mixed, "a").By(__.Unfold().Values("name").Fold()).Tail(Scope.Local, 2)}}, + {"g_VX1X_valuesXageX_tailXlocal_5X", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Values("age").Tail(Scope.Local, 50)}}, + {"g_injectXlistX1_2_3XX_tailXlocal_1X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2, 3 }).Tail(Scope.Local, 1)}}, + {"g_VX1X_valueMapXnameX_tailXlocal_1X", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).ValueMap("name").Tail(Scope.Local, 1)}}, + {"g_injectX1_2_3X_tailXlocal_1X_unfold", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2, 3 }).Tail(Scope.Local, 1).Unfold()}}, + {"g_injectX1_2_3_4_5_6X_tailXlocal_1X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2, 3 }, new List { 4, 5, 6 }).Tail(Scope.Local, 1)}}, + {"g_injectX1_2_3_4_5X_tailXlocal_2X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2, 3, 4, 5 }).Tail(Scope.Local, 2)}}, + {"g_V_valuesXnameX_isXtypeOfXGType_STRINGXX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Is(P.TypeOf(GType.String))}}, + {"g_V_valuesXnameX_isXtypeOfXjava_lang_StringXX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Is(P.TypeOf("String"))}}, + {"g_V_hasXname_typeOfXGType_STRINGXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Has("name", P.TypeOf(GType.String)).Values("name")}}, + {"g_V_orXhasXname_typeOfXGType_STRINGXX__hasXage_typeOfXGType_INTXXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Or(__.Has("name", P.TypeOf(GType.String)), __.Has("age", P.TypeOf(GType.Int))).Values("name")}}, + {"g_V_andXhasXname_typeOfXGType_STRINGXX__hasXage_typeOfXGType_INTXXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().And(__.Has("name", P.TypeOf(GType.String)), __.Has("age", P.TypeOf(GType.Int))).Values("name")}}, + {"g_V_notXhasXage_typeOfXGType_STRINGXXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Not(__.Has("age", P.TypeOf(GType.String))).Values("name")}}, + {"g_V_valuesXageX_isXnotXtypeOfXGType_STRINGXXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.Not(P.TypeOf(GType.String)))}}, + {"g_V_valuesXnameX_isXtypeOfXstringStringXX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Is(P.TypeOf("String"))}}, + {"g_V_orXvaluesXageX_isXtypeOfXGType_INTXX__valuesXnameX_isXtypeOfXGType_STRINGXXX_count", new List, ITraversal>> {(g,p) =>g.V().Or(__.Values("age").Is(P.TypeOf(GType.Int)), __.Values("name").Is(P.TypeOf(GType.String))).Count()}}, + {"g_V_whereXvaluesXnameX_isXtypeOfXGType_STRINGXXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Where(__.Values("name").Is(P.TypeOf(GType.String))).Values("name")}}, + {"g_V_whereXvaluesXageX_isXtypeOfXGType_STRINGXXX_count", new List, ITraversal>> {(g,p) =>g.V().Where(__.Values("age").Is(P.TypeOf(GType.String))).Count()}}, + {"g_V_whereXnotXvaluesXageX_isXtypeOfXGType_STRINGXXXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Where(__.Not(__.Values("age").Is(P.TypeOf(GType.String)))).Values("name")}}, + {"g_V_valuesXageX_isXtypeOfXGType_NULLXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Null))}}, + {"g_V_valuesXageX_isXtypeOfXGType_BOOLEANXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Boolean))}}, + {"g_V_valuesXageX_isXtypeOfXGType_CHARXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Char))}}, + {"g_V_valuesXageX_isXtypeOfXGType_BINARYXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Binary))}}, + {"g_V_valuesXageX_isXtypeOfXGType_UUIDXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.UUID))}}, + {"g_V_valuesXageX_isXtypeOfXGType_DATETIMEXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.DateTime))}}, + {"g_V_valuesXageX_isXtypeOfXGType_DURATIONXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Duration))}}, + {"g_V_valuesXageX_isXtypeOfXnon_registered_NameXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf("non-registered-Name"))}}, + {"g_injectXtrueX_isXtypeOfXGType_BOOLEANX", new List, ITraversal>> {(g,p) =>g.Inject(true).Is(P.TypeOf(GType.Boolean))}}, + {"g_V_path_isXtypeOfXGType_PATHXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").Path().Is(P.TypeOf(GType.Path))}}, + {"g_V_out_path_isXtypeOfXGType_PATHXX_count", new List, ITraversal>> {(g,p) =>g.V().Out().Path().Is(P.TypeOf(GType.Path)).Count()}}, + {"g_V_hasXname_markoX_out_out_path_isXtypeOfXGType_PATHXX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "marko").Out().Out().Path().Is(P.TypeOf(GType.Path))}}, + {"g_V_out_tree_isXtypeOfXGType_TREEXX_count", new List, ITraversal>> {(g,p) =>g.V().Has("name", "marko").Out().Tree().Is(P.TypeOf(GType.Tree)).Count()}}, + {"g_V_whereXtree_isXtypeOfXGType_TREEXXX_values_name", new List, ITraversal>> {(g,p) =>g.V().Where(__.Tree().Is(P.TypeOf(GType.Tree))).Values("name")}}, + {"g_VX1X_outEXknowsX_subgraphXsgX_name_capXsgX_isXtypeOfXGType_GRAPHXX_count", new List, ITraversal>> {(g,p) =>g.V().OutE("knows").Subgraph("sg").Cap("sg").Is(P.TypeOf(GType.Graph)).Count()}}, + {"g_VX1X_outEXknowsX_subgraphXsgX_name_capXsgX_isX_notXtypeOfXGType_GRAPHXXX_count", new List, ITraversal>> {(g,p) =>g.V().OutE("knows").Subgraph("sg").Cap("sg").Is(P.Not(P.TypeOf(GType.Graph))).Count()}}, + {"g_V_valuesXageX_isXtypeOfXGType_PATHXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Path))}}, + {"g_V_valuesXageX_isXtypeOfXGType_TREEXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Tree))}}, + {"g_V_valuesXageX_isXtypeOfXGType_GRAPHXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.Graph))}}, + {"g_V_valuesXageX_isXtypeOfXGType_VPROPERTYXX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Is(P.TypeOf(GType.VProperty))}}, + {"g_V_hasXageX_asXaX_out_in_hasXageX_asXbX_selectXa_bX_whereXa_eqXbXX", new List, ITraversal>> {(g,p) =>g.V().Has("age").As("a").Out().In().Has("age").As("b").Select("a", "b").Where("a", P.Eq("b"))}}, + {"g_V_hasXageX_asXaX_out_in_hasXageX_asXbX_selectXa_bX_whereXa_neqXbXX", new List, ITraversal>> {(g,p) =>g.V().Has("age").As("a").Out().In().Has("age").As("b").Select("a", "b").Where("a", P.Neq("b"))}}, + {"g_V_hasXageX_asXaX_out_in_hasXageX_asXbX_selectXa_bX_whereXb_hasXname_markoXX", new List, ITraversal>> {(g,p) =>g.V().Has("age").As("a").Out().In().Has("age").As("b").Select("a", "b").Where(__.As("b").Has("name", "marko"))}}, + {"g_V_hasXageX_asXaX_out_in_hasXageX_asXbX_selectXa_bX_whereXa_outXknowsX_bX", new List, ITraversal>> {(g,p) =>g.V().Has("age").As("a").Out().In().Has("age").As("b").Select("a", "b").Where(__.As("a").Out("knows").As("b"))}}, + {"g_V_asXaX_outXcreatedX_whereXasXaX_name_isXjoshXX_inXcreatedX_name", new List, ITraversal>> {(g,p) =>g.V().As("a").Out("created").Where(__.As("a").Values("name").Is("josh")).In("created").Values("name")}}, + {"g_withSideEffectXa_josh_peterX_VX1X_outXcreatedX_inXcreatedX_name_whereXwithinXaXX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", new List { "josh", "peter" }).V(p["vid1"]).Out("created").In("created").Values("name").Where(P.Within("a"))}}, + {"g_VX1X_asXaX_outXcreatedX_inXcreatedX_asXbX_whereXa_neqXbXX_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Out("created").In("created").As("b").Where("a", P.Neq("b")).Values("name")}}, + {"g_VX1X_asXaX_outXcreatedX_inXcreatedX_asXbX_whereXasXbX_outXcreatedX_hasXname_rippleXX_valuesXage_nameX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Out("created").In("created").As("b").Where(__.As("b").Out("created").Has("name", "ripple")).Values("age", "name")}}, + {"g_VX1X_asXaX_outXcreatedX_inXcreatedX_whereXeqXaXX_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Out("created").In("created").Where(P.Eq("a")).Values("name")}}, + {"g_VX1X_asXaX_outXcreatedX_inXcreatedX_whereXneqXaXX_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Out("created").In("created").Where(P.Neq("a")).Values("name")}}, + {"g_VX1X_out_aggregateXxX_out_whereXnotXwithinXaXXX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Aggregate("x").Out().Where(P.Not(P.Within("x")))}}, + {"g_withSideEffectXa_g_VX2XX_VX1X_out_whereXneqXaXX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Where(__.Id().Where(P.Neq("a")))}}, + {"g_VX1X_repeatXbothEXcreatedX_whereXwithoutXeXX_aggregateXeX_otherVX_emit_path", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Repeat(__.BothE("created").Where(P.Without("e")).Aggregate("e").OtherV()).Emit().Path()}}, + {"g_V_whereXnotXoutXcreatedXXX_name", new List, ITraversal>> {(g,p) =>g.V().Where(__.Not(__.Out("created"))).Values("name")}}, + {"g_V_asXaX_out_asXbX_whereXandXasXaX_outXknowsX_asXbX__orXasXbX_outXcreatedX_hasXname_rippleX__asXbX_inXknowsX_count_isXnotXeqX0XXXXX_selectXa_bX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Where(__.And(__.As("a").Out("knows").As("b"), __.Or(__.As("b").Out("created").Has("name", "ripple"), __.As("b").In("knows").Count().Is(P.Not(P.Eq(0)))))).Select("a", "b")}}, + {"g_V_whereXoutXcreatedX_and_outXknowsX_or_inXknowsXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Where(__.Out("created").And().Out("knows").Or().In("knows")).Values("name")}}, + {"g_V_asXaX_outXcreatedX_asXbX_whereXandXasXbX_in__notXasXaX_outXcreatedX_hasXname_rippleXXX_selectXa_bX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out("created").As("b").Where(__.And(__.As("b").In(), __.Not(__.As("a").Out("created").Has("name", "ripple")))).Select("a", "b")}}, + {"g_V_asXaX_outXcreatedX_asXbX_inXcreatedX_asXcX_bothXknowsX_bothXknowsX_asXdX_whereXc__notXeqXaX_orXeqXdXXXX_selectXa_b_c_dX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out("created").As("b").In("created").As("c").Both("knows").Both("knows").As("d").Where("c", P.Not(P.Eq("a").Or(P.Eq("d")))).Select("a", "b", "c", "d")}}, + {"g_V_asXaX_out_asXbX_whereXin_count_isXeqX3XX_or_whereXoutXcreatedX_and_hasXlabel_personXXX_selectXa_bX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Where(__.As("b").In().Count().Is(P.Eq(3)).Or().Where(__.As("b").Out("created").And().As("b").Has(T.Label, "person"))).Select("a", "b")}}, + {"g_V_asXaX_outXcreatedX_inXcreatedX_asXbX_whereXa_gtXbXX_byXageX_selectXa_bX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out("created").In("created").As("b").Where("a", P.Gt("b")).By("age").Select("a", "b").By("name")}}, + {"g_V_asXaX_outEXcreatedX_asXbX_inV_asXcX_whereXa_gtXbX_orXeqXbXXX_byXageX_byXweightX_byXweightX_selectXa_cX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().As("a").OutE("created").As("b").InV().As("c").Where("a", P.Gt("b").Or(P.Eq("b"))).By("age").By("weight").By("weight").Select("a", "c").By("name")}}, + {"g_V_asXaX_outEXcreatedX_asXbX_inV_asXcX_inXcreatedX_asXdX_whereXa_ltXbX_orXgtXcXX_andXneqXdXXX_byXageX_byXweightX_byXinXcreatedX_valuesXageX_minX_selectXa_c_dX", new List, ITraversal>> {(g,p) =>g.V().As("a").OutE("created").As("b").InV().As("c").In("created").As("d").Where("a", P.Lt("b").Or(P.Gt("c")).And(P.Neq("d"))).By("age").By("weight").By(__.In("created").Values("age").Min()).Select("a", "c", "d").By("name")}}, + {"g_VX1X_asXaX_out_hasXageX_whereXgtXaXX_byXageX_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Out().Has("age").Where(P.Gt("a")).By("age").Values("name")}}, + {"g_VX3X_asXaX_in_out_asXbX_whereXa_eqXbXX_byXageX_name", new List, ITraversal>> {(g,p) =>g.V(p["vid3"]).As("a").In().Out().As("b").Where("a", P.Eq("b")).By("age").Values("name")}}, + {"g_withStrategiesXProductiveByStrategyX_VX3X_asXaX_in_out_asXbX_whereXa_eqXbXX_byXageX_name", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V(p["vid3"]).As("a").In().Out().As("b").Where("a", P.Eq("b")).By("age").Values("name")}}, + {"g_V_asXnX_whereXorXhasLabelXsoftwareX_hasLabelXpersonXXX_selectXnX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().As("n").Where(__.Or(__.HasLabel("software"), __.HasLabel("person"))).Select("n").By("name")}}, + {"g_V_asXnX_whereXorXselectXnX_hasLabelXsoftwareX_selectXnX_hasLabelXpersonXXX_selectXnX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().As("n").Where(__.Or(__.Select("n").HasLabel("software"), __.Select("n").HasLabel("person"))).Select("n").By("name")}}, + {"g_V_hasLabelXpersonX_asXxX_whereXinEXknowsX_count_isXgteX1XXX_selectXxX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").As("x").Where(__.InE("knows").Count().Is(P.Gte(1))).Select("x")}}, + {"get_g_V_whereXage_isXgt_30XX", new List, ITraversal>> {(g,p) =>g.V().Where(__.Values("age").Is(P.Gt(30)))}}, + {"g_V_whereXlabel_isXsoftwareXX", new List, ITraversal>> {(g,p) =>g.V().Where(__.Label().Is("software"))}}, + {"g_V_whereXlabel_isXpersonXX", new List, ITraversal>> {(g,p) =>g.V().Where(__.Label().Is("person"))}}, + {"g_withStrategiesXAdjacentToIncidentStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new AdjacentToIncidentStrategy()).V()}}, + {"g_withoutStrategiesXAdjacentToIncidentStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(AdjacentToIncidentStrategy)).V()}}, + {"g_withStrategiesXAdjacentToIncidentStrategyX_V_out_count", new List, ITraversal>> {(g,p) =>g.WithStrategies(new AdjacentToIncidentStrategy()).V().Out().Count()}}, + {"g_withStrategiesXAdjacentToIncidentStrategyX_V_whereXoutX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new AdjacentToIncidentStrategy()).V().Where(__.Out())}}, + {"g_withStrategiesXByModulatorOptimizationStrategyX_V_order_byXvaluesXnameXX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ByModulatorOptimizationStrategy()).V().Order().By(__.Values("name"))}}, + {"g_withoutStrategiesXByModulatorOptimizationStrategyX_V_order_byXvaluesXnameXX", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(ByModulatorOptimizationStrategy)).V().Order().By(__.Values("name"))}}, + {"g_withStrategiesXComputerFinalizationStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ComputerFinalizationStrategy()).V()}}, + {"g_withoutStrategiesXByModulatorOptimizationStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(ComputerFinalizationStrategy)).V()}}, + {"g_withStrategiesXComputerVerificationStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ComputerVerificationStrategy()).V()}}, + {"g_withoutStrategiesXComputerVerificationStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(ComputerVerificationStrategy)).V()}}, + {"g_withStrategiesXConnectiveStrategyStrategyX_V_hasXname_markoX_or_whereXinXknowsX_hasXname_markoXX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ConnectiveStrategy()).V().Has("name", "marko").Or().Where(__.In("knows").Has("name", "marko"))}}, + {"g_withoutStrategiesXConnectiveStrategyX_V_hasXname_markoX_or_whereXinXknowsX_hasXname_markoXX", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(ConnectiveStrategy)).V().Has("name", "marko").Or().Where(__.In("knows").Has("name", "marko"))}}, + {"g_withStrategiesXCountStrategyX_V_whereXoutE_count_isX0XX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new CountStrategy()).V().Where(__.OutE().Count().Is(0))}}, + {"g_withoutStrategiesXCountStrategyX_V_whereXoutE_count_isX0XX", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(CountStrategy)).V().Where(__.OutE().Count().Is(0))}}, + {"g_withStrategiesXEarlyLimitStrategyX_V_out_order_byXnameX_valueMap_limitX3X_selectXnameX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new EarlyLimitStrategy()).V().Out().Order().By("name").ValueMap().Limit(3).Select("name")}}, + {"g_withoutStrategiesXEarlyLimitStrategyX_V_out_order_byXnameX_valueMap_limitX3X_selectXnameX", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(EarlyLimitStrategy)).V().Out().Order().By("name").ValueMap().Limit(3).Select("name")}}, + {"g_withStrategiesXEdgeLabelVerificationStrategyXthrowException_true_logWarning_falseXX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new EdgeLabelVerificationStrategy(throwException: true, logWarning: false)).V().Out()}}, + {"g_withStrategiesXEdgeLabelVerificationStrategyXthrowException_false_logWarning_falseXX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new EdgeLabelVerificationStrategy(throwException: false, logWarning: false)).V().Out()}}, + {"g_withoutStrategiesXEdgeLabelVerificationStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(EdgeLabelVerificationStrategy)).V().Out()}}, + {"g_withStrategiesXElementIdStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ElementIdStrategy()).V()}}, + {"g_withoutStrategiesXElementIdStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(ElementIdStrategy)).V()}}, + {"g_withStrategiesXFilterRankingStrategyX_V_out_order_dedup", new List, ITraversal>> {(g,p) =>g.WithStrategies(new FilterRankingStrategy()).V().Out().Order().Dedup()}}, + {"g_withoutStrategiesXFilterRankingStrategyX_V_out_order_dedup", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(FilterRankingStrategy)).V().Out().Order().Dedup()}}, + {"g_withStrategiesXGraphFilterStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new GraphFilterStrategy()).V()}}, + {"g_withoutStrategiesXGraphFilterStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(GraphFilterStrategy)).V()}}, + {"g_withStrategiesXHaltedTraverserStrategyXDetachedFactoryXX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new HaltedTraverserStrategy(haltedTraverserFactory: "org.apache.tinkerpop.gremlin.structure.util.detached.DetachedFactory")).V()}}, + {"g_withStrategiesXHaltedTraverserStrategyXReferenceFactoryXX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new HaltedTraverserStrategy(haltedTraverserFactory: "org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceFactory")).V()}}, + {"g_withoutStrategiesXHaltedTraverserStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(HaltedTraverserStrategy)).V()}}, + {"g_withStrategiesXIdentityRemovalStrategyX_V_identity_out", new List, ITraversal>> {(g,p) =>g.WithStrategies(new IdentityRemovalStrategy()).V().Identity().Out()}}, + {"g_withoutStrategiesXIdentityRemovalStrategyX_V_identity_out", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(IdentityRemovalStrategy)).V().Identity().Out()}}, + {"g_withStrategiesXIncidentToAdjacentStrategyX_V_outE_inV", new List, ITraversal>> {(g,p) =>g.WithStrategies(new IncidentToAdjacentStrategy()).V().OutE().InV()}}, + {"g_withoutStrategiesXIncidentToAdjacentStrategyX_V_outE_inV", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(IncidentToAdjacentStrategy)).V().OutE().InV()}}, + {"g_withStrategiesXInlineFilterStrategyX_V_filterXhasXname_markoXX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new InlineFilterStrategy()).V().Filter(__.Has("name", "marko"))}}, + {"g_withoutStrategiesXInlineFilterStrategyX_V_filterXhasXname_markoXX", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(InlineFilterStrategy)).V().Filter(__.Has("name", "marko"))}}, + {"g_withStrategiesXLambdaRestrictionStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new LambdaRestrictionStrategy()).V()}}, + {"g_withoutStrategiesXLambdaRestrictionStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(LambdaRestrictionStrategy)).V()}}, + {"g_withStrategiesXLazyBarrierStrategyX_V_out_bothE_count", new List, ITraversal>> {(g,p) =>g.WithStrategies(new LazyBarrierStrategy()).V().Out().BothE().Count()}}, + {"g_withoutStrategiesXLazyBarrierStrategyX_V_out_bothE_count", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(LazyBarrierStrategy)).V().Out().BothE().Count()}}, + {"g_withStrategiesXMatchAlgorithmStrategyXmatchAlgorithm_CountMatchAlgorithmXX_V_matchXa_knows_b__a_created_cX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new MatchAlgorithmStrategy(matchAlgorithm: "org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep$CountMatchAlgorithm")).V().Match(__.As("a").Out("knows").As("b"), __.As("a").Out("created").As("c"))}}, + {"g_withStrategiesXMatchAlgorithmStrategyXmatchAlgorithm_GreedyMatchAlgorithmXX_V_matchXa_knows_b__a_created_cX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new MatchAlgorithmStrategy(matchAlgorithm: "org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep$GreedyMatchAlgorithm")).V().Match(__.As("a").Out("knows").As("b"), __.As("a").Out("created").As("c"))}}, + {"g_withoutStrategiesXMatchAlgorithmStrategyX_V_matchXa_knows_b__a_created_cX", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(MatchAlgorithmStrategy)).V().Match(__.As("a").Out("knows").As("b"), __.As("a").Out("created").As("c"))}}, + {"g_withStrategiesXMatchPredicateStrategyX_V_matchXa_created_lop_b__b_0created_29_cX_whereXc_repeatXoutX_timesX2XX_selectXa_b_cX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new MatchPredicateStrategy()).V().Match(__.As("a").Out("created").Has("name", "lop").As("b"), __.As("b").In("created").Has("age", 29).As("c")).Where(__.As("c").Repeat(__.Out()).Times(2)).Select("a", "b", "c")}}, + {"g_withoutStrategiesXMatchPredicateStrategyX_V_matchXa_created_lop_b__b_0created_29_cX_whereXc_repeatXoutX_timesX2XX_selectXa_b_cX", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(MatchPredicateStrategy)).V().Match(__.As("a").Out("created").Has("name", "lop").As("b"), __.As("b").In("created").Has("age", 29).As("c")).Where(__.As("c").Repeat(__.Out()).Times(2)).Select("a", "b", "c")}}, + {"g_withStrategiesXMessagePassingReductionStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new MessagePassingReductionStrategy()).V()}}, + {"g_withoutStrategiesXMessagePassingReductionStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(MessagePassingReductionStrategy)).V()}}, + {"g_V_coworker", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Filter(__.OutE("created")).Aggregate("p").As("p1").Values("name").As("p1n").Select("p").Unfold().Where(P.Neq("p1")).As("p2").Values("name").As("p2n").Select("p2").Out("created").Choose(__.In("created").Where(P.Eq("p1")), __.Values("name"), __.Constant(new List { })).Group().By(__.Select("p1n")).By(__.Group().By(__.Select("p2n")).By(__.Unfold().Fold().Project("numCoCreated", "coCreated").By(__.Count(Scope.Local)).By())).Unfold()}}, + {"g_V_coworker_with_midV", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Filter(__.OutE("created")).As("p1").V().HasLabel("person").Where(P.Neq("p1")).Filter(__.OutE("created")).As("p2").Map(__.Out("created").Where(__.In("created").As("p1")).Values("name").Fold()).Group().By(__.Select("p1").By("name")).By(__.Group().By(__.Select("p2").By("name")).By(__.Project("numCoCreated", "coCreated").By(__.Count(Scope.Local)).By())).Unfold()}}, + {"g_withStrategiesXOptionsStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new OptionsStrategy()).V()}}, + {"g_withStrategiesXOptionsStrategyXmyVar_myValueXX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new OptionsStrategy(new Dictionary {{"myVar","myValue"},})).V()}}, + {"g_withoutStrategiesXOptionsStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(OptionsStrategy)).V()}}, + {"g_withStrategiesXOrderLimitStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new OrderLimitStrategy()).V()}}, + {"g_withoutStrategiesXOrderLimitStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(OrderLimitStrategy)).V()}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_V_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").AddV((string) "person").Property("_partition", "b").Property("name", "bob"), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).V().Values("name")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_a_bXX_V_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").AddV((string) "person").Property("_partition", "b").Property("name", "bob"), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a", "b" })).V().Values("name")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_cXX_V_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").AddV((string) "person").Property("_partition", "b").Property("name", "bob"), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "c" })).V().Values("name")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_V_bothE_weight", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").As("a").AddV((string) "person").Property("_partition", "b").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("_partition", "a").Property("weight", 1.0d).AddE((string) "knows").From("b").To("a").Property("_partition", "b").Property("weight", 2.0d), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).V().BothE().Values("weight")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_bXX_V_bothE_weight", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").As("a").AddV((string) "person").Property("_partition", "b").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("_partition", "a").Property("weight", 1.0d).AddE((string) "knows").From("b").To("a").Property("_partition", "b").Property("weight", 2.0d), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "b" })).V().BothE().Values("weight")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_a_bXX_V_bothE_dedup_weight", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").As("a").AddV((string) "person").Property("_partition", "b").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("_partition", "a").Property("weight", 1.0d).AddE((string) "knows").From("b").To("a").Property("_partition", "b").Property("weight", 2.0d), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a", "b" })).V().BothE().Dedup().Values("weight")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_cXX_V_bothE_weight", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").As("a").AddV((string) "person").Property("_partition", "b").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("_partition", "a").Property("weight", 1.0d).AddE((string) "knows").From("b").To("a").Property("_partition", "b").Property("weight", 2.0d), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "c" })).V().BothE().Values("weight")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_V_both_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").As("a").AddV((string) "person").Property("_partition", "b").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("_partition", "a").Property("weight", 1.0d).AddE((string) "knows").From("b").To("a").Property("_partition", "b").Property("weight", 2.0d), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).V().Both().Values("name")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_bXX_V_both_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").As("a").AddV((string) "person").Property("_partition", "b").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("_partition", "a").Property("weight", 1.0d).AddE((string) "knows").From("b").To("a").Property("_partition", "b").Property("weight", 2.0d), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "b" })).V().Both().Values("name")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_a_bXX_V_both_dedup_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").As("a").AddV((string) "person").Property("_partition", "b").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("_partition", "a").Property("weight", 1.0d).AddE((string) "knows").From("b").To("a").Property("_partition", "b").Property("weight", 2.0d), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a", "b" })).V().Both().Dedup().Values("name")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_cXX_V_both_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").As("a").AddV((string) "person").Property("_partition", "b").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("_partition", "a").Property("weight", 1.0d).AddE((string) "knows").From("b").To("a").Property("_partition", "b").Property("weight", 2.0d), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "c" })).V().Both().Values("name")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_V_out_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").As("a").AddV((string) "person").Property("_partition", "b").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("_partition", "a").Property("weight", 1.0d).AddE((string) "knows").From("b").To("a").Property("_partition", "b").Property("weight", 2.0d), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).V().Out().Values("name")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_bXX_V_in_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").As("a").AddV((string) "person").Property("_partition", "b").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("_partition", "a").Property("weight", 1.0d).AddE((string) "knows").From("b").To("a").Property("_partition", "b").Property("weight", 2.0d), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "b" })).V().In().Values("name")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_a_bXX_V_out_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").As("a").AddV((string) "person").Property("_partition", "b").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("_partition", "a").Property("weight", 1.0d).AddE((string) "knows").From("b").To("a").Property("_partition", "b").Property("weight", 2.0d), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a", "b" })).V().Out().Values("name")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_cXX_V_out_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").As("a").AddV((string) "person").Property("_partition", "b").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("_partition", "a").Property("weight", 1.0d).AddE((string) "knows").From("b").To("a").Property("_partition", "b").Property("weight", 2.0d), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "c" })).V().Out().Values("name")}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_addVXpersonX_propertyXname_aliceX_addXselfX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).AddV((string) "person").Property("name", "alice").AddE((string) "self"), (g,p) =>g.V().Has("person", "name", "alice").Has("_partition", "a"), (g,p) =>g.V(), (g,p) =>g.E().Has("_partition", "a"), (g,p) =>g.E()}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_injectXzeroX_addVXpersonX_propertyXname_aliceX_addXselfX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).Inject(0).AddV((string) "person").Property("name", "alice").AddE((string) "self"), (g,p) =>g.V().Has("person", "name", "alice").Has("_partition", "a"), (g,p) =>g.V(), (g,p) =>g.E().Has("_partition", "a"), (g,p) =>g.E()}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_mergeV", new List, ITraversal>> {(g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).MergeV(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.V().Has("person", "name", "alice").Has("_partition", "a"), (g,p) =>g.V()}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_injectX0X_mergeV", new List, ITraversal>> {(g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).Inject(0).MergeV(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.V().Has("person", "name", "alice").Has("_partition", "a"), (g,p) =>g.V()}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_mergeE", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").AddV((string) "person").Property("_partition", "a").Property("name", "bob"), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).MergeE(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.E().Has("knows", "_partition", "a"), (g,p) =>g.E()}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_injectX0XmergeE", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").AddV((string) "person").Property("_partition", "a").Property("name", "bob"), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).Inject(0).MergeE(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.E().Has("knows", "_partition", "a"), (g,p) =>g.E()}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_mergeVXlabel_person_name_aliceX_optionXonMatch_name_bobX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "a").Property("name", "alice").AddV((string) "person").Property("_partition", "b").Property("name", "alice"), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnMatch, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V().Has("person", "name", "bob").Has("_partition", "a"), (g,p) =>g.V()}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_mergeV_optionXonCreateX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "b").Property("name", "alice"), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V().Has("name", "alice").Has("age", 35).Has("_partition", "a"), (g,p) =>g.V()}}, + {"g_withStrategiesXPartitionStrategyXwrite_a_read_aXX_injectX0X__mergeV_optionXonCreateX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("_partition", "b").Property("name", "alice"), (g,p) =>g.WithStrategies(new PartitionStrategy(partitionKey: "_partition", writePartition: "a", readPartitions: new HashSet { "a" })).Inject(0).MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V().Has("name", "alice").Has("age", 35).Has("_partition", "a"), (g,p) =>g.V()}}, + {"g_withStrategiesXPathProcessorStrategyX_V_asXaX_selectXaX_byXvaluesXnameXX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new PathProcessorStrategy()).V().As("a").Select("a").By(__.Values("name"))}}, + {"g_withoutStrategiesXPathProcessorStrategyX_V_asXaX_selectXaX_byXvaluesXnameXX", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(PathProcessorStrategy)).V().As("a").Select("a").By(__.Values("name"))}}, + {"g_withStrategiesXPathRetractionStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new PathRetractionStrategy()).V()}}, + {"g_withoutStrategiesXPathRetractionStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(PathRetractionStrategy)).V()}}, + {"g_V_shortestpath", new List, ITraversal>> {(g,p) =>g.V().As("v").Both().As("v").Project("src", "tgt", "p").By(__.Select(Pop.First, "v")).By(__.Select(Pop.Last, "v")).By(__.Select(Pop.All, "v")).As("triple").Group("x").By(__.Select("src", "tgt")).By(__.Select("p").Fold()).Select("tgt").Barrier().Repeat(__.Both().As("v").Project("src", "tgt", "p").By(__.Select(Pop.First, "v")).By(__.Select(Pop.Last, "v")).By(__.Select(Pop.All, "v")).As("t").Filter(__.Select(Pop.All, "p").Count(Scope.Local).As("l").Select(Pop.Last, "t").Select(Pop.All, "p").Dedup(Scope.Local).Count(Scope.Local).Where(P.Eq("l"))).Where("src", P.Neq("tgt")).Select(Pop.Last, "t").Not(__.Select(Pop.All, "p").As("p").Count(Scope.Local).As("l").Select(Pop.All, "x").Unfold().Filter(__.Select(Column.Keys).Where(P.Eq("t")).By(__.Select("src", "tgt"))).Filter(__.Select(Column.Values).Unfold().Or(__.Count(Scope.Local).Where(P.Lt("l")), __.Where(P.Eq("p"))))).Barrier().Group("x").By(__.Select("src", "tgt")).By(__.Select(Pop.All, "p").Fold()).Select("tgt").Barrier()).Cap("x").Select(Column.Values).Unfold().Unfold().Map(__.Unfold().Values("name").Fold())}}, + {"g_V_playlist_paths", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SeedStrategy(seed: 99999)).V().Has("name", "Bob_Dylan").In("sungBy").As("a").Repeat(__.Out().Order().By(Order.Shuffle).SimplePath().From("a")).Until(__.Out("writtenBy").Has("name", "Johnny_Cash")).Limit(1).As("b").Repeat(__.Out().Order().By(Order.Shuffle).As("c").SimplePath().From("b").To("c")).Until(__.Out("sungBy").Has("name", "Grateful_Dead")).Limit(1).Path().From("a").Unfold().Project("song", "artists").By("name").By(__.Coalesce(__.Out("sungBy", "writtenBy").Dedup().Values("name"), __.Constant("Unknown")).Fold())}}, + {"g_withStrategiesXProductiveByStrategyX_V_group_byXageX_byXnameX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Group().By("age").By("name")}}, + {"g_withoutStrategiesXProductiveByStrategyX_V_group_byXageX_byXnameX", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(ProductiveByStrategy)).V().Group().By("age").By("name")}}, + {"g_withStrategiesXProfileStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProfileStrategy()).V()}}, + {"g_withoutStrategiesXProfileStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(ProfileStrategy)).V()}}, + {"g_withStrategiesXReadOnlyStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ReadOnlyStrategy()).V()}}, + {"g_withStrategiesXReadOnlyStrategyX_V_outXknowsX_name", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ReadOnlyStrategy()).V().Out("knows").Values("name")}}, + {"g_withStrategiesXReadOnlyStrategyX_addVXpersonX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ReadOnlyStrategy()).AddV((string) "person")}}, + {"g_withStrategiesXReadOnlyStrategyX_addVXpersonX_fromXVX1XX_toXVX2XX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ReadOnlyStrategy()).AddE((string) "link").From(__.V(p["vid1"])).To(__.V(p["vid2"]))}}, + {"g_withStrategiesXReadOnlyStrategyX_V_addVXpersonX_fromXVX1XX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ReadOnlyStrategy()).V().AddE((string) "link").From(__.V(p["vid1"]))}}, + {"g_withStrategiesXReadOnlyStrategyX_V_propertyXname_joshX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ReadOnlyStrategy()).V().Property("name", "josh")}}, + {"g_withStrategiesXReadOnlyStrategyX_E_propertyXweight_0X", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ReadOnlyStrategy()).E().Property("weight", 0)}}, + {"g_V_classic_recommendation", new List, ITraversal>> {(g,p) =>g.V().Has("name", "DARK STAR").As("a").Out("followedBy").Aggregate("stash").In("followedBy").Where(P.Neq("a").And(P.Not(P.Within("stash")))).GroupCount().Unfold().Project("x", "y", "z").By(__.Select(Column.Keys).Values("name")).By(__.Select(Column.Keys).Values("performances")).By(__.Select(Column.Values)).Order().By(__.Select("z"), Order.Desc).By(__.Select("y"), Order.Asc).Limit(5).Local(__.Aggregate("m")).Select("x")}}, + {"g_V_classic_recommendation_ranked", new List, ITraversal>> {(g,p) =>g.V().Has("name", "DARK STAR").As("a").Out("followedBy").Aggregate("stash").In("followedBy").Where(P.Neq("a").And(P.Not(P.Within("stash")))).GroupCount().Unfold().Project("x", "y", "z").By(__.Select(Column.Keys).Values("name")).By(__.Select(Column.Keys).Values("performances")).By(__.Select(Column.Values)).Order().By(__.Select("z"), Order.Desc).By(__.Select("y"), Order.Asc).Limit(5).Local(__.Aggregate("m"))}}, + {"g_withStrategiesXReferenceElementStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ReferenceElementStrategy()).V()}}, + {"g_withoutStrategiesXReferenceElementStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(ReferenceElementStrategy)).V()}}, + {"g_withStrategiesXRepeatUnrollStrategyX_V_repeatXoutX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Out()).Times(2)}}, + {"g_withoutStrategiesXRepeatUnrollStrategyX_V_repeatXoutX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Out()).Times(2)}}, + {"g_withStrategiesXRepeatUnrollStrategyX_V_repeatXinX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.In()).Times(2)}}, + {"g_withoutStrategiesXRepeatUnrollStrategyX_V_repeatXinX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.In()).Times(2)}}, + {"g_withStrategiesXRepeatUnrollStrategyX_V_repeatXout_hasXname_notStartingWithXzXXX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Out().Has("name", TextP.NotStartingWith("z"))).Times(2)}}, + {"g_withoutStrategiesXRepeatUnrollStrategyX_V_repeatXout_hasXname_notStartingWithXzXXX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Out().Has("name", TextP.NotStartingWith("z"))).Times(2)}}, + {"g_withStrategiesXRepeatUnrollStrategyX_V_repeatXin_hasXage_gtX20XXX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.In().Has("age", P.Gt(20))).Times(2)}}, + {"g_withoutStrategiesXRepeatUnrollStrategyX_V_repeatXin_hasXage_gtX20XXX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.In().Has("age", P.Gt(20))).Times(2)}}, + {"g_withStrategiesXRepeatUnrollStrategyX_V_repeatXboth_hasXage_ltX30XXX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Both().Has("age", P.Lt(30))).Times(2)}}, + {"g_withoutStrategiesXRepeatUnrollStrategyX_V_repeatXboth_hasXage_ltX30XXX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Both().Has("age", P.Lt(30))).Times(2)}}, + {"g_withStrategiesXRepeatUnrollStrategyX_V_repeatXbothE_otherV_hasXage_ltX30XXX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.BothE().OtherV().Has("age", P.Lt(30))).Times(2)}}, + {"g_withoutStrategiesXRepeatUnrollStrategyX_V_repeatXbothE_otherV_hasXage_ltX30XXX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.BothE().OtherV().Has("age", P.Lt(30))).Times(2)}}, + {"g_withStrategiesXRepeatUnrollStrategyX_V_repeatXboth_limitX1XX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Both().Limit(1)).Times(2)}}, + {"g_withoutStrategiesXRepeatUnrollStrategyX_V_repeatXboth_limitX1XX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Both().Limit(1)).Times(2)}}, + {"g_withStrategiesXRepeatUnrollStrategyX_V_order_byXnameX_repeatXboth_order_byXnameX_aggregateXxXX_timesX2X_limitX10X", new List, ITraversal>> {(g,p) =>g.WithStrategies(new RepeatUnrollStrategy()).V().Order().By("name").Repeat(__.Both().Order().By("name").Aggregate("x")).Times(2).Limit(10)}}, + {"g_withoutStrategiesXRepeatUnrollStrategyX_V_order_byXnameX_repeatXboth_order_byXnameX_aggregateXxXX_timesX2X_limitX10X", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Order().By("name").Repeat(__.Both().Order().By("name").Aggregate("x")).Times(2).Limit(10)}}, + {"g_withStrategiesXRepeatUnrollStrategyX_V_repeatXboth_sampleX1XX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Both().Sample(1)).Times(2)}}, + {"g_withoutStrategiesXRepeatUnrollStrategyX_V_repeatXboth_sampleX1XX_timesX2X", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Both().Sample(1)).Times(2)}}, + {"g_withStrategiesXReservedKeysVerificationStrategyXthrowException_trueXX_addVXpersonX_propertyXid_123X_propertyXname_markoX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ReservedKeysVerificationStrategy(throwException: true)).AddV((string) "person").Property("id", 123).Property("name", "marko")}}, + {"g_withStrategiesXReservedKeysVerificationStrategyXthrowException_trueXX_addVXpersonX_propertyXage_29X_propertyXname_markoX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ReservedKeysVerificationStrategy(throwException: true, keys: new HashSet { "age" })).AddV((string) "person").Property("age", 29).Property("name", "marko")}}, + {"g_withoutStrategiesXReservedKeysVerificationStrategyX_addVXpersonX_propertyXid_123X_propertyXname_markoX", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(ReservedKeysVerificationStrategy)).AddV((string) "person").Property("id", 123).Property("name", "marko").Values()}}, + {"g_withoutStrategiesXSeedStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(SeedStrategy)).V()}}, + {"g_withStrategiesXStandardVerificationStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new StandardVerificationStrategy()).V()}}, + {"g_withoutStrategiesXStandardVerificationStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(StandardVerificationStrategy)).V()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphAXX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")))).V()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphAXX_E", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")))).E()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphAXX_VX4X_outE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")))).V(p["vid4"]).OutE()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphAXX_VX4X_inE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")))).V(p["vid4"]).InE()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphAXX_VX4X_out", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")))).V(p["vid4"]).Out()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphAXX_VX4X_in", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")))).V(p["vid4"]).In()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphAXX_VX4X_both", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")))).V(p["vid4"]).Both()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphAXX_VX4X_bothE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")))).V(p["vid4"]).BothE()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphAXX_VX4X_localXbothE_limitX1XX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")))).V(p["vid4"]).Local(__.BothE().Limit(1))}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphAXX_EX11X_bothV", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")))).E(p["eid11"]).BothV()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphAXX_EX12X_bothV", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")))).E(p["eid12"]).BothV()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphBXX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has("weight", 1.0).HasLabel("knows"), __.Has("weight", 0.4).HasLabel("created").OutV().Has("name", "marko"), __.Has("weight", 1.0).HasLabel("created")))).V()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphBXX_E", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has("weight", 1.0).HasLabel("knows"), __.Has("weight", 0.4).HasLabel("created").OutV().Has("name", "marko"), __.Has("weight", 1.0).HasLabel("created")))).E()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphBXX_VX1X_outE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has("weight", 1.0).HasLabel("knows"), __.Has("weight", 0.4).HasLabel("created").OutV().Has("name", "marko"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid1"]).OutE()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphBXX_VX1X_out", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has("weight", 1.0).HasLabel("knows"), __.Has("weight", 0.4).HasLabel("created").OutV().Has("name", "marko"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid1"]).Out()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphBXX_VX1X_outXcreatedX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has("weight", 1.0).HasLabel("knows"), __.Has("weight", 0.4).HasLabel("created").OutV().Has("name", "marko"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid1"]).Out("knows")}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphBXX_VX4X_outXcreatedX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has("weight", 1.0).HasLabel("knows"), __.Has("weight", 0.4).HasLabel("created").OutV().Has("name", "marko"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).Out("created")}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphBXX_VX4X_outE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has("weight", 1.0).HasLabel("knows"), __.Has("weight", 0.4).HasLabel("created").OutV().Has("name", "marko"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).OutE()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphBXX_VX4X_out", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has("weight", 1.0).HasLabel("knows"), __.Has("weight", 0.4).HasLabel("created").OutV().Has("name", "marko"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).Out()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphBXX_VX4X_bothE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has("weight", 1.0).HasLabel("knows"), __.Has("weight", 0.4).HasLabel("created").OutV().Has("name", "marko"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).BothE()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphBXX_VX4X_both", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has("weight", 1.0).HasLabel("knows"), __.Has("weight", 0.4).HasLabel("created").OutV().Has("name", "marko"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).Both()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphBXX_VX4X_outV_outE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has("weight", 1.0).HasLabel("knows"), __.Has("weight", 0.4).HasLabel("created").OutV().Has("name", "marko"), __.Has("weight", 1.0).HasLabel("created")))).E(p["eid8"]).OutV().OutE()}}, + {"g_withStrategiesXSubgraphStrategyXvertices_inXknowsX_hasXname_markoXXX_V_name", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.In("knows").Has("name", "marko"))).V().Values("name")}}, + {"g_withStrategiesXSubgraphStrategyXvertices_in_hasXname_markoXXX_V_name", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.In().Has("name", "marko"))).V().Values("name")}}, + {"g_withStrategiesXSubgraphStrategyXvertices_inXknowsX_whereXoutXcreatedX_hasXname_lopXXXX_V_name", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.In("knows").Where(__.Out("created").Has("name", "lop")))).V().Values("name")}}, + {"g_withStrategiesXSubgraphStrategyXvertices_in_hasXname_markoX_outXcreatedX_hasXname_lopXXXX_V_name", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.In().Where(__.Has("name", "marko").Out("created").Has("name", "lop")))).V().Values("name")}}, + {"g_withStrategiesXSubgraphStrategyXvertices_orXboth_hasXname_markoX_hasXname_markoXXXX_V_name", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Or(__.Both().Has("name", "marko"), __.Has("name", "marko")))).V().Where(__.BothE().Count().Is(P.Neq(0))).Values("name")}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphCXX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphCXX_E", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).E()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphCXX_VX4X_outE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).OutE()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphCXX_VX4X_inE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).InE()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphCXX_VX4X_out", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).Out()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphCXX_VX4X_in", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).In()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphCXX_VX4X_both", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).Both()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphCXX_VX4X_bothE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).BothE()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphCXX_VX4X_localXbothE_limitX1XX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).Local(__.BothE().Limit(1))}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphCXX_EX11X_bothV", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).E(p["eid11"]).BothV()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphCXX_EX12X_bothV", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).E(p["eid12"]).BothV()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphCXX_EX9X_bothV", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).E(p["eid9"]).BothV()}}, + {"g_withStrategiesXSubgraphStrategyXvertices_hasXname_withinXripple_josh_markoXXX_V_asXaX_out_in_asXbX_dedupXa_bX_name", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertices: __.Has("name", P.Within("ripple", "josh", "marko")))).V().As("a").Out().In().As("b").Dedup("a", "b").Values("name")}}, + {"g_withStrategiesXSubgraphStrategyXvertexProperties_hasXstartTime_gtX2005XXXX_V_propertiesXlocationX_value", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has("startTime", P.Gt(2005)))).V().Properties("location").Value()}}, + {"g_withStrategiesXSubgraphStrategyXvertexProperties_hasXstartTime_gtX2005XXXX_V_valuesXlocationX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has("startTime", P.Gt(2005)))).V().Values("location")}}, + {"g_withStrategiesXSubgraphStrategyXvertexProperties_hasXstartTime_gtX2005XXXX_V_asXaX_propertiesXlocationX_asXbX_selectXaX_outE_properties_selectXbX_value_dedup", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has("startTime", P.Gt(2005)))).V().As("a").Properties("location").As("b").Select("a").OutE().Properties().Select("b").Value().Dedup()}}, + {"g_withStrategiesXSubgraphStrategyXvertexProperties_hasXstartTime_gtX2005XXXX_V_asXaX_valuesXlocationX_asXbX_selectXaX_outE_properties_selectXbX_dedup", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has("startTime", P.Gt(2005)))).V().As("a").Values("location").As("b").Select("a").OutE().Properties().Select("b").Dedup()}}, + {"g_withStrategiesXSubgraphStrategyXvertices_hasXname_neqXstephenXX_vertexProperties_hasXstartTime_gtX2005XXXX_V_propertiesXlocationX_value", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has("startTime", P.Gt(2005)), vertices: __.Has("name", P.Neq("stephen")))).V().Properties("location").Value()}}, + {"g_withStrategiesXSubgraphStrategyXvertices_hasXname_neqXstephenXX_vertexProperties_hasXstartTime_gtX2005XXXX_V_valuesXlocationX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has("startTime", P.Gt(2005)), vertices: __.Has("name", P.Neq("stephen")))).V().Values("location")}}, + {"g_withStrategiesXSubgraphStrategyXedges_hasLabelXusesX_hasXskill_5XXX_V_outE_valueMap_selectXvaluesX_unfold", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.HasLabel("uses").Has("skill", 5))).V().OutE().ValueMap().Select(Column.Values).Unfold()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphDXX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphDXX_E", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).E()}}, + {"g_withStrategiesXSubgraphStrategyXcheckAdjacentVertices_subgraphDXX_E", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: true, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).E()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphDXX_VX4X_outE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).OutE()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphDXX_VX4X_inE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).InE()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphDXX_VX4X_out", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).Out()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphDXX_VX4X_in", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).In()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphDXX_VX4X_both", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).Both()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphDXX_VX4X_bothE", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).BothE()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphDXX_VX4X_localXbothE_limitX1XX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).V(p["vid4"]).Local(__.BothE().Limit(1))}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphDXX_EX11X_bothV", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).E(p["eid11"]).BothV()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphDXX_EX12X_bothV", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).E(p["eid12"]).BothV()}}, + {"g_withStrategiesXSubgraphStrategyXsubgraphDXX_EX9X_bothV", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).E(p["eid9"]).BothV()}}, + {"g_withStrategiesXSubgraphStrategyXcheckAdjacentVertices_subgraphDXX_EX9X_bothV", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: true, vertices: __.Has("name", P.Within("josh", "lop", "ripple")), edges: __.Or(__.Has("weight", 0.4).HasLabel("created"), __.Has("weight", 1.0).HasLabel("created")))).E(p["eid9"]).BothV()}}, + {"g_withStrategiesXSubgraphStrategyXuseMapStepsInFilterX_E", new List, ITraversal>> {(g,p) =>g.WithStrategies(new SubgraphStrategy(edges: __.Label().Is(P.Eq("created")), vertices: __.Values("name").Is(P.Within("lop", "josh")), checkAdjacentVertices: true)).E()}}, + {"g_withStrategiesXVertexProgramRestrictionStrategyX_withoutStrategiesXVertexProgramStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new VertexProgramRestrictionStrategy()).WithoutStrategies(typeof(VertexProgramStrategy)).V()}}, + {"g_withStrategiesXVertexProgramRestrictionStrategy_VertexProgramStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new VertexProgramRestrictionStrategy(), new VertexProgramStrategy()).V()}}, + {"g_withoutStrategiesXVertexProgramRestrictionStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(VertexProgramRestrictionStrategy)).WithStrategies(new VertexProgramStrategy()).V()}}, + {"g_withStrategiesXVertexProgramStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithStrategies(new VertexProgramStrategy()).V()}}, + {"g_withoutStrategiesXVertexProgramStrategyX_V", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(VertexProgramStrategy)).V()}}, + {"g_VX1X_asXaX_outXcreatedX_addEXcreatedByX_toXaX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V(p["vid1"]).As("a").Out("created").AddE((string) "createdBy").To("a"), (g,p) =>g.E(), (g,p) =>g.V(p["vid1"]).InE()}}, + {"g_VX1X_asXaX_outXcreatedX_addEXcreatedByX_toXaX_propertyXweight_2X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V(p["vid1"]).As("a").Out("created").AddE((string) "createdBy").To("a").Property("weight", 2.0d), (g,p) =>g.E(), (g,p) =>g.V(p["vid1"]).BothE(), (g,p) =>g.V(p["vid1"]).InE().Has("weight", 2.0d)}}, + {"g_V_outE_propertyXweight_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().OutE().Property("weight", null), (g,p) =>g.E().Properties("weight")}}, + {"g_V_aggregateXxX_asXaX_selectXxX_unfold_addEXexistsWithX_toXaX_propertyXtime_nowX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Aggregate("x").As("a").Select("x").Unfold().AddE((string) "existsWith").To("a").Property("time", "now"), (g,p) =>g.E(), (g,p) =>g.V(p["vid1"]).BothE(), (g,p) =>g.V(p["vid1"]).InE("existsWith"), (g,p) =>g.V(p["vid1"]).OutE("existsWith"), (g,p) =>g.V(p["vid1"]).BothE("existsWith").Has("time", "now"), (g,p) =>g.V(p["vid2"]).BothE(), (g,p) =>g.V(p["vid2"]).InE("existsWith"), (g,p) =>g.V(p["vid2"]).OutE("existsWith"), (g,p) =>g.V(p["vid2"]).BothE("existsWith").Has("time", "now"), (g,p) =>g.V(p["vid3"]).BothE(), (g,p) =>g.V(p["vid3"]).InE("existsWith"), (g,p) =>g.V(p["vid3"]).OutE("existsWith"), (g,p) =>g.V(p["vid3"]).BothE("existsWith").Has("time", "now"), (g,p) =>g.V(p["vid4"]).BothE(), (g,p) =>g.V(p["vid4"]).InE("existsWith"), (g,p) =>g.V(p["vid4"]).OutE("existsWith"), (g,p) =>g.V(p["vid4"]).BothE("existsWith").Has("time", "now"), (g,p) =>g.V(p["vid5"]).BothE(), (g,p) =>g.V(p["vid5"]).InE("existsWith"), (g,p) =>g.V(p["vid5"]).OutE("existsWith"), (g,p) =>g.V(p["vid5"]).BothE("existsWith").Has("time", "now"), (g,p) =>g.V(p["vid6"]).BothE(), (g,p) =>g.V(p["vid6"]).InE("existsWith"), (g,p) =>g.V(p["vid6"]).OutE("existsWith"), (g,p) =>g.V(p["vid6"]).BothE("existsWith").Has("time", "now")}}, + {"g_V_asXaX_outXcreatedX_inXcreatedX_whereXneqXaXX_asXbX_addEXcodeveloperX_fromXaX_toXbX_propertyXyear_2009X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().As("a").Out("created").In("created").Where(P.Neq("a")).As("b").AddE((string) "codeveloper").From("a").To("b").Property("year", 2009), (g,p) =>g.E(), (g,p) =>g.V(p["vid1"]).BothE(), (g,p) =>g.V(p["vid1"]).InE("codeveloper"), (g,p) =>g.V(p["vid1"]).OutE("codeveloper"), (g,p) =>g.V(p["vid1"]).BothE("codeveloper").Has("year", 2009), (g,p) =>g.V(p["vid2"]).BothE(), (g,p) =>g.V(p["vid4"]).BothE(), (g,p) =>g.V(p["vid4"]).InE("codeveloper"), (g,p) =>g.V(p["vid4"]).OutE("codeveloper"), (g,p) =>g.V(p["vid4"]).BothE("codeveloper").Has("year", 2009), (g,p) =>g.V(p["vid6"]).BothE(), (g,p) =>g.V(p["vid6"]).InE("codeveloper"), (g,p) =>g.V(p["vid6"]).OutE("codeveloper"), (g,p) =>g.V(p["vid6"]).BothE("codeveloper").Has("year", 2009)}}, + {"g_V_asXaX_inXcreatedX_addEXcreatedByX_fromXaX_propertyXyear_2009X_propertyXacl_publicX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().As("a").In("created").AddE((string) "createdBy").From("a").Property("year", 2009).Property("acl", "public"), (g,p) =>g.E(), (g,p) =>g.V(p["vid1"]).BothE(), (g,p) =>g.V(p["vid1"]).InE("createdBy"), (g,p) =>g.V(p["vid1"]).OutE("createdBy"), (g,p) =>g.V(p["vid1"]).BothE("createdBy").Has("year", 2009).Has("acl", "public"), (g,p) =>g.V(p["vid2"]).BothE(), (g,p) =>g.V(p["vid3"]).BothE(), (g,p) =>g.V(p["vid3"]).InE("createdBy"), (g,p) =>g.V(p["vid3"]).OutE("createdBy"), (g,p) =>g.V(p["vid3"]).BothE("createdBy").Has("year", 2009).Has("acl", "public"), (g,p) =>g.V(p["vid4"]).BothE(), (g,p) =>g.V(p["vid4"]).InE("createdBy"), (g,p) =>g.V(p["vid4"]).OutE("createdBy"), (g,p) =>g.V(p["vid4"]).BothE("createdBy").Has("year", 2009).Has("acl", "public"), (g,p) =>g.V(p["vid5"]).BothE(), (g,p) =>g.V(p["vid5"]).InE("createdBy"), (g,p) =>g.V(p["vid5"]).OutE("createdBy"), (g,p) =>g.V(p["vid5"]).BothE("createdBy").Has("year", 2009).Has("acl", "public"), (g,p) =>g.V(p["vid6"]).BothE(), (g,p) =>g.V(p["vid6"]).InE("createdBy"), (g,p) =>g.V(p["vid6"]).OutE("createdBy"), (g,p) =>g.V(p["vid6"]).BothE("createdBy").Has("year", 2009).Has("acl", "public")}}, + {"g_withSideEffectXb_bX_VXaX_addEXknowsX_toXbX_propertyXweight_0_5X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V(p["vid1"]).AddE((string) "knows").To("b").Property("weight", 0.5d), (g,p) =>g.E(), (g,p) =>g.V(p["vid1"]).BothE(), (g,p) =>g.V(p["vid1"]).InE("knows"), (g,p) =>g.V(p["vid1"]).OutE("knows"), (g,p) =>g.V(p["vid1"]).BothE("knows").Has("weight", 0.5), (g,p) =>g.V(p["vid6"]).BothE(), (g,p) =>g.V(p["vid6"]).InE("knows"), (g,p) =>g.V(p["vid6"]).OutE("knows"), (g,p) =>g.V(p["vid6"]).BothE("knows").Has("weight", 0.5)}}, + {"g_addV_asXfirstX_repeatXaddEXnextX_toXaddVX_inVX_timesX5X_addEXnextX_toXselectXfirstXX", new List, ITraversal>> {(g,p) =>g.AddV().As("first").Repeat(__.AddE((string) "next").To(__.AddV()).InV()).Times(5).AddE((string) "next").To(__.Select("first")), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E().HasLabel("next"), (g,p) =>g.V().Limit(1).BothE(), (g,p) =>g.V().Limit(1).InE(), (g,p) =>g.V().Limit(1).OutE()}}, + {"g_V_hasXname_markoX_asXaX_outEXcreatedX_asXbX_inV_addEXselectXbX_labelX_toXaX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Has("name", "marko").As("a").OutE("created").As("b").InV().AddE(__.Select("b").Label()).To("a"), (g,p) =>g.E(), (g,p) =>g.V(p["vid1"]).BothE(), (g,p) =>g.V(p["vid1"]).InE("created"), (g,p) =>g.V(p["vid1"]).In("created").Has("name", "lop"), (g,p) =>g.V(p["vid1"]).OutE("created")}}, + {"g_addEXV_outE_label_groupCount_orderXlocalX_byXvalues_descX_selectXkeysX_unfold_limitX1XX_fromXV_hasXname_vadasXX_toXV_hasXname_lopXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.AddE(__.V().OutE().Label().GroupCount().Order(Scope.Local).By(Column.Values, Order.Desc).Select(Column.Keys).Unfold().Limit(1)).From(__.V().Has("name", "vadas")).To(__.V().Has("name", "lop")), (g,p) =>g.E(), (g,p) =>g.V(p["vid2"]).BothE(), (g,p) =>g.V(p["vid2"]).InE("knows"), (g,p) =>g.V(p["vid2"]).OutE("created"), (g,p) =>g.V(p["vid2"]).Out("created").Has("name", "lop")}}, + {"g_addEXknowsX_fromXVXvid1XX_toXVXvid6XX_propertyXweight_0_1X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.AddE((string) "knows").From(__.V(p["vid1"])).To(__.V(p["vid6"])).Property("weight", p["xx1"]), (g,p) =>g.E(), (g,p) =>g.V(p["vid1"]).OutE("knows"), (g,p) =>g.V(p["vid1"]).Out("knows").Has("name", "peter")}}, + {"g_addEXknowsvarX_fromXVXvid1XX_toXVXvid6XX_propertyXweight_0_1X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.AddE(new GValue("xx1", (string) p["xx1"])).From(__.V(p["vid1"])).To(__.V(p["vid6"])).Property("weight", p["xx2"]), (g,p) =>g.E(), (g,p) =>g.V(p["vid1"]).OutE("knows"), (g,p) =>g.V(p["vid1"]).Out("knows").Has("name", "peter")}}, + {"g_VXaX_addEXknowsX_toXbX_propertyXweight_0_1X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V(p["vid1"]).AddE((string) "knows").To(__.V(p["vid6"])).Property("weight", p["xx1"]), (g,p) =>g.E(), (g,p) =>g.V(p["vid1"]).OutE("knows"), (g,p) =>g.V(p["vid1"]).Out("knows").Has("name", "peter")}}, + {"g_addEXknowsXpropertyXweight_nullXfromXV_hasXname_markoXX_toXV_hasXname_vadasXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).AddV((string) "person").Property("name", "vadas").Property("age", 27), (g,p) =>g.AddE((string) "knows").Property("weight", null).From(__.V().Has("name", "marko")).To(__.V().Has("name", "vadas")), (g,p) =>g.E().Has("knows", "weight", (object) null)}}, + {"g_addEXknowsvarXpropertyXweight_nullXfromXV_hasXname_markoXX_toXV_hasXname_vadasXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).AddV((string) "person").Property("name", "vadas").Property("age", 27), (g,p) =>g.AddE(new GValue("xx1", (string) p["xx1"])).Property("weight", null).From(__.V().Has("name", "marko")).To(__.V().Has("name", "vadas")), (g,p) =>g.E().Has("knows", "weight", (object) null)}}, + {"g_unionXaddEXknowsvarXpropertyXweight_nullXfromXV_hasXname_markoXX_toXV_hasXname_vadasXXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).AddV((string) "person").Property("name", "vadas").Property("age", 27), (g,p) =>g.Union(__.AddE(new GValue("xx1", (string) p["xx1"])).Property("weight", 1).From(__.V().Has("name", "marko")).To(__.V().Has("name", "vadas"))), (g,p) =>g.E().Has("knows", "weight", 1)}}, + {"g_addEXedgeX_fromXV_hasXname_markoXX_toXV_hasXname_vadasXX_propertyXweight_0_5X_withXkey_valueX_valuesXweight_keyX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).AddV((string) "person").Property("name", "vadas").Property("age", 27), (g,p) =>g.AddE((string) "edge").From(__.V().Has("name", "marko")).To(__.V().Has("name", "vadas")).Property("weight", 0.5).With("key", "value").Values("weight", "key")}}, + {"g_addEXknowsX_fromXV_hasXname_markoXX_toXV_hasXname_vadasXX_propertyXweight_0_5X_addEXknowsX_fromXV_hasXname_markoXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).AddV((string) "person").Property("name", "vadas").Property("age", 27), (g,p) =>g.AddE((string) "knows").From(__.V().Has("name", "marko")).To(__.V().Has("name", "vadas")).Property("weight", 0.5).AddE((string) "knows").From(__.V().Has("name", "marko"))}}, + {"g_VX1X_addVXanimalX_propertyXage_selectXaX_byXageXX_propertyXname_puppyX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V(p["vid1"]).As("a").AddV((string) "animal").Property("age", __.Select("a").By("age")).Property("name", "puppy"), (g,p) =>g.V().Has("animal", "age", 29)}}, + {"g_V_addVXanimalX_propertyXage_0X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().AddV((string) "animal").Property("age", 0), (g,p) =>g.V().Has("animal", "age", 0)}}, + {"g_V_addVXanimalvarX_propertyXage_0varX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().AddV(new GValue("xx1", (string) p["xx1"])).Property("age", p["xx2"]), (g,p) =>g.V().Has("animal", "age", 0)}}, + {"g_addVXpersonX_propertyXname_stephenX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.AddV((string) "person").Property("name", "stephen"), (g,p) =>g.V().Has("person", "name", "stephen")}}, + {"g_addVXpersonvarX_propertyXname_stephenvarX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.AddV(new GValue("xx1", (string) p["xx1"])).Property("name", p["xx2"]), (g,p) =>g.V().Has("person", "name", "stephen")}}, + {"g_V_hasLabelXpersonX_propertyXname_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().HasLabel("person").Property(Cardinality.Single, "name", (object) null), (g,p) =>g.V().Properties("name")}}, + {"g_addVXpersonX_propertyXsingle_name_stephenX_propertyXsingle_name_stephenmX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.AddV((string) "person").Property(Cardinality.Single, "name", "stephen").Property(Cardinality.Single, "name", "stephenm"), (g,p) =>g.V().Has("person", "name", "stephen"), (g,p) =>g.V().Has("person", "name", "stephenm")}}, + {"get_g_addVXpersonX_propertyXsingle_name_stephenX_propertyXsingle_name_stephenm_since_2010X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.AddV((string) "person").Property(Cardinality.Single, "name", "stephen").Property(Cardinality.Single, "name", "stephenm", "since", 2010), (g,p) =>g.V().Has("person", "name", "stephen"), (g,p) =>g.V().Has("person", "name", "stephenm"), (g,p) =>g.V().Has("person", "name", "stephenm").Properties("name").Has("since", 2010)}}, + {"g_V_hasXname_markoX_propertyXfriendWeight_outEXknowsX_weight_sum__acl_privateX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Has("name", "marko").Property("friendWeight", __.OutE("knows").Values("weight").Sum(), "acl", "private"), (g,p) =>g.V().Has("person", "name", "marko").Has("friendWeight", 1.5), (g,p) =>g.V().Has("person", "name", "marko").Properties("friendWeight").Has("acl", "private"), (g,p) =>g.V().Has("person", "name", "marko").Properties("friendWeight").Count()}}, + {"g_addVXanimalX_propertyXname_mateoX_propertyXname_gateoX_propertyXname_cateoX_propertyXage_5X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.AddV((string) "animal").Property("name", "mateo").Property("name", "gateo").Property("name", "cateo").Property("age", 5), (g,p) =>g.V().HasLabel("animal").Has("name", "mateo").Has("name", "gateo").Has("name", "cateo").Has("age", 5)}}, + {"g_withSideEffectXa_markoX_addV_propertyXname_selectXaXX_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.WithSideEffect("a", "marko").AddV().Property("name", __.Select("a")).Values("name"), (g,p) =>g.V().Has("name", "marko")}}, + {"g_addVXpersonX_propertyXsingle_name_stephenX_propertyXsingle_name_stephenm_since_2010X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.AddV((string) "person").Property(Cardinality.Single, "name", "stephen").Property(Cardinality.Single, "name", "stephenm", "since", 2010), (g,p) =>g.V().Has("name", "stephen"), (g,p) =>g.V().Has("name", "stephenm"), (g,p) =>g.V().Has("name", "stephenm").Properties("name").Has("since", 2010)}}, + {"g_V_addVXanimalX_propertyXname_valuesXnameXX_propertyXname_an_animalX_propertyXvaluesXnameX_labelX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().AddV((string) "animal").Property("name", __.Values("name")).Property("name", "an animal").Property(__.Values("name"), __.Label()), (g,p) =>g.V().HasLabel("animal").Has("name", "marko").Has("name", "an animal").Has("marko", "person"), (g,p) =>g.V().HasLabel("animal").Has("name", "vadas").Has("name", "an animal").Has("vadas", "person"), (g,p) =>g.V().HasLabel("animal").Has("name", "lop").Has("name", "an animal").Has("lop", "software"), (g,p) =>g.V().HasLabel("animal").Has("name", "josh").Has("name", "an animal").Has("josh", "person"), (g,p) =>g.V().HasLabel("animal").Has("name", "ripple").Has("name", "an animal").Has("ripple", "software"), (g,p) =>g.V().HasLabel("animal").Has("name", "peter").Has("name", "an animal").Has("peter", "person")}}, + {"g_withSideEffectXa_testX_V_hasLabelXsoftwareX_propertyXtemp_selectXaXX_valueMapXname_tempX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.WithSideEffect("a", "test").V().HasLabel("software").Property("temp", __.Select("a")).ValueMap("name", "temp")}}, + {"g_withSideEffectXa_nameX_addV_propertyXselectXaX_markoX_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.WithSideEffect("a", "name").AddV().Property(__.Select("a"), "marko").Values("name"), (g,p) =>g.V().Has("name", "marko")}}, + {"g_V_asXaX_hasXname_markoX_outXcreatedX_asXbX_addVXselectXaX_labelX_propertyXtest_selectXbX_labelX_valueMap_withXtokensX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().As("a").Has("name", "marko").Out("created").As("b").AddV(__.Select("a").Label()).Property("test", __.Select("b").Label()).ValueMap().With(WithOptions.Tokens), (g,p) =>g.V().Has("person", "test", "software")}}, + {"g_addVXV_hasXname_markoX_propertiesXnameX_keyX_label", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.AddV(__.V().Has("name", "marko").Properties("name").Key()).Label()}}, + {"g_addV_propertyXlabel_personX", new List, ITraversal>> {(g,p) =>g.AddV().Property(T.Label, "person"), (g,p) =>g.V().HasLabel("person")}}, + {"g_addV_propertyXlabel_personvarX", new List, ITraversal>> {(g,p) =>g.AddV().Property(T.Label, p["xx1"]), (g,p) =>g.V().HasLabel("person")}}, + {"g_addV_propertyXid_1X", new List, ITraversal>> {(g,p) =>g.AddV().Property(T.Id, 1), (g,p) =>g.V().HasId("1")}}, + {"g_addV_propertyXidvar_1varX", new List, ITraversal>> {(g,p) =>g.AddV().Property(T.Id, p["xx1"]), (g,p) =>g.V().HasId("1")}}, + {"g_addV_propertyXmapX", new List, ITraversal>> {(g,p) =>g.AddV().Property(new Dictionary {{ "name", "foo" }, { "age", 42 }}), (g,p) =>g.V().Has("name", "foo")}}, + {"g_addV_propertyXsingle_mapX", new List, ITraversal>> {(g,p) =>g.AddV().Property(Cardinality.Single, new Dictionary {{ "name", "foo" }, { "age", 42 }}), (g,p) =>g.V().Has("name", "foo")}}, + {"g_V_hasXname_fooX_propertyXname_setXbarX_age_43X", new List, ITraversal>> {(g,p) =>g.AddV().Property(Cardinality.Single, "name", "foo").Property("age", 42), (g,p) =>g.V().Has("name", "foo").Property(new Dictionary {{ "name", CardinalityValue.Set("bar") }, { "age", 43 }}), (g,p) =>g.V().Has("name", "foo"), (g,p) =>g.V().Has("name", "bar"), (g,p) =>g.V().Has("age", 43), (g,p) =>g.V().Has("age", 42)}}, + {"g_V_hasXname_fooX_propertyXset_name_bar_age_singleX43XX", new List, ITraversal>> {(g,p) =>g.AddV().Property(Cardinality.Single, "name", "foo").Property("age", 42), (g,p) =>g.V().Has("name", "foo").Property(Cardinality.Set, new Dictionary {{ "name", "bar" }, { "age", CardinalityValue.Single(43) }}), (g,p) =>g.V().Has("name", "foo"), (g,p) =>g.V().Has("name", "bar"), (g,p) =>g.V().Has("age", 43), (g,p) =>g.V().Has("age", 42)}}, + {"g_addV_propertyXnullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property(null), (g,p) =>g.V().HasLabel("person").Values()}}, + {"g_addV_propertyXemptyX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property(new Dictionary {}), (g,p) =>g.V().HasLabel("person").Values()}}, + {"g_addV_propertyXset_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "foo").Property(Cardinality.Set, null), (g,p) =>g.V().HasLabel("foo").Values()}}, + {"g_addV_propertyXset_emptyX", new List, ITraversal>> {(g,p) =>g.AddV((string) "foo").Property(Cardinality.Set, new Dictionary {}), (g,p) =>g.V().HasLabel("person").Values()}}, + {"g_addVXpersonX_propertyXname_joshX_propertyXage_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "josh").Property("age", null), (g,p) =>g.V().Has("person", "age", (object) null)}}, + {"g_addVXpersonX_propertyXname_markoX_propertyXfriendWeight_null_acl_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("friendWeight", null, "acl", null), (g,p) =>g.V().Has("person", "name", "marko").Has("friendWeight", (object) null), (g,p) =>g.V().Has("person", "name", "marko").Properties("friendWeight").Has("acl", (object) null), (g,p) =>g.V().Has("person", "name", "marko").Properties("friendWeight").Count()}}, + {"g_V_hasXperson_name_aliceX_propertyXsingle_age_unionXage_constantX1XX_sumX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").Property(Cardinality.Single, "age", 50), (g,p) =>g.V().Has("person", "name", "alice").Property("age", __.Union(__.Values("age"), __.Constant(1)).Sum()), (g,p) =>g.V().Has("person", "age", 50), (g,p) =>g.V().Has("person", "age", 51)}}, + {"g_V_limitX3X_addVXsoftwareX_aggregateXa1X_byXlabelX_aggregateXa2X_byXlabelX_capXa1_a2X_selectXa_bX_byXunfoldX_foldX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Limit(3).AddV((string) "software").Aggregate("a1").By(T.Label).Aggregate("a2").By(T.Label).Cap("a1", "a2").Select("a1", "a2").By(__.Unfold().Fold())}}, + {"g_addV_propertyXname_markoX_withXkey_valueX_valuesXname_keyX", new List, ITraversal>> {(g,p) =>g.AddV().Property("name", "marko").With("key", "value").Values("name", "key")}}, + {"g_addV_propertyXname_marko_since_2010X_withXkey_valueX_propertiesXnameX_valuesXsince_keyX", new List, ITraversal>> {(g,p) =>g.AddV().Property("name", "marko", "since", 2010).With("key", "value").Properties("name").Values("since", "key")}}, + {"g_injectX1X_asBool", new List, ITraversal>> {(g,p) =>g.Inject(1).AsBool()}}, + {"g_injectX3_14X_asBool", new List, ITraversal>> {(g,p) =>g.Inject(3.14).AsBool()}}, + {"g_injectXneg_1X_asBool", new List, ITraversal>> {(g,p) =>g.Inject(-1).AsBool()}}, + {"g_injectX0X_asBool", new List, ITraversal>> {(g,p) =>g.Inject(0).AsBool()}}, + {"g_injectXneg_0X_asBool", new List, ITraversal>> {(g,p) =>g.Inject(-0.0).AsBool()}}, + {"g_injectXNaNX_asBool", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).AsBool()}}, + {"g_injectXbool_trueX_asBool", new List, ITraversal>> {(g,p) =>g.Inject(true).AsBool()}}, + {"g_injectXfalseX_asBool", new List, ITraversal>> {(g,p) =>g.Inject(false).AsBool()}}, + {"g_injectXtrueX_asBool", new List, ITraversal>> {(g,p) =>g.Inject("true").AsBool()}}, + {"g_injectXmixed_trueX_asBool", new List, ITraversal>> {(g,p) =>g.Inject("tRUe").AsBool()}}, + {"g_injectXnullX_asBool", new List, ITraversal>> {(g,p) =>g.Inject(null).AsBool()}}, + {"g_injectXhelloX_asBool", new List, ITraversal>> {(g,p) =>g.Inject("hello").AsBool()}}, + {"g_injectX1_2X_asBool", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2 }).AsBool()}}, + {"g_VXX_localX_outE_countX_asBool", new List, ITraversal>> {(g,p) =>g.V().Local(__.OutE().Count()).AsBool()}}, + {"g_V_sackXassignX_byX_hasLabelXpersonX_count_asBoolX_sackXandX_byX_outE_count_asBoolX_sack_path", new List, ITraversal>> {(g,p) =>g.V().Sack(Operator.Assign).By(__.HasLabel("person").Count().AsBool()).Sack(Operator.And).By(__.OutE().Count().AsBool()).Sack().Path()}}, + {"g_injectXstrX_asDate", new List, ITraversal>> {(g,p) =>g.Inject("2023-08-02T00:00:00Z").AsDate()}}, + {"g_injectXstr_offsetX_asDate", new List, ITraversal>> {(g,p) =>g.Inject("2023-08-02T00:00:00-07:00").AsDate()}}, + {"g_injectX1694017707000X_asDate", new List, ITraversal>> {(g,p) =>g.Inject(1694017707000).AsDate()}}, + {"g_injectX1694017708000LX_asDate", new List, ITraversal>> {(g,p) =>g.Inject(1694017708000l).AsDate()}}, + {"g_injectX1694017709000dX_asDate", new List, ITraversal>> {(g,p) =>g.Inject(1694017709000.1d).AsDate()}}, + {"g_injectX1_2X_asDate", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2 }).AsDate()}}, + {"g_injectXnullX_asDate", new List, ITraversal>> {(g,p) =>g.Inject(null).AsDate()}}, + {"g_injectXinvalidstrX_asDate", new List, ITraversal>> {(g,p) =>g.Inject("This String is not an ISO 8601 Date").AsDate()}}, + {"g_V_valuesXbirthdayX_asDate_asNumber_asDate", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").Property("birthday", "2020-08-02").AddV((string) "person").Property("name", "john").Property("birthday", "1988-12-10").AddV((string) "person").Property("name", "charlie").Property("birthday", "2002-02-01").AddV((string) "person").Property("name", "suzy").Property("birthday", "1965-10-31"), (g,p) =>g.V().Values("birthday").AsDate().AsNumber().AsDate()}}, + {"g_injectX5bX_asNumber", new List, ITraversal>> {(g,p) =>g.Inject((sbyte) 5).AsNumber()}}, + {"g_injectX5sX_asNumber", new List, ITraversal>> {(g,p) =>g.Inject((short) 5).AsNumber()}}, + {"g_injectX5iX_asNumber", new List, ITraversal>> {(g,p) =>g.Inject(5).AsNumber()}}, + {"g_injectX5lX_asNumber", new List, ITraversal>> {(g,p) =>g.Inject(5l).AsNumber()}}, + {"g_injectX5nX_asNumber", new List, ITraversal>> {(g,p) =>g.Inject(BigInteger.Parse("5")).AsNumber()}}, + {"g_injectX5_0X_asNumber", new List, ITraversal>> {(g,p) =>g.Inject(5.0).AsNumber()}}, + {"g_injectX5_75fX_asNumber", new List, ITraversal>> {(g,p) =>g.Inject(5.75f).AsNumber()}}, + {"g_injectX5X_asNumber", new List, ITraversal>> {(g,p) =>g.Inject("5").AsNumber()}}, + {"g_injectXtestX_asNumber", new List, ITraversal>> {(g,p) =>g.Inject("test").AsNumber()}}, + {"g_injectX_1_2_3_4X_asNumber", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2, 3, 4 }).AsNumber()}}, + {"g_injectX1_2_3_4X_unfold_asNumber", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2, 3, 4 }).Unfold().AsNumber()}}, + {"g_injectX_1__2__3__4_X_asNumberXX_foldXX", new List, ITraversal>> {(g,p) =>g.Inject("1", 2, "3", 4).AsNumber().Fold()}}, + {"g_injectX5_43X_asNumberXGType_INTX", new List, ITraversal>> {(g,p) =>g.Inject(5.43).AsNumber(GType.Int)}}, + {"g_injectX5_67X_asNumberXGType_INTX", new List, ITraversal>> {(g,p) =>g.Inject(5.67).AsNumber(GType.Int)}}, + {"g_injectX5X_asNumberXGType_LONGX", new List, ITraversal>> {(g,p) =>g.Inject(5).AsNumber(GType.Long)}}, + {"g_injectX12X_asNumberXGType_BYTEX", new List, ITraversal>> {(g,p) =>g.Inject(12).AsNumber(GType.Byte)}}, + {"g_injectX32768X_asNumberXGType_SHORTX", new List, ITraversal>> {(g,p) =>g.Inject(32768).AsNumber(GType.Short)}}, + {"g_injectX300X_asNumberXGType_BYTEX", new List, ITraversal>> {(g,p) =>g.Inject(300).AsNumber(GType.Byte)}}, + {"g_injectX32768X_asNumberXGType_VertexX", new List, ITraversal>> {(g,p) =>g.Inject(32768).AsNumber(GType.Vertex)}}, + {"g_injectX5X_asNumberXGType_BYTEX", new List, ITraversal>> {(g,p) =>g.Inject("5").AsNumber(GType.Byte)}}, + {"g_injectX1_000X_asNumberXGType_BIGINTX", new List, ITraversal>> {(g,p) =>g.Inject("1,000").AsNumber(GType.BigInt)}}, + {"g_injectX1_2_3_4_0x5X_asNumber_sum_asNumberXGType_BYTEX", new List, ITraversal>> {(g,p) =>g.Inject(1.0, 2, 3, "4", "0x5").AsNumber().Sum().AsNumber(GType.Byte)}}, + {"g_injectXnullX_asNumberXGType_INTX", new List, ITraversal>> {(g,p) =>g.Inject(null).AsNumber(GType.Int)}}, + {"g_V_asXaX_outXknowsX_asXbX_mathXa_plus_bX_byXageX_asNumberXGType_INTX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out("knows").As("b").Math("a + b").By("age").AsNumber(GType.Int)}}, + {"g_withSideEffectXx_100X_V_age_mathX__plus_xX_asNumberXGType_LONGX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("x", 100).V().Values("age").Math("_ + x").AsNumber(GType.Long)}}, + {"g_V_valuesXageX_asString_asNumberXGType_DOUBLEX", new List, ITraversal>> {(g,p) =>g.V().Values("age").AsString().AsNumber(GType.Double)}}, + {"g_V_valuesXbirthdayX_asNumber_asDate_asNumber", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").Property("birthday", 1596326400000).AddV((string) "person").Property("name", "john").Property("birthday", 597715200000).AddV((string) "person").Property("name", "charlie").Property("birthday", 1012521600000).AddV((string) "person").Property("name", "suzy").Property("birthday", -131587200000), (g,p) =>g.V().Values("birthday").AsNumber().AsDate().AsNumber()}}, + {"g_injectX1_2X_asString", new List, ITraversal>> {(g,p) =>g.Inject(1, 2).AsString()}}, + {"g_injectX1_2X_asStringXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(1, 2).AsString(Scope.Local)}}, + {"g_injectXlist_1_2X_asStringXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2 }).AsString(Scope.Local)}}, + {"g_injectX1_nullX_asString", new List, ITraversal>> {(g,p) =>g.Inject(null, 1).AsString()}}, + {"g_injectX1_nullX_asStringXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, null }).AsString(Scope.Local)}}, + {"g_V_valueMapXnameX_asString", new List, ITraversal>> {(g,p) =>g.V().ValueMap("name").AsString()}}, + {"g_V_valueMapXnameX_order_fold_asStringXlocalX", new List, ITraversal>> {(g,p) =>g.V().ValueMap("name").Order().Fold().AsString(Scope.Local)}}, + {"g_V_asString", new List, ITraversal>> {(g,p) =>g.V().AsString()}}, + {"g_V_fold_asStringXlocalX_orderXlocalX", new List, ITraversal>> {(g,p) =>g.V().Fold().AsString(Scope.Local).Order(Scope.Local)}}, + {"g_E_asString", new List, ITraversal>> {(g,p) =>g.E().AsString()}}, + {"g_V_properties", new List, ITraversal>> {(g,p) =>g.V().Properties().AsString()}}, + {"g_V_hasLabelXpersonX_valuesXageX_asString", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("age").AsString()}}, + {"g_V_hasLabelXpersonX_valuesXageX_order_fold_asStringXlocalX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("age").Order().Fold().AsString(Scope.Local)}}, + {"g_V_hasLabelXpersonX_valuesXageX_asString_concatX_years_oldX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("age").AsString().Concat(" years old")}}, + {"g_V_outEXknowsX_subgraphXsgX_capXsgX_asString", new List, ITraversal>> {(g,p) =>g.V().OutE("knows").Subgraph("sg").Cap("sg").AsString()}}, + {"g_call", new List, ITraversal>> {(g,p) =>g.Call()}}, + {"g_callXlistX", new List, ITraversal>> {(g,p) =>g.Call((string) "--list")}}, + {"g_callXlistX_withXstring_stringX", new List, ITraversal>> {(g,p) =>g.Call((string) "--list").With("service", "tinker.search")}}, + {"g_callXlistX_withXstring_traversalX", new List, ITraversal>> {(g,p) =>g.Call((string) "--list").With("service", __.Constant("tinker.search"))}}, + {"g_callXlist_mapX", new List, ITraversal>> {(g,p) =>g.Call("--list", new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_callXlist_traversalX", new List, ITraversal>> {(g,p) =>g.Call("--list", (ITraversal) __.Project("service").By(__.Constant("tinker.search")))}}, + {"g_callXlist_map_traversalX", new List, ITraversal>> {(g,p) =>g.Call("--list", new GValue>("xx1", (IDictionary) p["xx1"]), (ITraversal) __.Project("service").By(__.Constant("tinker.search")))}}, + {"g_callXsearch_mapX", new List, ITraversal>> {(g,p) =>g.Call("tinker.search", new GValue>("xx1", (IDictionary) p["xx1"])).Element()}}, + {"g_callXsearch_traversalX", new List, ITraversal>> {(g,p) =>g.Call("tinker.search", (ITraversal) __.Project("search").By(__.Constant("vada"))).Element()}}, + {"g_callXsearchX_withXstring_stringX", new List, ITraversal>> {(g,p) =>g.Call((string) "tinker.search").With("search", "vada").Element()}}, + {"g_callXsearchX_withXstring_traversalX", new List, ITraversal>> {(g,p) =>g.Call((string) "tinker.search").With("search", __.Constant("vada")).Element()}}, + {"g_callXsearch_mapX_withXstring_VertexX", new List, ITraversal>> {(g,p) =>g.Call("tinker.search", new GValue>("xx1", (IDictionary) p["xx1"])).With("type", "Vertex").Element()}}, + {"g_callXsearch_mapX_withXstring_EdgeX", new List, ITraversal>> {(g,p) =>g.Call("tinker.search", new GValue>("xx1", (IDictionary) p["xx1"])).With("type", "Edge").Element()}}, + {"g_callXsearch_mapX_withXstring_VertexPropertyX", new List, ITraversal>> {(g,p) =>g.Call("tinker.search", new GValue>("xx1", (IDictionary) p["xx1"])).With("type", "VertexProperty").Element()}}, + {"g_V_callXdcX", new List, ITraversal>> {(g,p) =>g.V().As("v").Call((string) "tinker.degree.centrality").Project("vertex", "degree").By(__.Select("v")).By()}}, + {"g_V_whereXcallXdcXX", new List, ITraversal>> {(g,p) =>g.V().Where(__.Call((string) "tinker.degree.centrality").Is(3))}}, + {"g_V_callXdcX_withXdirection_OUTX", new List, ITraversal>> {(g,p) =>g.V().As("v").Call((string) "tinker.degree.centrality").With("direction", Direction.Out).Project("vertex", "degree").By(__.Select("v")).By()}}, + {"g_V_callXdc_mapX_withXdirection_OUTX", new List, ITraversal>> {(g,p) =>g.V().As("v").Call("tinker.degree.centrality", new GValue>("xx1", (IDictionary) p["xx1"])).With("direction", Direction.Out).Project("vertex", "degree").By(__.Select("v")).By()}}, + {"g_V_callXdc_traversalX", new List, ITraversal>> {(g,p) =>g.V().As("v").Call("tinker.degree.centrality", (ITraversal) __.Project("direction").By(__.Constant(Direction.Out))).Project("vertex", "degree").By(__.Select("v")).By()}}, + {"g_V_callXdc_map_traversalX", new List, ITraversal>> {(g,p) =>g.V().As("v").Call("tinker.degree.centrality", new GValue>("xx1", (IDictionary) p["xx1"]), (ITraversal) __.Project("direction").By(__.Constant(Direction.Out))).Project("vertex", "degree").By(__.Select("v")).By()}}, + {"g_V_coalesceXoutXfooX_outXbarXX", new List, ITraversal>> {(g,p) =>g.V().Coalesce(__.Out("foo"), __.Out("bar"))}}, + {"g_VX1X_coalesceXoutXknowsX_outXcreatedXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Coalesce(__.Out("knows"), __.Out("created")).Values("name")}}, + {"g_VX1X_coalesceXoutXcreatedX_outXknowsXX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Coalesce(__.Out("created"), __.Out("knows")).Values("name")}}, + {"g_V_coalesceXoutXlikesX_outXknowsX_inXcreatedXX_groupCount_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Coalesce(__.Out("likes"), __.Out("knows"), __.Out("created")).GroupCount().By("name")}}, + {"g_V_coalesceXoutEXknowsX_outEXcreatedXX_otherV_path_byXnameX_byXlabelX", new List, ITraversal>> {(g,p) =>g.V().Coalesce(__.OutE("knows"), __.OutE("created")).OtherV().Path().By("name").By(T.Label)}}, + {"g_V_outXcreatedX_order_byXnameX_coalesceXname_constantXxXX", new List, ITraversal>> {(g,p) =>g.V().Out("created").Order().By("name").Coalesce(__.Values("name"), __.Constant("x"))}}, + {"g_injectXnullX_combineXinjectX1XX", new List, ITraversal>> {(g,p) =>g.Inject(null).Combine(__.Inject(1))}}, + {"g_V_valuesXnameX_combineXV_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Combine(__.V().Fold())}}, + {"g_V_fold_combineXconstantXnullXX", new List, ITraversal>> {(g,p) =>g.V().Fold().Combine(__.Constant(null))}}, + {"g_V_fold_combineXVX", new List, ITraversal>> {(g,p) =>g.V().Fold().Combine(__.V())}}, + {"g_V_valuesXnameX_fold_combineX2X", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Combine(2)}}, + {"g_V_valuesXnameX_fold_combineXnullX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Combine(null)}}, + {"g_V_valuesXnonexistantX_fold_combineXV_valuesXnameX_foldX_unfold", new List, ITraversal>> {(g,p) =>g.V().Values("nonexistant").Fold().Combine(__.V().Values("name").Fold()).Unfold()}}, + {"g_V_valuesXnameX_fold_combineXV_valuesXnonexistantX_foldX_unfold", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Combine(__.V().Values("nonexistant").Fold()).Unfold()}}, + {"g_V_valuesXageX_order_byXdescX_fold_combineXV_valuesXageX_order_byXdescX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Order().By(Order.Desc).Fold().Combine(__.V().Values("age").Order().By(Order.Desc).Fold())}}, + {"g_V_out_path_byXvaluesXnameX_toUpperX_combineXMARKOX", new List, ITraversal>> {(g,p) =>g.V().Out().Path().By(__.Values("name").ToUpper()).Combine(new List { "MARKO" })}}, + {"g_injectXxx1X_combineXV_valuesXnameX_foldX_unfold", new List, ITraversal>> {(g,p) =>g.Inject(new List { "marko" }).Combine(__.V().Values("name").Fold()).Unfold()}}, + {"g_V_valueMapXlocationX_selectXvaluesX_unfold_combineXseattle_vancouverX_orderXlocalX", new List, ITraversal>> {(g,p) =>g.V().ValueMap("location").Select(Column.Values).Unfold().Combine(new List { "seattle", "vancouver" }).Order(Scope.Local)}}, + {"g_V_out_out_path_byXnameX_combineXempty_listX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Combine(new List { })}}, + {"g_V_valuesXageX_order_fold_combineXconstantX27X_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Order().Fold().Combine(__.Constant(27).Fold())}}, + {"g_V_out_out_path_byXnameX_combineXdave_kelvinX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Combine(new List { "dave", "kelvin" })}}, + {"g_injectXa_null_bX_combineXa_cX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Combine(new List { "a", "c" })}}, + {"g_injectXa_null_bX_combineXa_null_cX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Combine(new List { "a", null, "c" })}}, + {"g_injectX3_threeX_combineXfive_three_7X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 3, "three" }).Combine(new List { "five", "three", 7 })}}, + {"g_injectXa_bX_concat", new List, ITraversal>> {(g,p) =>g.Inject("a", "b").Concat()}}, + {"g_injectXa_bX_concat_XcX", new List, ITraversal>> {(g,p) =>g.Inject("a", "b").Concat("c")}}, + {"g_injectXa_bX_concat_Xc_dX", new List, ITraversal>> {(g,p) =>g.Inject("a", "b").Concat("c", "d")}}, + {"g_injectXa_bX_concat_Xinject_c_dX", new List, ITraversal>> {(g,p) =>g.Inject("a", "b").Concat(__.Inject("c"))}}, + {"g_injectXaX_concat_Xinject_List_b_cX", new List, ITraversal>> {(g,p) =>g.Inject("a").Concat(__.Inject(new List { "b", "c" }))}}, + {"g_injectXListXa_bXcX_concat_XdX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", "b" }, "c").Concat("d")}}, + {"g_injectXnullX_concat_XinjectX", new List, ITraversal>> {(g,p) =>g.Inject(null).Concat()}}, + {"g_injectXnull_aX_concat_Xnull_bX", new List, ITraversal>> {(g,p) =>g.Inject(null, "a").Concat(null, "b")}}, + {"g_injectXhello_hiX_concatXV_values_order_byXnameX_valuesXnameXX", new List, ITraversal>> {(g,p) =>g.Inject("hello", "hi").Concat(__.V().Order().By("name").Values("name"))}}, + {"g_V_hasLabel_value_concat_X_X_concat_XpersonX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").Concat(" ").Concat("person")}}, + {"g_hasLabelXpersonX_valuesXnameX_asXaX_constantXMrX_concatXselectXaX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").As("a").Constant("Mr.").Concat(__.Select("a"))}}, + {"g_hasLabelXsoftwareX_asXaX_valuesXnameX_concatXunsesX_concatXselectXaXvaluesXlangX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").As("a").Values("name").Concat(" uses ").Concat(__.Select("a").Values("lang"))}}, + {"g_VX1X_outE_asXaX_VX1X_valuesXnamesX_concatXselectXaX_labelX_concatXselectXaX_inV_valuesXnameXX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE().As("a").V(p["vid1"]).Values("name").Concat(__.Select("a").Label()).Concat(__.Select("a").InV().Values("name"))}}, + {"g_VX1X_outE_asXaX_VX1X_valuesXnamesX_concatXselectXaX_label_selectXaX_inV_valuesXnameXX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE().As("a").V(p["vid1"]).Values("name").Concat(__.Select("a").Label(), __.Select("a").InV().Values("name"))}}, + {"g_addVXconstantXprefix_X_concatXVX1X_labelX_label", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.AddV(__.Constant("prefix_").Concat(__.V(p["vid1"]).Label())).Label()}}, + {"g_injectXnullX_conjoinX1X", new List, ITraversal>> {(g,p) =>g.Inject(null).Conjoin((string) "1")}}, + {"g_V_valuesXnameX_conjoinX1X", new List, ITraversal>> {(g,p) =>g.V().Values("name").Conjoin((string) "1")}}, + {"g_V_valuesXnonexistantX_fold_conjoinX_X", new List, ITraversal>> {(g,p) =>g.V().Values("nonexistant").Fold().Conjoin((string) ";")}}, + {"g_V_valuesXnameX_order_fold_conjoinX_X", new List, ITraversal>> {(g,p) =>g.V().Values("name").Order().Fold().Conjoin((string) "_")}}, + {"g_V_valuesXageX_order_fold_conjoinXsemicolonX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Order().Fold().Conjoin((string) ";")}}, + {"g_V_out_path_byXvaluesXnameX_toUpperX_conjoinXMARKOX", new List, ITraversal>> {(g,p) =>g.V().Out().Path().By(__.Values("name").ToUpper()).Conjoin((string) "MARKO")}}, + {"g_injectXmarkoX_conjoinX_X", new List, ITraversal>> {(g,p) =>g.Inject(new List { "marko" }).Conjoin((string) "-")}}, + {"g_V_valueMapXlocationX_selectXvaluesX_unfold_orderXlocalX_conjoinX1X", new List, ITraversal>> {(g,p) =>g.V().ValueMap("location").Select(Column.Values).Unfold().Order(Scope.Local).Conjoin((string) "1")}}, + {"g_V_out_out_path_byXnameX_conjoinXX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Conjoin((string) "")}}, + {"g_injectXa_null_bX_conjoinXxyzX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Conjoin((string) "xyz")}}, + {"g_injectX3_threeX_conjoinX_X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 3, "three" }).Conjoin((string) ";")}}, + {"g_injectXnull_a_null_bX_conjoinXplusX", new List, ITraversal>> {(g,p) =>g.Inject(new List { null, "a", null, "b" }).Conjoin((string) "+")}}, + {"g_injectXnull_nullX_conjoinXplusX", new List, ITraversal>> {(g,p) =>g.Inject(new List { null, null }).Conjoin((string) "+")}}, + {"g_V_connectedComponent_hasXcomponentX", new List, ITraversal>> {(g,p) =>g.V().ConnectedComponent().Has("gremlin.connectedComponentVertexProgram.component")}}, + {"g_V_dedup_connectedComponent_hasXcomponentX", new List, ITraversal>> {(g,p) =>g.V().Dedup().ConnectedComponent().Has("gremlin.connectedComponentVertexProgram.component")}}, + {"g_V_hasLabelXsoftwareX_connectedComponent_project_byXnameX_byXcomponentX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").ConnectedComponent().Project("name", "component").By("name").By("gremlin.connectedComponentVertexProgram.component")}}, + {"g_V_connectedComponent_withXEDGES_bothEXknowsXX_withXPROPERTY_NAME_clusterX_project_byXnameX_byXclusterX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").ConnectedComponent().With("~tinkerpop.connectedComponent.edges", __.BothE("knows")).With("~tinkerpop.connectedComponent.propertyName", "cluster").Project("name", "cluster").By("name").By("cluster")}}, + {"g_V_constantX123X", new List, ITraversal>> {(g,p) =>g.V().Constant(123)}}, + {"g_V_constantXnullX", new List, ITraversal>> {(g,p) =>g.V().Constant(null)}}, + {"g_V_chooseXhasLabelXpersonX_valuesXnameX_constantXinhumanXX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.HasLabel("person"), __.Values("name"), __.Constant("inhuman"))}}, + {"g_V_count", new List, ITraversal>> {(g,p) =>g.V().Count()}}, + {"g_V_out_count", new List, ITraversal>> {(g,p) =>g.V().Out().Count()}}, + {"g_V_both_both_count", new List, ITraversal>> {(g,p) =>g.V().Both().Both().Count()}}, + {"g_V_fold_countXlocalX", new List, ITraversal>> {(g,p) =>g.V().Fold().Count(Scope.Local)}}, + {"g_V_hasXnoX_count", new List, ITraversal>> {(g,p) =>g.V().Has("no").Count()}}, + {"g_V_whereXinXkknowsX_outXcreatedX_count_is_0XX_name", new List, ITraversal>> {(g,p) =>g.V().Where(__.In("knows").Out("created").Count().Is(0)).Values("name")}}, + {"g_V_repeatXoutX_timesX8X_count", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out()).Times(8).Count()}}, + {"g_V_repeatXoutX_timesX5X_asXaX_outXwrittenByX_asXbX_selectXa_bX_count", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out()).Times(5).As("a").Out("writtenBy").As("b").Select("a", "b").Count()}}, + {"g_V_repeatXoutX_timesX3X_count", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out()).Times(3).Count()}}, + {"g_V_order_byXlangX_count", new List, ITraversal>> {(g,p) =>g.V().Order().By("lang").Count()}}, + {"g_E_sampleX1X_count", new List, ITraversal>> {(g,p) =>g.E().Sample(1).Count()}}, + {"g_V_sampleX1X_byXageX_count", new List, ITraversal>> {(g,p) =>g.V().Sample(1).By("age").Count()}}, + {"g_V_order_byXnoX_count", new List, ITraversal>> {(g,p) =>g.V().Order().By("no").Count()}}, + {"g_V_group_byXlabelX_count", new List, ITraversal>> {(g,p) =>g.V().Group().By(T.Label).Count()}}, + {"g_V_group_byXlabelX_countXlocalX", new List, ITraversal>> {(g,p) =>g.V().Group().By(T.Label).Count(Scope.Local)}}, + {"g_injectXdatetimeXstrXX_dateAddXDT_hour_2X", new List, ITraversal>> {(g,p) =>g.Inject(DateTimeOffset.Parse("2023-08-02T00:00Z"), DateTimeOffset.Parse("2023-08-02T00:00Z")).DateAdd(DT.Hour, 2)}}, + {"g_injectXdatetimeXstrXX_dateAddXhour_2X", new List, ITraversal>> {(g,p) =>g.Inject(DateTimeOffset.Parse("2023-08-02T00:00Z"), DateTimeOffset.Parse("2023-08-02T00:00Z")).DateAdd(DT.Hour, 2)}}, + {"g_injectXdatetimeXstrXX_dateAddXhour_1X", new List, ITraversal>> {(g,p) =>g.Inject(DateTimeOffset.Parse("2023-08-02T00:00Z"), DateTimeOffset.Parse("2023-08-02T00:00Z")).DateAdd(DT.Hour, -1)}}, + {"g_injectXdatetimeXstrXX_dateAddXminute_10X", new List, ITraversal>> {(g,p) =>g.Inject(DateTimeOffset.Parse("2023-08-02T00:00Z"), DateTimeOffset.Parse("2023-08-02T00:00Z")).DateAdd(DT.Minute, 10)}}, + {"g_injectXdatetimeXstrXX_dateAddXsecond_20X", new List, ITraversal>> {(g,p) =>g.Inject(DateTimeOffset.Parse("2023-08-02T00:00Z"), DateTimeOffset.Parse("2023-08-02T00:00Z")).DateAdd(DT.Second, 20)}}, + {"g_injectXdatetimeXstrXX_dateAddXday_11X", new List, ITraversal>> {(g,p) =>g.Inject(DateTimeOffset.Parse("2023-09-06T00:00Z"), DateTimeOffset.Parse("2023-09-06T00:00Z")).DateAdd(DT.Day, 11)}}, + {"g_injectXdatetimeXstr1XX_dateDiffXdatetimeXstr2XX", new List, ITraversal>> {(g,p) =>g.Inject(DateTimeOffset.Parse("2023-08-02T00:00Z"), DateTimeOffset.Parse("2023-08-02T00:00Z")).DateDiff(DateTimeOffset.Parse("2023-08-09T00:00Z"))}}, + {"g_injectXdatetimeXstr1XX_dateDiffXconstantXdatetimeXstr2XXX", new List, ITraversal>> {(g,p) =>g.Inject(DateTimeOffset.Parse("2023-08-08T00:00Z"), DateTimeOffset.Parse("2023-08-08T00:00Z")).DateDiff(__.Constant(DateTimeOffset.Parse("2023-08-01T00:00Z")))}}, + {"g_injectXdatetimeXstr1XX_dateDiffXinjectXdatetimeXstr2XXX", new List, ITraversal>> {(g,p) =>g.Inject(DateTimeOffset.Parse("2023-08-08T00:00Z"), DateTimeOffset.Parse("2023-08-08T00:00Z")).DateDiff(__.Inject(DateTimeOffset.Parse("2023-10-11T00:00Z")))}}, + {"g_V_valuesXbirthdayX_asDate_dateDiffXdatetimeX19700101T0000ZXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").Property("birthday", "1596326400000").AddV((string) "person").Property("name", "john").Property("birthday", "597715200000").AddV((string) "person").Property("name", "charlie").Property("birthday", "1012521600000").AddV((string) "person").Property("name", "suzy").Property("birthday", "-131587200000"), (g,p) =>g.V().Values("birthday").AsNumber().AsDate().DateDiff(DateTimeOffset.Parse("1970-01-01T00:00Z"))}}, + {"g_V_hasXname_aliceX_valuesXbirthdayX_asDate_dateDiffXconstantXnullXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").Property("birthday", 1596326400000), (g,p) =>g.V().Has("name", "alice").Values("birthday").AsDate().DateDiff(__.Constant(null))}}, + {"g_injectXnullX_differenceXinjectX1XX", new List, ITraversal>> {(g,p) =>g.Inject(null).Difference(__.Inject(1))}}, + {"g_V_valuesXnameX_differenceXV_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Difference(__.V().Fold())}}, + {"g_V_fold_differenceXconstantXnullXX", new List, ITraversal>> {(g,p) =>g.V().Fold().Difference(__.Constant(null))}}, + {"g_V_fold_differenceXVX", new List, ITraversal>> {(g,p) =>g.V().Fold().Difference(__.V())}}, + {"g_V_valuesXnameX_fold_differenceX2X", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Difference(2)}}, + {"g_V_valuesXnameX_fold_differenceXnullX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Difference(null)}}, + {"g_V_valuesXnonexistantX_fold_differenceXV_valuesXnameX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("nonexistant").Fold().Difference(__.V().Values("name").Fold())}}, + {"g_V_valuesXnameX_fold_differenceXV_valuesXnonexistantX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Difference(__.V().Values("nonexistant").Fold())}}, + {"g_V_valuesXageX_fold_differenceXV_valuesXageX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold().Difference(__.V().Values("age").Fold())}}, + {"g_V_out_path_byXvaluesXnameX_toUpperX_differenceXMARKOX", new List, ITraversal>> {(g,p) =>g.V().Out().Path().By(__.Values("name").ToUpper()).Difference(new List { "MARKO" })}}, + {"g_injectXmarkoX_differenceXV_valuesXnameX_foldX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "marko" }).Difference(__.V().Values("name").Fold())}}, + {"g_V_valueMapXlocationX_selectXvaluesX_unfold_differenceXseattle_vancouverX", new List, ITraversal>> {(g,p) =>g.V().ValueMap("location").Select(Column.Values).Unfold().Difference(new List { "seattle", "vancouver" })}}, + {"g_V_out_out_path_byXnameX_differenceXrippleX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Difference(new List { "ripple" })}}, + {"g_V_out_out_path_byXnameX_differenceXempty_listX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Difference(new List { })}}, + {"g_V_valuesXageX_fold_differenceXconstantX27X_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold().Difference(__.Constant(27).Fold())}}, + {"g_V_out_out_path_byXnameX_differenceXdave_kelvinX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Difference(new List { "dave", "kelvin" })}}, + {"g_injectXa_null_bX_differenceXa_cX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Difference(new List { "a", "c" })}}, + {"g_injectXa_null_bX_differenceXa_null_cX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Difference(new List { "a", null, "c" })}}, + {"g_injectX3_threeX_differenceXfive_three_7X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 3, "three" }).Difference(new List { "five", "three", 7 })}}, + {"g_injectXnullX_disjunctXinjectX1XX", new List, ITraversal>> {(g,p) =>g.Inject(null).Disjunct(__.Inject(1))}}, + {"g_V_valuesXnameX_disjunctXV_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Disjunct(__.V().Fold())}}, + {"g_V_fold_disjunctXconstantXnullXX", new List, ITraversal>> {(g,p) =>g.V().Fold().Disjunct(__.Constant(null))}}, + {"g_V_fold_disjunctXVX", new List, ITraversal>> {(g,p) =>g.V().Fold().Disjunct(__.V())}}, + {"g_V_valuesXnameX_fold_disjunctX2X", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Disjunct(2)}}, + {"g_V_valuesXnameX_fold_disjunctXnullX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Disjunct(null)}}, + {"g_V_valuesXnonexistantX_fold_disjunctXV_valuesXnameX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("nonexistant").Fold().Disjunct(__.V().Values("name").Fold())}}, + {"g_V_valuesXnameX_fold_disjunctXV_valuesXnonexistantX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Disjunct(__.V().Values("nonexistant").Fold())}}, + {"g_V_valuesXageX_fold_disjunctXV_valuesXageX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold().Disjunct(__.V().Values("age").Fold())}}, + {"g_V_out_path_byXvaluesXnameX_toUpperX_disjunctXMARKOX", new List, ITraversal>> {(g,p) =>g.V().Out().Path().By(__.Values("name").ToUpper()).Disjunct(new List { "MARKO" })}}, + {"g_V_valueMapXlocationX_selectXvaluesX_unfold_disjunctXseattle_vancouverX", new List, ITraversal>> {(g,p) =>g.V().ValueMap("location").Select(Column.Values).Unfold().Disjunct(new List { "seattle", "vancouver" })}}, + {"g_V_out_out_path_byXnameX_disjunctXmarkoX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Disjunct(new List { "marko" })}}, + {"g_V_out_out_path_byXnameX_disjunctXstephen_markoX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Disjunct(new List { "stephen", "marko" })}}, + {"g_V_out_out_path_byXnameX_disjunctXdave_kelvinX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Disjunct(new List { "dave", "kelvin" })}}, + {"g_injectXa_null_bX_disjunctXa_cX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Disjunct(new List { "a", "c" })}}, + {"g_injectXa_null_bX_disjunctXa_null_cX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Disjunct(new List { "a", null, "c" })}}, + {"g_injectX3_threeX_disjunctXfive_three_7X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 3, "three" }).Disjunct(new List { "five", "three", 7 })}}, + {"g_E", new List, ITraversal>> {(g,p) =>g.E()}}, + {"g_EX11X", new List, ITraversal>> {(g,p) =>g.E(p["eid11"])}}, + {"g_EX11AsStringX", new List, ITraversal>> {(g,p) =>g.E(p["eid11"])}}, + {"g_EXeid7_eid11X", new List, ITraversal>> {(g,p) =>g.E(p["eid7"], p["eid11"])}}, + {"g_EXlistXeid7_eid11XX", new List, ITraversal>> {(g,p) =>g.E(p["xx1"])}}, + {"g_EXnullX", new List, ITraversal>> {(g,p) =>g.E(null)}}, + {"g_EXlistXnullXX", new List, ITraversal>> {(g,p) =>g.E(p["xx1"])}}, + {"g_EX11_nullX", new List, ITraversal>> {(g,p) =>g.E(p["eid11"], null)}}, + {"g_V_EX11X", new List, ITraversal>> {(g,p) =>g.V().E(p["eid11"])}}, + {"g_EX11X_E", new List, ITraversal>> {(g,p) =>g.E(p["eid11"]).E()}}, + {"g_V_EXnullX", new List, ITraversal>> {(g,p) =>g.V().E(null)}}, + {"g_V_EXlistXnullXX", new List, ITraversal>> {(g,p) =>g.V().E(p["xx1"])}}, + {"g_injectX1X_EX11_nullX", new List, ITraversal>> {(g,p) =>g.Inject(1).E(p["eid11"], null)}}, + {"g_injectX1X_coalesceXEX_hasLabelXtestsX_addEXtestsX_from_V_hasXnameX_XjoshXX_toXV_hasXnameX_XvadasXXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "josh").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.Inject(1).Coalesce(__.E().HasLabel("tests"), __.AddE((string) "tests").From(__.V().Has("name", "josh")).To(__.V().Has("name", "vadas"))), (g,p) =>g.E().HasLabel("tests")}}, + {"g_VX1X_outE_inV", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE().InV()}}, + {"g_VX2X_inE_outV", new List, ITraversal>> {(g,p) =>g.V(p["vid2"]).InE().OutV()}}, + {"g_V_outE_hasXweight_1X_outV", new List, ITraversal>> {(g,p) =>g.V().OutE().Has("weight", 1.0).OutV()}}, + {"g_VX1X_outE_otherV", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE().OtherV()}}, + {"g_VX4X_bothE_otherV", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).BothE().OtherV()}}, + {"g_VX4X_bothE_hasXweight_lt_1X_otherV", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).BothE().Has("weight", P.Lt(1.0)).OtherV()}}, + {"get_g_VX1X_outE_otherV", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE().OtherV()}}, + {"g_VX1X_outEXknowsX_inV", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE("knows").InV()}}, + {"g_VX1X_outEXknows_createdX_inV", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE("knows", "created").InV()}}, + {"g_VX1X_outEXknowsX_bothV", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE("knows").BothV()}}, + {"g_VX1X_outEXknowsX_bothV_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE("knows").BothV().Values("name")}}, + {"g_V_toEXout_knowsvarX_valuesXweightX", new List, ITraversal>> {(g,p) =>g.V().ToE(Direction.Out, new GValue("xx1", (string) p["xx1"])).Values("weight")}}, + {"g_VX1X_properties_element", new List, ITraversal>> {(g,p) =>g.V(p["vid2"]).Properties().Element().Limit(1)}}, + {"g_V_properties_element", new List, ITraversal>> {(g,p) =>g.V().Properties().Element()}}, + {"g_V_propertiesXageX_element", new List, ITraversal>> {(g,p) =>g.V().Properties("age").Element()}}, + {"g_EX_properties_element", new List, ITraversal>> {(g,p) =>g.E(p["eid11"]).Properties().Element().Limit(1)}}, + {"g_E_properties_element", new List, ITraversal>> {(g,p) =>g.E().Properties().Element()}}, + {"g_VXv7_properties_properties_element_element", new List, ITraversal>> {(g,p) =>g.V(p["vid7"]).Properties().Properties().Element().Element().Limit(1)}}, + {"g_V_properties_properties_element_element", new List, ITraversal>> {(g,p) =>g.V(p["vid7"]).Properties().Properties().Element().Element()}}, + {"g_V_elementMap", new List, ITraversal>> {(g,p) =>g.V().ElementMap()}}, + {"g_V_elementMapXname_ageX", new List, ITraversal>> {(g,p) =>g.V().ElementMap("name", "age")}}, + {"g_EX11X_elementMap", new List, ITraversal>> {(g,p) =>g.E(p["eid11"]).ElementMap()}}, + {"g_V_elementMapXname_age_nullX", new List, ITraversal>> {(g,p) =>g.V().ElementMap("name", "age", null)}}, + {"g_V_asXaX_flatMapXselectXaXX", new List, ITraversal>> {(g,p) =>g.V().As("a").FlatMap(__.Select("a"))}}, + {"g_V_valuesXnameX_flatMapXsplitXaX_unfoldX", new List, ITraversal>> {(g,p) =>g.V().Values("name").FlatMap(__.Split("a").Unfold())}}, + {"g_V_flatMapXout_outX_path", new List, ITraversal>> {(g,p) =>g.V().FlatMap(__.Out().Out()).Path()}}, + {"g_V_fold", new List, ITraversal>> {(g,p) =>g.V().Fold()}}, + {"g_V_fold_unfold", new List, ITraversal>> {(g,p) =>g.V().Fold().Unfold()}}, + {"g_V_age_foldX0_plusX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold(0, Operator.Sum)}}, + {"g_injectXa1_b2X_foldXm_addAllX", new List, ITraversal>> {(g,p) =>g.Inject(new Dictionary {{ "a", 1 }}, new Dictionary {{ "b", 2 }}).Fold(new Dictionary {}, Operator.AddAll)}}, + {"g_injectXa1_b2_b4X_foldXm_addAllX", new List, ITraversal>> {(g,p) =>g.Inject(new Dictionary {{ "a", 1 }}, new Dictionary {{ "b", 2 }}, new Dictionary {{ "b", 4 }}).Fold(new Dictionary {}, Operator.AddAll)}}, + {"g_injectXlist1_list2X_fold", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2 }, new List { 3, 4 }).Fold()}}, + {"g_injectXlist1_list2_list3X_fold", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2 }, new List { 3, 4 }, new List { 5, 6 }).Fold()}}, + {"g_VX1X_formatXstrX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "marko").Format("Hello world")}}, + {"g_V_formatXstrX", new List, ITraversal>> {(g,p) =>g.V().Format("%{name} is %{age} years old")}}, + {"g_injectX1X_asXageX_V_formatXstrX", new List, ITraversal>> {(g,p) =>g.Inject(1).As("age").V().Format("%{name} is %{age} years old")}}, + {"g_V_formatXstrX_byXvaluesXnameXX_byXvaluesXageXX", new List, ITraversal>> {(g,p) =>g.V().Format("%{_} is %{_} years old").By(__.Values("name")).By(__.Values("age"))}}, + {"g_V_hasLabelXpersonX_formatXstrX_byXconstantXhelloXX_byXvaluesXnameXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Format("%{_} %{_} %{_}").By(__.Constant("hello")).By(__.Values("name"))}}, + {"g_VX1X_formatXstrX_byXconstantXhelloXX_byXvaluesXnameXX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Format("%{_}").By(__.Constant("hello")).By(__.Values("name"))}}, + {"g_V_formatXstrX_byXbothE_countX", new List, ITraversal>> {(g,p) =>g.V().Format("%{name} has %{_} connections").By(__.BothE().Count())}}, + {"g_V_projectXname_countX_byXvaluesXnameXX_byXbothE_countX_formatXstrX", new List, ITraversal>> {(g,p) =>g.V().Project("name", "count").By(__.Values("name")).By(__.BothE().Count()).Format("%{name} has %{count} connections")}}, + {"g_V_elementMap_formatXstrX", new List, ITraversal>> {(g,p) =>g.V().ElementMap().Format("%{name} is %{age} years old")}}, + {"g_V_hasLabelXpersonX_asXaX_valuesXnameX_asXp1X_selectXaX_inXknowsX_formatXstrX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").As("a").Values("name").As("p1").Select("a").In("knows").Format("%{p1} knows %{name}")}}, + {"g_V_asXsX_label_asXsubjectX_selectXsX_outE_asXpX_label_asXpredicateX_selectXpX_inV_label_asXobjectX_formatXstrX", new List, ITraversal>> {(g,p) =>g.V().As("s").Label().As("subject").Select("s").OutE().As("p").Label().As("predicate").Select("p").InV().Label().As("object").Format("%{subject} %{predicate} %{object}")}}, + {"g_V_hasLabelXsoftwareX_index_unfold", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Index().Unfold()}}, + {"g_V_hasLabelXsoftwareX_order_byXnameX_index_withXmapX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Order().By("name").Index().With(WithOptions.Indexer, WithOptions.Map)}}, + {"g_V_hasLabelXsoftwareX_name_fold_orderXlocalX_index_unfold_order_byXtailXlocal_1XX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Values("name").Fold().Order(Scope.Local).Index().Unfold().Order().By(__.Tail(Scope.Local, 1))}}, + {"g_V_hasLabelXpersonX_name_fold_orderXlocalX_index_withXmapX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").Fold().Order(Scope.Local).Index().With(WithOptions.Indexer, WithOptions.Map)}}, + {"g_VX1X_valuesXageX_index_unfold_unfold", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Values("age").Index().Unfold().Unfold()}}, + {"g_injectXnullX_intersectXinjectX1XX", new List, ITraversal>> {(g,p) =>g.Inject(null).Intersect(__.Inject(1))}}, + {"g_V_valuesXnameX_intersectXV_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Intersect(__.V().Fold())}}, + {"g_V_fold_intersectXconstantXnullXX", new List, ITraversal>> {(g,p) =>g.V().Fold().Intersect(__.Constant(null))}}, + {"g_V_fold_intersectXVX", new List, ITraversal>> {(g,p) =>g.V().Fold().Intersect(__.V())}}, + {"g_V_valuesXnameX_fold_intersectX2X", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Intersect(2)}}, + {"g_V_valuesXnameX_fold_intersectXnullX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Intersect(null)}}, + {"g_V_valuesXnonexistantX_fold_intersectXV_valuesXnameX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("nonexistant").Fold().Intersect(__.V().Values("name").Fold())}}, + {"g_V_valuesXnameX_fold_intersectXV_valuesXnonexistantX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Intersect(__.V().Values("nonexistant").Fold())}}, + {"g_V_valuesXageX_fold_intersectXV_valuesXageX_foldX_order_local", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold().Intersect(__.V().Values("age").Fold()).Order(Scope.Local)}}, + {"g_V_out_path_byXvaluesXnameX_toUpperX_intersectXMARKOX", new List, ITraversal>> {(g,p) =>g.V().Out().Path().By(__.Values("name").ToUpper()).Intersect(new List { "MARKO" })}}, + {"g_injectXmarkoX_intersectX___V_valuesXnameX_foldX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "marko" }).Intersect(__.V().Values("name").Fold())}}, + {"g_V_valueMapXlocationX_selectXvaluesX_unfold_intersectXseattle_vancouverX", new List, ITraversal>> {(g,p) =>g.V().ValueMap("location").Select(Column.Values).Unfold().Intersect(new List { "seattle", "vancouver" })}}, + {"g_V_valuesXageX_fold_intersectX___constantX27X_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold().Intersect(__.Constant(27).Fold())}}, + {"g_V_out_out_path_byXnameX_intersectXdave_kelvinX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Intersect(new List { "dave", "kelvin" })}}, + {"g_injectXa_null_bX_intersectXa_cX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Intersect(new List { "a", "c" })}}, + {"g_injectXa_null_bX_intersectXa_null_cX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Intersect(new List { "a", null, "c" })}}, + {"g_injectX3_threeX_intersectXfive_three_7X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 3, "three" }).Intersect(new List { "five", "three", 7 })}}, + {"g_injectX__feature___test__nullX_lTrim", new List, ITraversal>> {(g,p) =>g.Inject(" feature", " one test", null, "", " ", " abc", "abc ", " abc ", "  ").LTrim()}}, + {"g_injectX__feature___test__nullX_lTrimXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { " feature ", " one test ", null, "", " ", " abc", "abc ", " abc ", "  " }).LTrim(Scope.Local)}}, + {"g_injectX__feature__X_lTrim", new List, ITraversal>> {(g,p) =>g.Inject(" feature ").LTrim()}}, + {"g_injectXListXa_bXX_lTrim", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", "b" }).LTrim()}}, + {"g_injectXListX1_2XX_lTrimXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2 }).LTrim(Scope.Local)}}, + {"g_V_valuesXnameX_lTrim", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", " marko ").Property("age", 29).As("marko").AddV((string) "person").Property("name", " vadas ").Property("age", 27).As("vadas").AddV((string) "software").Property("name", " lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh ").Property("age", 32).As("josh").AddV((string) "software").Property("name", " ripple ").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Values("name").LTrim()}}, + {"g_V_valuesXnameX_order_fold_lTrimXlocalX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", " marko ").Property("age", 29).As("marko").AddV((string) "person").Property("name", " vadas ").Property("age", 27).As("vadas").AddV((string) "software").Property("name", " lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh ").Property("age", 32).As("josh").AddV((string) "software").Property("name", " ripple ").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Values("name").Order().Fold().LTrim(Scope.Local)}}, + {"g_injectXfeature_test_nullX_length", new List, ITraversal>> {(g,p) =>g.Inject("feature", "test", null).Length()}}, + {"g_injectXfeature_test_nullX_lengthXlocalX", new List, ITraversal>> {(g,p) =>g.Inject("feature", "test", null).Length(Scope.Local)}}, + {"g_injectXListXa_bXX_length", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", "b" }).Length()}}, + {"g_V_valuesXnameX_length", new List, ITraversal>> {(g,p) =>g.V().Values("name").Length()}}, + {"g_V_valuesXnameX_order_fold_lengthXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Order().Fold().Length(Scope.Local)}}, + {"g_VX1X_repeatXboth_simplePathX_untilXhasXname_peterX_or_loops_isX3XX_hasXname_peterX_path_byXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Repeat(__.Both().SimplePath()).Until(__.Has("name", "peter").Or().Loops().Is(3)).Has("name", "peter").Path().By("name")}}, + {"g_VX1X_repeatXboth_simplePathX_untilXhasXname_peterX_or_loops_isX2XX_hasXname_peterX_path_byXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Repeat(__.Both().SimplePath()).Until(__.Has("name", "peter").Or().Loops().Is(2)).Has("name", "peter").Path().By("name")}}, + {"g_VX1X_repeatXboth_simplePathX_untilXhasXname_peterX_and_loops_isX3XX_hasXname_peterX_path_byXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Repeat(__.Both().SimplePath()).Until(__.Has("name", "peter").And().Loops().Is(3)).Has("name", "peter").Path().By("name")}}, + {"g_V_emitXhasXname_markoX_or_loops_isX2XX_repeatXoutX_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Emit(__.Has("name", "marko").Or().Loops().Is(2)).Repeat(__.Out()).Values("name")}}, + {"g_VX1X_mapXvaluesXnameXX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Map(__.Values("name"))}}, + {"g_VX1X_outE_label_mapXlengthX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE().Label().Map(__.Length())}}, + {"g_VX1X_out_mapXvaluesXnameXX_mapXlengthX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Map(__.Values("name")).Map(__.Length())}}, + {"g_withPath_V_asXaX_out_mapXselectXaX_valuesXnameXX", new List, ITraversal>> {(g,p) =>g.WithPath().V().As("a").Out().Map(__.Select("a").Values("name"))}}, + {"g_withPath_V_asXaX_out_out_asXbX_mapXselectXaX_valuesXnameX_concatXselectXbX_valuesXnameXXX", new List, ITraversal>> {(g,p) =>g.WithPath().V().As("a").Out().Out().As("b").Map(__.Select("a").Values("name").Concat(__.Select("b").Values("name")))}}, + {"g_V_mapXselectXaXX", new List, ITraversal>> {(g,p) =>g.V().As("a").Map(__.Select("a"))}}, + {"g_V_mapXconstantXnullXX", new List, ITraversal>> {(g,p) =>g.V().Map(__.Constant(null))}}, + {"g_V_valueMap_matchXa_selectXnameX_bX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Match(__.As("a").Select("name").As("b"))}}, + {"g_V_matchXa_out_bX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out().As("b"))}}, + {"g_V_matchXa_out_bX_selectXb_idX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out().As("b")).Select("b").By(T.Id)}}, + {"g_V_matchXa_knows_b__b_created_cX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("knows").As("b"), __.As("b").Out("created").As("c"))}}, + {"g_V_matchXb_created_c__a_knows_bX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("b").Out("created").As("c"), __.As("a").Out("knows").As("b"))}}, + {"g_V_matchXa_created_b__b_0created_cX_whereXa_neq_cX_selectXa_cX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("created").As("b"), __.As("b").In("created").As("c")).Where("a", P.Neq("c")).Select("a", "c")}}, + {"g_V_matchXd_0knows_a__d_hasXname_vadasX__a_knows_b__b_created_cX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("d").In("knows").As("a"), __.As("d").Has("name", "vadas"), __.As("a").Out("knows").As("b"), __.As("b").Out("created").As("c"))}}, + {"g_V_matchXa_created_lop_b__b_0created_29_c__c_whereXrepeatXoutX_timesX2XXX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("created").Has("name", "lop").As("b"), __.As("b").In("created").Has("age", 29).As("c"), __.As("c").Where(__.Repeat(__.Out()).Times(2)))}}, + {"g_V_asXaX_out_asXbX_matchXa_out_count_c__b_in_count_cX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Match(__.As("a").Out().Count().As("c"), __.As("b").In().Count().As("c"))}}, + {"g_V_matchXa__a_out_b__notXa_created_bXX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out().As("b"), __.Not(__.As("a").Out("created").As("b")))}}, + {"g_V_matchXa_created_lop_b__b_0created_29_cX_whereXc_repeatXoutX_timesX2XX_selectXa_b_cX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("created").Has("name", "lop").As("b"), __.As("b").In("created").Has("age", 29).As("c")).Where(__.As("c").Repeat(__.Out()).Times(2)).Select("a", "b", "c")}}, + {"g_V_out_out_matchXa_0created_b__b_0knows_cX_selectXcX_outXcreatedX_name", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Match(__.As("a").In("created").As("b"), __.As("b").In("knows").As("c")).Select("c").Out("created").Values("name")}}, + {"g_V_matchXa_knows_b__b_created_c__a_created_cX_dedupXa_b_cX_selectXaX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("knows").As("b"), __.As("b").Out("created").As("c"), __.As("a").Out("created").As("c")).Dedup("a", "b", "c").Select("a").By("name")}}, + {"g_V_matchXa_created_b__a_repeatXoutX_timesX2XX_selectXa_bX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("created").As("b"), __.As("a").Repeat(__.Out()).Times(2).As("b")).Select("a", "b")}}, + {"g_V_notXmatchXa_age_b__a_name_cX_whereXb_eqXcXX_selectXaXX_name", new List, ITraversal>> {(g,p) =>g.V().Not(__.Match(__.As("a").Values("age").As("b"), __.As("a").Values("name").As("c")).Where("b", P.Eq("c")).Select("a")).Values("name")}}, + {"g_V_matchXa_knows_b__andXa_created_c__b_created_c__andXb_created_count_d__a_knows_count_dXXX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("knows").As("b"), __.And(__.As("a").Out("created").As("c"), __.As("b").Out("created").As("c"), __.And(__.As("b").Out("created").Count().As("d"), __.As("a").Out("knows").Count().As("d"))))}}, + {"g_V_matchXa_whereXa_neqXcXX__a_created_b__orXa_knows_vadas__a_0knows_and_a_hasXlabel_personXX__b_0created_c__b_0created_count_isXgtX1XXX_selectXa_b_cX_byXidX", new List, ITraversal>> {(g,p) =>g.V().Match(__.Where("a", P.Neq("c")), __.As("a").Out("created").As("b"), __.Or(__.As("a").Out("knows").Has("name", "vadas"), __.As("a").In("knows").And().As("a").Has(T.Label, "person")), __.As("b").In("created").As("c"), __.As("b").In("created").Count().Is(P.Gt(1))).Select("a", "b", "c").By(T.Id)}}, + {"g_V_matchXa__a_both_b__b_both_cX_dedupXa_bX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Both().As("b"), __.As("b").Both().As("c")).Dedup("a", "b")}}, + {"g_V_matchXa_knows_b__b_created_lop__b_matchXb_created_d__d_0created_cX_selectXcX_cX_selectXa_b_cX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("knows").As("b"), __.As("b").Out("created").Has("name", "lop"), __.As("b").Match(__.As("b").Out("created").As("d"), __.As("d").In("created").As("c")).Select("c").As("c")).Select("a", "b", "c")}}, + {"g_V_matchXa_knows_b__a_created_cX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("knows").As("b"), __.As("a").Out("created").As("c"))}}, + {"g_V_matchXwhereXandXa_created_b__b_0created_count_isXeqX3XXXX__a_both_b__whereXb_inXX", new List, ITraversal>> {(g,p) =>g.V().Match(__.Where(__.And(__.As("a").Out("created").As("b"), __.As("b").In("created").Count().Is(P.Eq(3)))), __.As("a").Both().As("b"), __.Where(__.As("b").In()))}}, + {"g_V_matchXa_outEXcreatedX_order_byXweight_descX_limitX1X_inV_b__b_hasXlang_javaXX_selectXa_bX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").OutE("created").Order().By("weight", Order.Desc).Limit(1).InV().As("b"), __.As("b").Has("lang", "java")).Select("a", "b").By("name")}}, + {"g_V_matchXa_both_b__b_both_cX_dedupXa_bX_byXlabelX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Both().As("b"), __.As("b").Both().As("c")).Dedup("a", "b").By(T.Label)}}, + {"g_V_matchXa_created_b__b_0created_aX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("created").As("b"), __.As("b").In("created").As("a"))}}, + {"g_V_asXaX_out_asXbX_matchXa_out_count_c__orXa_knows_b__b_in_count_c__and__c_isXgtX2XXXX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Match(__.As("a").Out().Count().As("c"), __.Or(__.As("a").Out("knows").As("b"), __.As("b").In().Count().As("c").And().As("c").Is(P.Gt(2))))}}, + {"g_V_matchXa_knows_count_bX_selectXbX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("knows").Count().As("b")).Select("b")}}, + {"g_V_matchXa_0sungBy_b__a_0writtenBy_c__b_writtenBy_d__c_sungBy_d__d_hasXname_GarciaXX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").In("sungBy").As("b"), __.As("a").In("writtenBy").As("c"), __.As("b").Out("writtenBy").As("d"), __.As("c").Out("sungBy").As("d"), __.As("d").Has("name", "Garcia"))}}, + {"g_V_matchXa_hasXsong_name_sunshineX__a_mapX0followedBy_weight_meanX_b__a_0followedBy_c__c_filterXweight_whereXgteXbXXX_outV_dX_selectXdX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Has("song", "name", "HERE COMES SUNSHINE"), __.As("a").Map(__.InE("followedBy").Values("weight").Mean()).As("b"), __.As("a").InE("followedBy").As("c"), __.As("c").Filter(__.Values("weight").Where(P.Gte("b"))).OutV().As("d")).Select("d").By("name")}}, + {"g_V_matchXa_0sungBy_b__a_0sungBy_c__b_writtenBy_d__c_writtenBy_e__d_hasXname_George_HarisonX__e_hasXname_Bob_MarleyXX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").In("sungBy").As("b"), __.As("a").In("sungBy").As("c"), __.As("b").Out("writtenBy").As("d"), __.As("c").Out("writtenBy").As("e"), __.As("d").Has("name", "George_Harrison"), __.As("e").Has("name", "Bob_Marley"))}}, + {"g_V_matchXa_hasXname_GarciaX__a_0writtenBy_b__a_0sungBy_bX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Has("name", "Garcia"), __.As("a").In("writtenBy").As("b"), __.As("a").In("sungBy").As("b"))}}, + {"g_V_hasLabelXsongsX_matchXa_name_b__a_performances_cX_selectXb_cX_count", new List, ITraversal>> {(g,p) =>g.V().HasLabel("song").Match(__.As("a").Values("name").As("b"), __.As("a").Values("performances").As("c")).Select("b", "c").Count()}}, + {"g_V_matchXa_followedBy_count_isXgtX10XX_b__a_0followedBy_count_isXgtX10XX_bX_count", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("followedBy").Count().Is(P.Gt(10)).As("b"), __.As("a").In("followedBy").Count().Is(P.Gt(10)).As("b")).Count()}}, + {"g_V_matchXa_0sungBy_b__a_0writtenBy_c__b_writtenBy_dX_whereXc_sungBy_dX_whereXd_hasXname_GarciaXX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").In("sungBy").As("b"), __.As("a").In("writtenBy").As("c"), __.As("b").Out("writtenBy").As("d")).Where(__.As("c").Out("sungBy").As("d")).Where(__.As("d").Has("name", "Garcia"))}}, + {"g_V_matchXa_hasXname_GarciaX__a_0writtenBy_b__b_followedBy_c__c_writtenBy_d__whereXd_neqXaXXX", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Has("name", "Garcia"), __.As("a").In("writtenBy").As("b"), __.As("b").Out("followedBy").As("c"), __.As("c").Out("writtenBy").As("d"), __.Where("d", P.Neq("a")))}}, + {"g_V_matchXa_outXknowsX_name_bX_identity", new List, ITraversal>> {(g,p) =>g.V().Match(__.As("a").Out("knows").Values("name").As("b")).Identity()}}, + {"g_V_outE_mathX0_minus_itX_byXweightX", new List, ITraversal>> {(g,p) =>g.V().OutE().Math("0-_").By("weight")}}, + {"g_V_hasXageX_valueMap_mathXit_plus_itXbyXselectXageX_unfoldXX", new List, ITraversal>> {(g,p) =>g.V().Has("age").ValueMap().Math("_+_").By(__.Select("age").Unfold())}}, + {"g_V_asXaX_outXknowsX_asXbX_mathXa_plus_bX_byXageX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out("knows").As("b").Math("a + b").By("age")}}, + {"g_withSideEffectXx_100X_V_age_mathX__plus_xX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("x", 100).V().Values("age").Math("_ + x")}}, + {"g_V_asXaX_outXcreatedX_asXbX_mathXb_plus_aX_byXinXcreatedX_countX_byXageX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out("created").As("b").Math("b + a").By(__.In("created").Count()).By("age")}}, + {"g_withSackX1X_injectX1X_repeatXsackXsumX_byXconstantX1XXX_timesX5X_emit_mathXsin__X_byXsackX", new List, ITraversal>> {(g,p) =>g.WithSack(1).Inject(1).Repeat(__.Sack(Operator.Sum).By(__.Constant(1))).Times(5).Emit().Math("sin _").By(__.Sack())}}, + {"g_V_projectXa_b_cX_byXbothE_weight_sumX_byXbothE_countX_byXnameX_order_byXmathXa_div_bX_descX_selectXcX", new List, ITraversal>> {(g,p) =>g.V().Project("a", "b", "c").By(__.BothE().Values("weight").Sum()).By(__.BothE().Count()).By("name").Order().By(__.Math("a / b"), Order.Desc).Select("c")}}, + {"g_V_mathXit_plus_itXbyXageX", new List, ITraversal>> {(g,p) =>g.V().Math("_+_").By("age")}}, + {"g_V_valueMap_mathXit_plus_itXbyXselectXageX_unfoldXX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Math("_+_").By(__.Select("age").Unfold())}}, + {"g_VX1X_outE_asXexpectedWeightX_mathXexpectedWeightPlusOneXbyXweightX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE().As("expectedWeight").Math("expectedWeight + 1").By("weight")}}, + {"g_V_age_max", new List, ITraversal>> {(g,p) =>g.V().Values("age").Max()}}, + {"g_V_foo_max", new List, ITraversal>> {(g,p) =>g.V().Values("foo").Max()}}, + {"g_V_name_max", new List, ITraversal>> {(g,p) =>g.V().Values("name").Max()}}, + {"g_V_age_fold_maxXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold().Max(Scope.Local)}}, + {"g_V_aggregateXaX_byXageX_capXaX_maxXlocalX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("age").Cap("a").Max(Scope.Local)}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXageX_capXaX_maxXlocalX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("age").Cap("a").Max(Scope.Local)}}, + {"g_V_aggregateXaX_byXageX_capXaX_unfold_max", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("age").Cap("a").Unfold().Max()}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXageX_capXaX_unfold_max", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("age").Cap("a").Unfold().Max()}}, + {"g_V_aggregateXaX_byXfooX_capXaX_maxXlocalX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("foo").Cap("a").Max(Scope.Local)}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXfooX_capXaX_maxXlocalX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("foo").Cap("a").Max(Scope.Local)}}, + {"g_V_aggregateXaX_byXfooX_capXaX_unfold_max", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("foo").Cap("a").Unfold().Max()}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXfooX_capXaX_unfold_max", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("foo").Cap("a").Unfold().Max()}}, + {"g_V_foo_fold_maxXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("foo").Fold().Max(Scope.Local)}}, + {"g_V_name_fold_maxXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Max(Scope.Local)}}, + {"g_V_repeatXbothX_timesX5X_age_max", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Both()).Times(5).Values("age").Max()}}, + {"g_V_hasLabelXsoftwareX_group_byXnameX_byXbothE_weight_maxX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Group().By("name").By(__.BothE().Values("weight").Max())}}, + {"g_VX1X_valuesXageX_maxXlocalX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Values("age").Max(Scope.Local)}}, + {"g_V_localXunionXvaluesXageX_outE_valuesXweightXX_foldX_maxXlocalX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Union(__.Values("age"), __.OutE().Values("weight")).Fold()).Max(Scope.Local)}}, + {"g_V_age_mean", new List, ITraversal>> {(g,p) =>g.V().Values("age").Mean()}}, + {"g_V_foo_mean", new List, ITraversal>> {(g,p) =>g.V().Values("foo").Mean()}}, + {"g_V_age_fold_meanXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold().Mean(Scope.Local)}}, + {"g_V_foo_fold_meanXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("foo").Fold().Mean(Scope.Local)}}, + {"g_V_hasLabelXsoftwareX_group_byXnameX_byXbothE_weight_meanX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Group().By("name").By(__.BothE().Values("weight").Mean())}}, + {"g_V_aggregateXaX_byXageX_meanXlocalX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("age").Cap("a").Mean(Scope.Local)}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXageX_meanXlocalX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("age").Cap("a").Mean(Scope.Local)}}, + {"g_V_aggregateXaX_byXageX_capXaX_unfold_mean", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("age").Cap("a").Unfold().Mean()}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXageX_capXaX_unfold_mean", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("age").Cap("a").Unfold().Mean()}}, + {"g_V_aggregateXaX_byXfooX_meanXlocalX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("foo").Cap("a").Mean(Scope.Local)}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXfooX_meanXlocalX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("foo").Cap("a").Mean(Scope.Local)}}, + {"g_V_aggregateXaX_byXfooX_capXaX_unfold_mean", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("foo").Cap("a").Unfold().Mean()}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXfooX_capXaX_unfold_mean", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("foo").Cap("a").Unfold().Mean()}}, + {"g_injectXnull_10_20_nullX_mean", new List, ITraversal>> {(g,p) =>g.Inject(null, 10, 20, null).Mean()}}, + {"g_injectXlistXnull_10_20_nullXX_meanXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { null, 10, 20, null }).Mean(Scope.Local)}}, + {"g_VX1X_valuesXageX_meanXlocalX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Values("age").Mean(Scope.Local)}}, + {"g_V_localXunionXvaluesXageX_outE_valuesXweightXX_foldX_meanXlocalX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Union(__.Values("age"), __.OutE().Values("weight")).Fold()).Mean(Scope.Local)}}, + {"g_injectXnullX_mergeXinjectX1XX", new List, ITraversal>> {(g,p) =>g.Inject(null).Merge(__.Inject(1))}}, + {"g_V_valuesXnameX_mergeXV_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Merge(__.V().Fold())}}, + {"g_V_fold_mergeXconstantXnullXX", new List, ITraversal>> {(g,p) =>g.V().Fold().Merge(__.Constant(null))}}, + {"g_V_fold_mergeXVX", new List, ITraversal>> {(g,p) =>g.V().Fold().Merge(__.V())}}, + {"g_V_elementMap_mergeXconstantXaXX", new List, ITraversal>> {(g,p) =>g.V().ElementMap().Merge(__.Constant("a"))}}, + {"g_V_fold_mergeXV_asXaX_projectXaX_byXnameXX", new List, ITraversal>> {(g,p) =>g.V().Fold().Merge(__.V().As("a").Project("a").By("name"))}}, + {"g_V_fold_mergeXk_vX", new List, ITraversal>> {(g,p) =>g.V().Fold().Merge(new Dictionary {{ "k", "v" }})}}, + {"g_V_valuesXnameX_fold_mergeX2X", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Merge(2)}}, + {"g_V_valuesXnameX_fold_mergeXnullX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Merge(null)}}, + {"g_V_valuesXnonexistantX_fold_mergeXV_valuesXnameX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("nonexistant").Fold().Merge(__.V().Values("name").Fold())}}, + {"g_V_valuesXnameX_fold_mergeXV_valuesXnonexistantX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Merge(__.V().Values("nonexistant").Fold())}}, + {"g_V_valuesXageX_fold_mergeXV_valuesXageX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold().Merge(__.V().Values("age").Fold())}}, + {"g_V_out_path_byXvaluesXnameX_toUpperX_mergeXMARKOX", new List, ITraversal>> {(g,p) =>g.V().Out().Path().By(__.Values("name").ToUpper()).Merge(new List { "MARKO" })}}, + {"g_injectXmarkoX_mergeXV_valuesXnameX_foldX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "marko" }).Merge(__.V().Values("name").Fold())}}, + {"g_V_valueMapXlocationX_selectXvaluesX_unfold_mergeXseattle_vancouverX", new List, ITraversal>> {(g,p) =>g.V().ValueMap("location").Select(Column.Values).Unfold().Merge(new List { "seattle", "vancouver" })}}, + {"g_V_out_out_path_byXnameX_mergeXempty_listX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Merge(new List { })}}, + {"g_V_valuesXageX_fold_mergeXconstantX27X_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold().Merge(__.Constant(27).Fold())}}, + {"g_V_out_out_path_byXnameX_mergeXdave_kelvinX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Merge(new List { "dave", "kelvin" })}}, + {"g_injectXa_null_bX_mergeXa_cX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Merge(new List { "a", "c" })}}, + {"g_injectXa_null_bX_mergeXa_null_cX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Merge(new List { "a", null, "c" })}}, + {"g_injectX3_threeX_mergeXfive_three_7X", new List, ITraversal>> {(g,p) =>g.Inject(new List { 3, "three" }).Merge(new List { "five", "three", 7 })}}, + {"g_V_asXnameX_projectXnameX_byXnameX_mergeXother_blueprintX", new List, ITraversal>> {(g,p) =>g.V().As("name").Project("name").By("name").Merge(new Dictionary {{ "other", "blueprint" }})}}, + {"g_V_hasXname_markoX_elementMap_mergeXV_hasXname_lopX_elementMapX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "marko").ElementMap().Merge(__.V().Has("name", "lop").ElementMap())}}, + {"g_V_mergeEXlabel_selfX_optionXonMatch_emptyX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).AddE((string) "self"), (g,p) =>g.V().MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnMatch, (IDictionary) new Dictionary {}), (g,p) =>g.E(), (g,p) =>g.E().Properties(), (g,p) =>g.V()}}, + {"g_V_mergeEXlabel_selfX_optionXonMatch_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).AddE((string) "self"), (g,p) =>g.V().MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnMatch, (IDictionary) null), (g,p) =>g.E(), (g,p) =>g.E().Properties(), (g,p) =>g.V()}}, + {"g_V_mergeEXemptyX_optionXonCreate_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.V().As("v").MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (IDictionary) null).Option(Merge.OutV, (ITraversal) __.Select("v")).Option(Merge.InV, (ITraversal) __.Select("v")), (g,p) =>g.E(), (g,p) =>g.V()}}, + {"g_V_mergeE_inlineXemptyX_optionXonCreate_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.V().As("v").MergeE((IDictionary) new Dictionary {{ T.Label, "self" }, { Direction.Out, Merge.OutV }, { Direction.In, Merge.InV }}).Option(Merge.OnCreate, (IDictionary) null).Option(Merge.OutV, (ITraversal) __.Select("v")).Option(Merge.InV, (ITraversal) __.Select("v")), (g,p) =>g.E(), (g,p) =>g.V()}}, + {"g_mergeEXemptyX_exists", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).AddE((string) "self"), (g,p) =>g.MergeE((IDictionary) new Dictionary {}), (g,p) =>g.E(), (g,p) =>g.V()}}, + {"g_mergeEXemptyX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeE((IDictionary) new Dictionary {})}}, + {"g_V_mergeEXemptyX_two_exist", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).AddV((string) "person").Property("name", "vadas").Property("age", 27), (g,p) =>g.V().As("v").MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OutV, (ITraversal) __.Select("v")).Option(Merge.InV, (ITraversal) __.Select("v")), (g,p) =>g.E(), (g,p) =>g.V()}}, + {"g_V_mergeE_inlineXemptyX_two_exist", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).AddV((string) "person").Property("name", "vadas").Property("age", 27), (g,p) =>g.V().As("v").MergeE((IDictionary) new Dictionary {{ T.Label, "self" }, { Direction.Out, Merge.OutV }, { Direction.In, Merge.InV }}).Option(Merge.OutV, (ITraversal) __.Select("v")).Option(Merge.InV, (ITraversal) __.Select("v")), (g,p) =>g.E(), (g,p) =>g.V()}}, + {"g_mergeEXnullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeE((IDictionary) null)}}, + {"g_mergeEXnullvarX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_V_limitX1X_mergeEXnullvarX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.V().Limit(1).MergeE(new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_V_mergeEXnullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.V().MergeE((IDictionary) null)}}, + {"g_mergeEXlabel_knows_out_marko_in_vadasX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.V().Has("person", "name", "marko").Out("knows").Has("person", "name", "vadas")}}, + {"g_withSideEffectXa_label_knows_out_marko_in_vadasX_mergeEXselectXaXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE((ITraversal) __.Select("a")), (g,p) =>g.V().Has("person", "name", "marko").Out("knows").Has("person", "name", "vadas")}}, + {"g_mergeEXlabel_knows_out_marko1_in_vadas1X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.V().Has("person", "name", "marko").Out("knows").Has("person", "name", "vadas")}}, + {"g_mergeEXlabel_knows_out_marko_in_vadas_weight_05X_exists", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.V().Has("person", "name", "marko").OutE("knows").Has("weight", 0.5).InV().Has("person", "name", "vadas"), (g,p) =>g.V().Has("person", "name", "marko").Out("knows").Has("person", "name", "vadas")}}, + {"g_mergeEXlabel_knows_out_marko_in_vadas_weight_05X", new List, ITraversal>> {(g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_mergeEXlabel_knows_out_marko_in_vadasX_optionXonCreate_created_YX_optionXonMatch_created_NX", new List, ITraversal>> {(g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])).Option(Merge.OnMatch, new GValue>("xx3", (IDictionary) p["xx3"]))}}, + {"g_mergeEXlabel_knows_out_marko_in_vadasX_optionXonCreate_created_YX_optionXonMatch_created_NX_exists", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])).Option(Merge.OnMatch, new GValue>("xx3", (IDictionary) p["xx3"])), (g,p) =>g.V(), (g,p) =>g.E().HasLabel("knows").Has("created", "Y"), (g,p) =>g.E().HasLabel("knows").Has("created", "N")}}, + {"g_mergeEXlabel_knows_out_marko_in_vadasX_optionXonCreate_created_YX_optionXonMatch_created_NX_exists_updated", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b").Property("created", "Y"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])).Option(Merge.OnMatch, new GValue>("xx3", (IDictionary) p["xx3"])), (g,p) =>g.V(), (g,p) =>g.E().HasLabel("knows").Has("created", "Y"), (g,p) =>g.E().HasLabel("knows").Has("created", "N")}}, + {"g_V_hasXperson_name_marko_X_mergeEXlabel_knowsX_optionXonCreate_created_YX_optionXonMatch_created_NX_exists_updated", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b").Property("created", "Y").AddE((string) "knows").From("a").To("b"), (g,p) =>g.V().Has("person", "name", "marko").MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])).Option(Merge.OnMatch, new GValue>("xx3", (IDictionary) p["xx3"])), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E().HasLabel("knows").Has("created", "Y"), (g,p) =>g.E().HasLabel("knows").Has("created", "N")}}, + {"g_withSideEffectXlabel_knows_out_marko_in_vadasX_injectX1X_selectXmX_mergeE", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.Inject(1).Select("m").MergeE(), (g,p) =>g.V().Has("person", "name", "marko").Out("knows").Has("person", "name", "vadas")}}, + {"g_mergeEXlabel_knows_in_vadasX_optionXonCreate_created_YX_optionXonMatch_created_NX_exists_updated", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b").Property("created", "Y").AddE((string) "knows").From("b").To("a").Property("created", "Y"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])).Option(Merge.OnMatch, new GValue>("xx3", (IDictionary) p["xx3"])), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E().HasLabel("knows").Has("created", "Y"), (g,p) =>g.E().HasLabel("knows").Has("created", "N").InV().Has("name", "vadas")}}, + {"g_mergeEXlabel_knows_out_vadasX_optionXonCreate_created_YX_optionXonMatch_created_NX_exists_updated", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b").Property("created", "Y").AddE((string) "knows").From("b").To("a").Property("created", "Y"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])).Option(Merge.OnMatch, new GValue>("xx3", (IDictionary) p["xx3"])), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E().HasLabel("knows").Has("created", "Y"), (g,p) =>g.E().HasLabel("knows").Has("created", "N").OutV().Has("name", "vadas")}}, + {"g_mergeEXlabel_knows_out_vadasX_optionXonCreate_created_YX_optionXonMatch_created_NX_exists_updated_override_prohibited", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b").Property("created", "Y").AddE((string) "knows").From("b").To("a").Property("created", "Y"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])).Option(Merge.OnMatch, new GValue>("xx3", (IDictionary) p["xx3"]))}}, + {"g_mergeEXout_vadasX_optionXonCreate_created_YX_optionXonMatch_created_NX_exists_updated_error", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b").Property("created", "Y").AddE((string) "knows").From("b").To("a").Property("created", "Y"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])).Option(Merge.OnMatch, new GValue>("xx3", (IDictionary) p["xx3"])), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E().HasLabel("knows").Has("created", "Y"), (g,p) =>g.E().HasLabel("knows").Has("created", "N").OutV().Has("name", "vadas")}}, + {"g_mergeEXout_vadasX_optionXonCreate_created_YX_optionXonMatch_created_NX_exists_updated_override_prohibited", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b").Property("created", "Y").AddE((string) "knows").From("b").To("a").Property("created", "Y"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])).Option(Merge.OnMatch, new GValue>("xx3", (IDictionary) p["xx3"]))}}, + {"g_withSideEffect_mergeEXout_vadasX_optionXonCreate_created_YX_optionXonMatch_created_NX_exists_updated_dynamic_override_sketchily_allowed", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b").Property("created", "Y").AddE((string) "knows").From("b").To("a").Property("created", "Y"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (ITraversal) __.Select("sideEffect1")).Option(Merge.OnMatch, new GValue>("xx3", (IDictionary) p["xx3"])), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E().HasLabel("knows").Has("created", "Y"), (g,p) =>g.E().HasLabel("knows").Has("created", "N").OutV().Has("name", "vadas")}}, + {"g_V_hasXperson_name_marko_X_mergeEXlabel_self_out_vadas1_in_vadas1X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.V().Has("person", "name", "marko").MergeE(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E().HasLabel("self").BothV().Has("name", "vadas")}}, + {"g_withSideEffectXc_created_YX_withSideEffectXm_matchedX_mergeEXlabel_knows_out_marko_in_vadasX_optionXonCreate_selectXcXX_optionXonMatch_selectXmXX_exists", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (ITraversal) __.Select("c")).Option(Merge.OnMatch, (ITraversal) __.Select("m")), (g,p) =>g.V(), (g,p) =>g.E().HasLabel("knows").Has("created", "Y"), (g,p) =>g.E().HasLabel("knows").Has("created", "N")}}, + {"g_withSideEffectXc_created_YX_withSideEffectXm_matchedX_mergeEXlabel_knows_out_marko_in_vadasX_optionXonCreate_selectXcXX_optionXonMatch_selectXmXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (ITraversal) __.Select("c")).Option(Merge.OnMatch, (ITraversal) __.Select("m")), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E().HasLabel("knows").Has("created", "Y"), (g,p) =>g.E().HasLabel("knows").Has("created", "N")}}, + {"g_withSideEffectXc_created_YX_withSideEffectXm_matchedX_mergeEXlabel_knows_out_marko1_in_vadas1X_optionXonCreate_selectXcXX_optionXonMatch_selectXmXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (ITraversal) __.Select("c")).Option(Merge.OnMatch, (ITraversal) __.Select("m")), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E().HasLabel("knows").Has("created", "Y"), (g,p) =>g.E().HasLabel("knows").Has("created", "N")}}, + {"g_mergeEXlabel_knows_out_marko_in_vadasX_aliased_direction", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.V().Has("person", "name", "marko").Out("knows").Has("person", "name", "vadas")}}, + {"g_withSideEffectXm1_label_knows_out_marko_in_vadas_m2_label_self_out_vadas_in_vadasX_unionXselectXm1X_selectXm2XX_mergeE", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.Union(__.Select("m1"), __.Select("m2")).MergeE(), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.V().Has("person", "name", "marko").Out("knows").Has("person", "name", "vadas"), (g,p) =>g.V().Has("person", "name", "vadas").Out("self").Has("person", "name", "vadas")}}, + {"g_withSideEffectXc_created_YX_withSideEffectXm_matchedX_mergeEXlabel_knows_out_marko_in_vadasX_optionXonCreate_selectXcXX_optionXonMatch_sideEffectXpropertiesXweightX_dropX_selectXmXX_exists", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").Property("weight", 1.0d).From("a").To("b"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (ITraversal) __.Select("c")).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Properties("weight").Drop()).Select("m")), (g,p) =>g.V(), (g,p) =>g.E().HasLabel("knows").Has("created", "Y"), (g,p) =>g.E().HasLabel("knows").Has("created", "N"), (g,p) =>g.E().HasLabel("knows").Has("weight")}}, + {"g_mergeE_with_outVinV_options_map", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OutV, new GValue>("xx2", (IDictionary) p["xx2"])).Option(Merge.InV, new GValue>("xx3", (IDictionary) p["xx3"])), (g,p) =>g.V(), (g,p) =>g.V().Has("name", "marko").Out("knows").Has("name", "vadas")}}, + {"g_mergeE_inline_with_outVinV_options_map", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE((IDictionary) new Dictionary {{ Direction.Out, Merge.OutV }, { Direction.In, Merge.InV }, { T.Label, "knows" }}).Option(Merge.OutV, new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.InV, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V(), (g,p) =>g.V().Has("name", "marko").Out("knows").Has("name", "vadas")}}, + {"g_mergeE_with_outVinV_options_select", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.V(p["vid1"]).As("x").V(p["vid2"]).As("y").MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OutV, (ITraversal) __.Select("x")).Option(Merge.InV, (ITraversal) __.Select("y")), (g,p) =>g.V(), (g,p) =>g.V().Has("name", "marko").Out("knows").Has("name", "vadas")}}, + {"g_mergeE_inline_with_outVinV_options_select", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.V(p["vid1"]).As("x").V(p["vid2"]).As("y").MergeE((IDictionary) new Dictionary {{ Direction.Out, Merge.OutV }, { Direction.In, Merge.InV }, { T.Label, "knows" }}).Option(Merge.OutV, (ITraversal) __.Select("x")).Option(Merge.InV, (ITraversal) __.Select("y")), (g,p) =>g.V(), (g,p) =>g.V().Has("name", "marko").Out("knows").Has("name", "vadas")}}, + {"g_mergeE_with_eid_specified_and_inheritance_1", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E("201"), (g,p) =>g.V().Has("name", "marko").Out("knows").Has("name", "vadas")}}, + {"g_mergeE_with_eid_specified_and_inheritance_2", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E("201"), (g,p) =>g.V().Has("name", "marko").Out("knows").Has("name", "vadas")}}, + {"g_mergeE_outV_override_prohibited", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"]))}}, + {"g_withSideEffect_withSideEffect_mergeE_outV_dynamic_override_prohibited", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (ITraversal) __.Select("sideEffect1"))}}, + {"g_mergeE_inV_override_prohibited", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"]))}}, + {"g_withSideEffect_mergeE_inV_dynamic_override_prohibited", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (ITraversal) __.Select("sideEffect1"))}}, + {"g_mergeE_label_override_prohibited", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"]))}}, + {"g_mergeE_label_dynamic_override_prohibited", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (ITraversal) __.Select("sideEffect1"))}}, + {"g_mergeE_id_override_prohibited", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"]))}}, + {"g_withSideEffect_mergeE_id_dynamic_override_prohibited", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (ITraversal) __.Select("sideEffect1"))}}, + {"g_mergeV_mergeE_combination_new_vertices", new List, ITraversal>> {(g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).As("outV").MergeV(new GValue>("xx2", (IDictionary) p["xx2"])).As("inV").MergeE(new GValue>("xx3", (IDictionary) p["xx3"])).Option(Merge.OutV, (ITraversal) __.Select("outV")).Option(Merge.InV, (ITraversal) __.Select("inV")), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.V().Has("name", "marko").Out("knows").Has("name", "vadas")}}, + {"g_mergeV_mergeE_combination_existing_vertices", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").AddV((string) "person").Property("name", "vadas"), (g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).As("outV").MergeV(new GValue>("xx2", (IDictionary) p["xx2"])).As("inV").MergeE(new GValue>("xx3", (IDictionary) p["xx3"])).Option(Merge.OutV, (ITraversal) __.Select("outV")).Option(Merge.InV, (ITraversal) __.Select("inV")), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.V().Has("name", "marko").Out("knows").Has("name", "vadas")}}, + {"g_V_asXvX_mergeEXxx1X_optionXMerge_onMatch_xx2X_optionXMerge_outV_selectXvXX_optionXMerge_inV_selectXvXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.V().As("v").MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnMatch, new GValue>("xx2", (IDictionary) p["xx2"])).Option(Merge.OutV, (ITraversal) __.Select("v")).Option(Merge.InV, (ITraversal) __.Select("v"))}}, + {"g_V_mergeEXlabel_knows_out_marko_in_vadasX_optionXonMatch_sideEffectXpropertyXweight_0XX_constantXemptyXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").Property("weight", 1).From("a").To("b"), (g,p) =>g.V().MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Property("weight", 0)).Constant(new Dictionary {})), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E().HasLabel("knows").Has("weight", 0)}}, + {"g_mergeEXlabel_knows_out_marko_in_vadasX_optionXonMatch_sideEffectXpropertyXweight_0XX_constantXemptyXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").Property("weight", 1).From("a").To("b"), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Property("weight", 0)).Constant(new Dictionary {})), (g,p) =>g.V(), (g,p) =>g.E().HasLabel("knows").Has("weight", 1), (g,p) =>g.E().HasLabel("knows").Has("weight", 0), (g,p) =>g.V().Has("weight")}}, + {"g_unionXselectXmapX_selectXmapX_constantXcreated_NXX_fold_asXmX_mergeEXselectXmX_limitXlocal_1X_unfoldX_optionXonCreate_selectXmX_rangeXlocal_1_2X_unfoldX_optionXonMatch_selectXmX_tailXlocalX_unfoldX_to_match", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.Union(__.Select("map"), __.Select("map"), __.Constant(new Dictionary {{ "created", "N" }})).Fold().As("m").MergeE((ITraversal) __.Select("m").Limit(Scope.Local, 1).Unfold()).Option(Merge.OnCreate, (ITraversal) __.Select("m").Range(Scope.Local, 1, 2).Unfold()).Option(Merge.OnMatch, (ITraversal) __.Select("m").Tail(Scope.Local).Unfold()), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E().Has("created", "N"), (g,p) =>g.V().Has("person", "name", "marko").OutE("knows").Has("created", "N").InV().Has("person", "name", "vadas")}}, + {"g_unionXselectXmapX_selectXmapX_constantXcreated_NXX_fold_asXmX_mergeEXselectXmX_limitXlocal_1X_unfoldX_optionXonCreate_selectXmX_rangeXlocal_1_2X_unfoldX_optionXonMatch_selectXmX_tailXlocalX_unfoldX_to_create", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.Union(__.Select("map"), __.Select("map"), __.Constant(new Dictionary {{ "created", "N" }})).Fold().As("m").MergeE((ITraversal) __.Select("m").Limit(Scope.Local, 1).Unfold()).Option(Merge.OnCreate, (ITraversal) __.Select("m").Range(Scope.Local, 1, 2).Unfold()).Option(Merge.OnMatch, (ITraversal) __.Select("m").Tail(Scope.Local).Unfold()), (g,p) =>g.V(), (g,p) =>g.E(), (g,p) =>g.E().HasNot("created"), (g,p) =>g.V().Has("person", "name", "marko").OutE("knows").HasNot("created").InV().Has("person", "name", "vadas"), (g,p) =>g.V().Has("person", "name", "vadas").OutE("self").HasNot("weight").InV().Has("person", "name", "vadas")}}, + {"g_mergeEXlabel_knows_out_marko_in_vadasX_optionXonMatch_weight_nullX_allowed", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b").Property("weight", 1.0d), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnMatch, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V(), (g,p) =>g.E().HasLabel("knows"), (g,p) =>g.E().HasLabel("knows").Has("weight", (object) null)}}, + {"g_mergeEXlabel_knows_out_marko_in_vadasX_optionXonMatch_weight_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").As("a").AddV((string) "person").Property("name", "vadas").As("b").AddE((string) "knows").From("a").To("b").Property("weight", 1.0d), (g,p) =>g.MergeE(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnMatch, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V(), (g,p) =>g.E().HasLabel("knows"), (g,p) =>g.E().HasLabel("knows").Has("weight")}}, + {"g_mergeVXemptyX_optionXonMatch_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, (IDictionary) null), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 29)}}, + {"g_V_mergeVXemptyX_optionXonMatch_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.V().MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, (IDictionary) null), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 29)}}, + {"g_mergeVXnullX_optionXonCreate_label_null_name_markoX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_V_mergeVXnullX_optionXonCreate_label_null_name_markoX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.V().MergeV(new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_mergeVXlabel_person_name_stephenX_optionXonCreate_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (IDictionary) null), (g,p) =>g.V(), (g,p) =>g.V().Has("person", "name", "marko"), (g,p) =>g.V().Has("person", "name", "stephen")}}, + {"g_V_mergeVXlabel_person_name_stephenX_optionXonCreate_nullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.V().MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (IDictionary) null), (g,p) =>g.V(), (g,p) =>g.V().Has("person", "name", "marko"), (g,p) =>g.V().Has("person", "name", "stephen")}}, + {"g_mergeVXnullX_optionXonCreate_emptyX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV((IDictionary) null).Option(Merge.OnCreate, (IDictionary) new Dictionary {}), (g,p) =>g.V()}}, + {"g_V_mergeVXnullX_optionXonCreate_emptyX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.V().MergeV((IDictionary) null).Option(Merge.OnCreate, (IDictionary) new Dictionary {}), (g,p) =>g.V()}}, + {"g_mergeVXemptyX_no_existing", new List, ITraversal>> {(g,p) =>g.MergeV((IDictionary) new Dictionary {}), (g,p) =>g.V()}}, + {"g_injectX0X_mergeVXemptyX_no_existing", new List, ITraversal>> {(g,p) =>g.Inject(0).MergeV((IDictionary) new Dictionary {}), (g,p) =>g.V()}}, + {"g_mergeVXemptyX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV((IDictionary) new Dictionary {}), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 29)}}, + {"g_V_mergeVXemptyX_two_exist", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).AddV((string) "person").Property("name", "vadas").Property("age", 27), (g,p) =>g.V().MergeV((IDictionary) new Dictionary {}), (g,p) =>g.V(), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 29), (g,p) =>g.V().Has("person", "name", "vadas").Has("age", 27)}}, + {"g_mergeVXnullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV((IDictionary) null), (g,p) =>g.V()}}, + {"g_mergeVXnullvarX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.V()}}, + {"g_V_mergeVXnullX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.V().MergeV((IDictionary) null), (g,p) =>g.V()}}, + {"g_mergeVXlabel_person_name_stephenX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.V().Has("person", "name", "stephen")}}, + {"g_mergeVXlabel_person_name_markoX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.V().Has("person", "name", "marko")}}, + {"g_mergeVXlabel_person_name_stephenX_optionXonCreate_label_person_name_stephen_age_19X_option", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V().Has("person", "name", "stephen").Has("age", 19)}}, + {"g_mergeVXlabel_person_name_markoX_optionXonMatch_age_19X_option", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnMatch, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 19)}}, + {"g_withSideEffectXc_label_person_name_stephenX_withSideEffectXm_label_person_name_stephen_age_19X_mergeVXselectXcXX_optionXonCreate_selectXmXX_option", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV((ITraversal) __.Select("c")).Option(Merge.OnCreate, (ITraversal) __.Select("m")), (g,p) =>g.V().Has("person", "name", "stephen").Has("age", 19)}}, + {"g_withSideEffectXc_label_person_name_markoX_withSideEffectXm_age_19X_mergeVXselectXcXX_optionXonMatch_selectXmXX_option", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV((ITraversal) __.Select("c")).Option(Merge.OnMatch, (ITraversal) __.Select("m")), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 19)}}, + {"g_mergeVXlabel_person_name_markoX_propertyXname_vadas_acl_publicX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Property("name", "vadas", "acl", "public"), (g,p) =>g.V().Properties("name").HasValue("vadas").Has("acl", "public")}}, + {"g_injectX0X_mergeVXlabel_person_name_stephenX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.Inject(0).MergeV(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.V().Has("person", "name", "stephen")}}, + {"g_injectX0X_mergeVXlabel_person_name_markoX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.Inject(0).MergeV(new GValue>("xx1", (IDictionary) p["xx1"])), (g,p) =>g.V().Has("person", "name", "marko")}}, + {"g_injectX0X_mergeVXlabel_person_name_stephenX_optionXonCreate_label_person_name_stephen_age_19X_option", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.Inject(0).MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V().Has("person", "name", "stephen").Has("age", 19)}}, + {"g_injectX0X_mergeVXlabel_person_name_markoX_optionXonMatch_age_19X_option", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.Inject(0).MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnMatch, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 19)}}, + {"g_withSideEffectXc_label_person_name_stephenX_withSideEffectXm_label_person_name_stephen_age_19X_injectX0X_mergeVXselectXcXX_optionXonCreate_selectXmXX_option", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.Inject(0).MergeV((ITraversal) __.Select("c")).Option(Merge.OnCreate, (ITraversal) __.Select("m")), (g,p) =>g.V().Has("person", "name", "stephen").Has("age", 19)}}, + {"g_withSideEffectXc_label_person_name_markoX_withSideEffectXm_age_19X_injectX0X_mergeVXselectXcXX_optionXonMatch_selectXmXX_option", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.Inject(0).MergeV((ITraversal) __.Select("c")).Option(Merge.OnMatch, (ITraversal) __.Select("m")), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 19)}}, + {"g_injectX0X_mergeVXlabel_person_name_markoX_propertyXname_vadas_acl_publicX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.Inject(0).MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Property("name", "vadas", "acl", "public"), (g,p) =>g.V().Properties("name").HasValue("vadas").Has("acl", "public")}}, + {"g_injectXlabel_person_name_marko_label_person_name_stephenX_mergeVXidentityX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.Inject(new Dictionary {{ T.Label, "person" }, { "name", "marko" }}, new Dictionary {{ T.Label, "person" }, { "name", "stephen" }}).MergeV((ITraversal) __.Identity()), (g,p) =>g.V().Has("person", "name", "stephen"), (g,p) =>g.V().Has("person", "name", "marko"), (g,p) =>g.V()}}, + {"g_injectXlabel_person_name_marko_label_person_name_stephenX_mergeV", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.Inject(new Dictionary {{ T.Label, "person" }, { "name", "marko" }}, new Dictionary {{ T.Label, "person" }, { "name", "stephen" }}).MergeV(), (g,p) =>g.V().Has("person", "name", "stephen"), (g,p) =>g.V().Has("person", "name", "marko"), (g,p) =>g.V()}}, + {"g_mergeVXlabel_person_name_stephenX_propertyXlist_name_steveX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property(Cardinality.List, "name", "stephen"), (g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Property(Cardinality.List, "name", "steve"), (g,p) =>g.V(), (g,p) =>g.V().Properties("name").HasValue("steve"), (g,p) =>g.V().Properties("name").HasValue("stephen"), (g,p) =>g.V().Properties("name")}}, + {"g_mergeXlabel_person_name_vadasX_optionXonMatch_age_35X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "vadas").Property("age", 29).AddV((string) "person").Property("name", "vadas").Property("age", 27), (g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnMatch, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V().Has("age", 35), (g,p) =>g.V()}}, + {"g_V_mapXmergeXlabel_person_name_joshXX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "vadas").Property("age", 29).AddV((string) "person").Property("name", "stephen").Property("age", 27), (g,p) =>g.V().Map(__.MergeV(new GValue>("xx1", (IDictionary) p["xx1"]))), (g,p) =>g.V().Has("person", "name", "josh"), (g,p) =>g.V()}}, + {"g_withSideEffectXc_label_person_name_markoX_withSideEffectXm_age_19X_mergeVXselectXcXX_optionXonMatch_sideEffectXpropertiesXageX_dropX_selectXmXX_option", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property(Cardinality.List, "age", 29).Property(Cardinality.List, "age", 31).Property(Cardinality.List, "age", 32), (g,p) =>g.MergeV((ITraversal) __.Select("c")).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Properties("age").Drop()).Select("m")), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 19), (g,p) =>g.V().Has("person", "name", "marko").Has("age")}}, + {"g_withSideEffectXm_age_19X_V_hasXperson_name_markoX_mergeVXselectXcXX_optionXonMatch_sideEffectXpropertiesXageX_dropX_selectXmXX_option", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property(Cardinality.List, "age", 29).Property(Cardinality.List, "age", 31).Property(Cardinality.List, "age", 32), (g,p) =>g.V().Has("person", "name", "marko").MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Properties("age").Drop()).Select("m")), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 19), (g,p) =>g.V().Has("person", "name", "marko").Properties("age")}}, + {"g_mergeV_onCreate_inheritance_existing", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "mike").Property(T.Id, "1"), (g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V(), (g,p) =>g.V("1").Has("person", "name", "mike")}}, + {"g_mergeV_onCreate_inheritance_new_1", new List, ITraversal>> {(g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V(), (g,p) =>g.V("1").Has("person", "name", "mike")}}, + {"g_mergeV_onCreate_inheritance_new_2", new List, ITraversal>> {(g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"])), (g,p) =>g.V(), (g,p) =>g.V("1").Has("person", "name", "mike")}}, + {"g_mergeV_label_override_prohibited", new List, ITraversal>> {(g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"]))}}, + {"g_withSideEffect_mergeV_label_dynamic_override_prohibited", new List, ITraversal>> {(g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, (ITraversal) __.Select("sideEffect1"))}}, + {"g_mergeV_id_override_prohibited", new List, ITraversal>> {(g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"])).Option(Merge.OnCreate, new GValue>("xx2", (IDictionary) p["xx2"]))}}, + {"g_mergeV_hidden_id_key_prohibited", new List, ITraversal>> {(g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_mergeV_hidden_label_key_prohibited", new List, ITraversal>> {(g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_mergeV_hidden_label_value_prohibited", new List, ITraversal>> {(g,p) =>g.MergeV(new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_mergeV_hidden_id_key_onCreate_prohibited", new List, ITraversal>> {(g,p) =>g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnCreate, new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_mergeV_hidden_label_key_onCreate_prohibited", new List, ITraversal>> {(g,p) =>g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnCreate, new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_mergeV_hidden_label_value_onCreate_prohibited", new List, ITraversal>> {(g,p) =>g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnCreate, new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_mergeV_hidden_id_key_onMatch_matched_prohibited", new List, ITraversal>> {(g,p) =>g.AddV((string) "vertex"), (g,p) =>g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_mergeV_hidden_label_key_matched_onMatch_matched_prohibited", new List, ITraversal>> {(g,p) =>g.AddV((string) "vertex"), (g,p) =>g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_mergeVXname_markoX_optionXonMatch_age_listX33XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property(Cardinality.List, "age", 29).Property(Cardinality.List, "age", 31).Property(Cardinality.List, "age", 32), (g,p) =>g.MergeV((IDictionary) new Dictionary {{ "name", "marko" }}).Option(Merge.OnMatch, (IDictionary) new Dictionary {{ "age", CardinalityValue.List(33) }}), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 33), (g,p) =>g.V().Has("person", "name", "marko").Has("age"), (g,p) =>g.V().Has("person", "name", "marko").Properties("age")}}, + {"g_mergeVXname_markoX_optionXonMatch_age_setX33XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property(Cardinality.List, "age", 29).Property(Cardinality.List, "age", 31).Property(Cardinality.List, "age", 32), (g,p) =>g.MergeV((IDictionary) new Dictionary {{ "name", "marko" }}).Option(Merge.OnMatch, (IDictionary) new Dictionary {{ "age", CardinalityValue.Set(33) }}), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 33), (g,p) =>g.V().Has("person", "name", "marko").Has("age"), (g,p) =>g.V().Has("person", "name", "marko").Properties("age")}}, + {"g_mergeVXname_markoX_optionXonMatch_age_setX31XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property(Cardinality.List, "age", 29).Property(Cardinality.List, "age", 31).Property(Cardinality.List, "age", 32), (g,p) =>g.MergeV((IDictionary) new Dictionary {{ "name", "marko" }}).Option(Merge.OnMatch, (IDictionary) new Dictionary {{ "age", CardinalityValue.Set(31) }}), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 31), (g,p) =>g.V().Has("person", "name", "marko").Has("age"), (g,p) =>g.V().Has("person", "name", "marko").Properties("age")}}, + {"g_mergeVXname_markoX_optionXonMatch_age_singleX33XX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property(Cardinality.List, "age", 29).Property(Cardinality.List, "age", 31).Property(Cardinality.List, "age", 32), (g,p) =>g.MergeV((IDictionary) new Dictionary {{ "name", "marko" }}).Option(Merge.OnMatch, (IDictionary) new Dictionary {{ "age", CardinalityValue.Single(33) }}), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 33), (g,p) =>g.V().Has("person", "name", "marko").Has("age"), (g,p) =>g.V().Has("person", "name", "marko").Properties("age")}}, + {"g_mergeVXname_markoX_optionXonMatch_age_33_singleX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property(Cardinality.List, "age", 29).Property(Cardinality.List, "age", 31).Property(Cardinality.List, "age", 32), (g,p) =>g.MergeV((IDictionary) new Dictionary {{ "name", "marko" }}).Option(Merge.OnMatch, new Dictionary {{ "age", 33 }}, Cardinality.Single), (g,p) =>g.V().Has("person", "name", "marko").Has("age", 33), (g,p) =>g.V().Has("person", "name", "marko").Has("age"), (g,p) =>g.V().Has("person", "name", "marko").Properties("age")}}, + {"g_mergeVXname_markoX_optionXonMatch_name_allen_age_setX31X_singleX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property(Cardinality.List, "age", 29).Property(Cardinality.List, "age", 31).Property(Cardinality.List, "age", 32), (g,p) =>g.MergeV((IDictionary) new Dictionary {{ "name", "marko" }}).Option(Merge.OnMatch, new Dictionary {{ "name", "allen" }, { "age", CardinalityValue.Set(31) }}, Cardinality.Single), (g,p) =>g.V().Has("person", "name", "marko"), (g,p) =>g.V().Has("person", "name", "allen").Has("age", 31), (g,p) =>g.V().Has("person", "name", "allen").Has("age"), (g,p) =>g.V().Has("person", "name", "allen").Properties("age")}}, + {"g_mergeVXname_markoX_optionXonMatch_name_allen_age_singleX31X_singleX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property(Cardinality.List, "age", 29).Property(Cardinality.List, "age", 31).Property(Cardinality.List, "age", 32), (g,p) =>g.MergeV((IDictionary) new Dictionary {{ "name", "marko" }}).Option(Merge.OnMatch, new Dictionary {{ "name", "allen" }, { "age", CardinalityValue.Single(31) }}, Cardinality.Single), (g,p) =>g.V().Has("person", "name", "marko"), (g,p) =>g.V().Has("person", "name", "allen").Has("age", 33), (g,p) =>g.V().Has("person", "name", "allen").Has("age", 31), (g,p) =>g.V().Has("person", "name", "allen").Has("age"), (g,p) =>g.V().Has("person", "name", "allen").Properties("age")}}, + {"g_mergeVXname_aliceX_optionXonCreate_age_singleX81XX", new List, ITraversal>> {(g,p) =>g.MergeV((IDictionary) new Dictionary {{ "name", "alice" }, { T.Label, "person" }}).Option(Merge.OnCreate, (IDictionary) new Dictionary {{ "age", CardinalityValue.Single(81) }}), (g,p) =>g.V().Has("person", "name", "alice").Has("age", 81), (g,p) =>g.V().Has("person", "name", "alice").Has("age"), (g,p) =>g.V().Has("person", "name", "alice").Properties("age")}}, + {"g_mergeVXname_aliceX_optionXonCreate_age_setX81XX", new List, ITraversal>> {(g,p) =>g.MergeV((IDictionary) new Dictionary {{ "name", "alice" }, { T.Label, "person" }}).Option(Merge.OnCreate, (IDictionary) new Dictionary {{ "age", CardinalityValue.Set(81) }}), (g,p) =>g.V().Has("person", "name", "alice").Has("age", 81), (g,p) =>g.V().Has("person", "name", "alice").Has("age"), (g,p) =>g.V().Has("person", "name", "alice").Properties("age")}}, + {"g_mergeVXname_aliceX_optionXonCreate_age_81_setX", new List, ITraversal>> {(g,p) =>g.MergeV((IDictionary) new Dictionary {{ "name", "alice" }, { T.Label, "person" }}).Option(Merge.OnCreate, new Dictionary {{ "age", 81 }}, Cardinality.Set), (g,p) =>g.V().Has("person", "name", "alice").Has("age", 81), (g,p) =>g.V().Has("person", "name", "alice").Has("age"), (g,p) =>g.V().Has("person", "name", "alice").Properties("age")}}, + {"g_mergeVXname_aliceX_optionXonCreate_age_81_label_person_setX", new List, ITraversal>> {(g,p) =>g.MergeV((IDictionary) new Dictionary {{ "name", "alice" }}).Option(Merge.OnCreate, new Dictionary {{ "age", 81 }, { T.Label, "person" }}, Cardinality.Set), (g,p) =>g.V().Has("person", "name", "alice").Has("age", 81), (g,p) =>g.V().Has("person", "name", "alice").Has("age"), (g,p) =>g.V().Has("person", "name", "alice").Properties("age")}}, + {"g_mergeV_hidden_label_key_onMatch_matched_prohibited", new List, ITraversal>> {(g,p) =>g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, new GValue>("xx1", (IDictionary) p["xx1"]))}}, + {"g_injectXlist1_list2_list3X_fold_asXmX_mergeVXselectXmX_limitXlocal_1X_unfoldX_optionXonCreate_selectXmX_rangeXlocal_1_2X_unfoldX_optionXonMatch_selectXmX_tailXlocalX_unfoldX_to_match", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.Inject(new Dictionary {{ T.Label, "person" }, { "name", "marko" }}, new Dictionary {{ T.Label, "person" }, { "name", "marko" }}, new Dictionary {{ "created", "N" }}).Fold().As("m").MergeV((ITraversal) __.Select("m").Limit(Scope.Local, 1).Unfold()).Option(Merge.OnCreate, (ITraversal) __.Select("m").Range(Scope.Local, 1, 2).Unfold()).Option(Merge.OnMatch, (ITraversal) __.Select("m").Tail(Scope.Local).Unfold()), (g,p) =>g.V().Has("person", "name", "marko").Has("created", "N"), (g,p) =>g.V()}}, + {"g_injectXlist1_list2_list3X_fold_asXmX_mergeVXselectXmX_limitXlocal_1X_unfoldX_optionXonCreate_selectXmX_rangeXlocal_1_2X_unfoldX_optionXonMatch_selectXmX_tailXlocalX_unfoldX_to_create", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29), (g,p) =>g.Inject(new Dictionary {{ T.Label, "person" }, { "name", "stephen" }}, new Dictionary {{ T.Label, "person" }, { "name", "stephen" }}, new Dictionary {{ "created", "N" }}).Fold().As("m").MergeV((ITraversal) __.Select("m").Limit(Scope.Local, 1).Unfold()).Option(Merge.OnCreate, (ITraversal) __.Select("m").Range(Scope.Local, 1, 2).Unfold()).Option(Merge.OnMatch, (ITraversal) __.Select("m").Tail(Scope.Local).Unfold()), (g,p) =>g.V().Has("person", "name", "stephen").HasNot("created"), (g,p) =>g.V()}}, + {"g_V_age_min", new List, ITraversal>> {(g,p) =>g.V().Values("age").Min()}}, + {"g_V_foo_min", new List, ITraversal>> {(g,p) =>g.V().Values("foo").Min()}}, + {"g_V_name_min", new List, ITraversal>> {(g,p) =>g.V().Values("name").Min()}}, + {"g_V_age_fold_minXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold().Min(Scope.Local)}}, + {"g_V_aggregateXaX_byXageX_capXaX_minXlocalX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("age").Cap("a").Min(Scope.Local)}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXageX_capXaX_minXlocalX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("age").Cap("a").Min(Scope.Local)}}, + {"g_V_aggregateXaX_byXageX_capXaX_unfold_min", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("age").Cap("a").Unfold().Min()}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXageX_capXaX_unfold_min", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("age").Cap("a").Unfold().Min()}}, + {"g_V_aggregateXaX_byXfooX_capXaX_minXlocalX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("foo").Cap("a").Min(Scope.Local)}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXfooX_capXaX_minXlocalX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("foo").Cap("a").Min(Scope.Local)}}, + {"g_V_aggregateXaX_byXfooX_capXaX_unfold_min", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("foo").Cap("a").Unfold().Min()}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXfooX_capXaX_unfold_min", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("foo").Cap("a").Unfold().Min()}}, + {"g_V_foo_fold_minXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("foo").Fold().Min(Scope.Local)}}, + {"g_V_name_fold_minXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Min(Scope.Local)}}, + {"g_V_repeatXbothX_timesX5X_age_min", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Both()).Times(5).Values("age").Min()}}, + {"g_V_hasLabelXsoftwareX_group_byXnameX_byXbothE_weight_minX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Group().By("name").By(__.BothE().Values("weight").Min())}}, + {"g_V_foo_injectX9999999999X_min", new List, ITraversal>> {(g,p) =>g.V().Values("foo").Inject(9999999999l).Min()}}, + {"g_VX1X_valuesXageX_minXlocalX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Values("age").Min(Scope.Local)}}, + {"g_V_localXunionXvaluesXageX_outE_valuesXweightXX_foldX_minXlocalX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Union(__.Values("age"), __.OutE().Values("weight")).Fold()).Min(Scope.Local)}}, + {"g_V_name_order", new List, ITraversal>> {(g,p) =>g.V().Values("name").Order()}}, + {"g_V_order_byXname_ascX_name", new List, ITraversal>> {(g,p) =>g.V().Order().By("name", Order.Asc).Values("name")}}, + {"g_V_order_byXnameX_name", new List, ITraversal>> {(g,p) =>g.V().Order().By("name").Values("name")}}, + {"g_V_outE_order_byXweight_descX_weight", new List, ITraversal>> {(g,p) =>g.V().OutE().Order().By("weight", Order.Desc).Values("weight")}}, + {"g_V_asXaX_outXcreatedX_asXbX_order_byXshuffleX_selectXa_bX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out("created").As("b").Order().By(Order.Shuffle).Select("a", "b")}}, + {"g_V_both_hasLabelXpersonX_order_byXage_descX_limitX5X_name", new List, ITraversal>> {(g,p) =>g.V().Both().HasLabel("person").Order().By("age", Order.Desc).Limit(5).Values("name")}}, + {"g_V_properties_order_byXkey_descX_key", new List, ITraversal>> {(g,p) =>g.V().Properties().Order().By(T.Key, Order.Desc).Key()}}, + {"g_V_hasLabelXpersonX_group_byXnameX_byXoutE_weight_sumX_orderXlocalX_byXvaluesX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Group().By("name").By(__.OutE().Values("weight").Sum()).Order(Scope.Local).By(Column.Values)}}, + {"g_V_mapXbothE_weight_foldX_order_byXsumXlocalX_descX_byXcountXlocalX_descX", new List, ITraversal>> {(g,p) =>g.V().Map(__.BothE().Values("weight").Order().By(Order.Asc).Fold()).Order().By(__.Sum(Scope.Local), Order.Desc).By(__.Count(Scope.Local), Order.Desc)}}, + {"g_V_group_byXlabelX_byXname_order_byXdescX_foldX", new List, ITraversal>> {(g,p) =>g.V().Group().By(T.Label).By(__.Values("name").Order().By(Order.Desc).Fold())}}, + {"g_V_hasLabelXpersonX_group_byXnameX_byXoutE_weight_sumX_unfold_order_byXvalues_descX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Group().By("name").By(__.OutE().Values("weight").Sum()).Unfold().Order().By(Column.Values, Order.Desc)}}, + {"g_V_asXvX_mapXbothE_weight_foldX_sumXlocalX_asXsX_selectXv_sX_order_byXselectXsX_descX_byXselectXvX_nameX", new List, ITraversal>> {(g,p) =>g.V().As("v").Map(__.BothE().Values("weight").Fold()).Sum(Scope.Local).As("s").Select("v", "s").Order().By(__.Select("s"), Order.Desc).By(__.Select("v").Values("name"))}}, + {"g_V_hasLabelXpersonX_fold_orderXlocalX_byXageX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Fold().Order(Scope.Local).By("age")}}, + {"g_V_both_hasLabelXpersonX_order_byXage_descX_name", new List, ITraversal>> {(g,p) =>g.V().Both().HasLabel("person").Order().By("age", Order.Desc).Values("name")}}, + {"g_V_order_byXoutE_count_descX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Order().By(__.OutE().Count(), Order.Desc).By("name")}}, + {"g_V_hasLabelXpersonX_order_byXageX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Order().By("age")}}, + {"g_V_order_byXageX", new List, ITraversal>> {(g,p) =>g.V().Order().By("age")}}, + {"g_V_fold_orderXlocalX_byXageX", new List, ITraversal>> {(g,p) =>g.V().Fold().Order(Scope.Local).By("age")}}, + {"g_V_fold_orderXlocalX_byXage_descX", new List, ITraversal>> {(g,p) =>g.V().Fold().Order(Scope.Local).By("age", Order.Desc)}}, + {"g_V_orXhasLabelXpersonX_hasXsoftware_name_lopXX_order_byXageX", new List, ITraversal>> {(g,p) =>g.V().Or(__.HasLabel("person"), __.Has("software", "name", "lop")).Order().By("age")}}, + {"g_withStrategiesXProductiveByStrategyX_V_orXhasLabelXpersonX_hasXsoftware_name_lopXX_order_byXageX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Or(__.HasLabel("person"), __.Has("software", "name", "lop")).Order().By("age")}}, + {"g_V_hasXsong_name_OHBOYX_outXfollowedByX_outXfollowedByX_order_byXperformancesX_byXsongType_descX", new List, ITraversal>> {(g,p) =>g.V().Has("song", "name", "OH BOY").Out("followedBy").Out("followedBy").Order().By("performances").By("songType", Order.Desc).By("name")}}, + {"g_V_hasLabelXsongX_order_byXperformances_descX_byXnameX_rangeX110_120X_name", new List, ITraversal>> {(g,p) =>g.V().HasLabel("song").Order().By("performances", Order.Desc).By("name").Range(110, 120).Values("name")}}, + {"g_VX1X_elementMap_orderXlocalX_byXkeys_descXunfold", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).ElementMap().Order(Scope.Local).By(Column.Keys, Order.Desc).Unfold()}}, + {"g_VX1X_elementMap_orderXlocalX_byXkeys_ascXunfold", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).ElementMap().Order(Scope.Local).By(Column.Keys, Order.Asc).Unfold()}}, + {"g_VX1X_valuesXageX_orderXlocalX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Values("age").Order(Scope.Local)}}, + {"g_V_pageRank_hasXpageRankX", new List, ITraversal>> {(g,p) =>g.V().PageRank().Has("gremlin.pageRankVertexProgram.pageRank")}}, + {"g_V_outXcreatedX_pageRank_withXedges_bothEX_withXpropertyName_projectRankX_withXtimes_0X_valueMapXname_projectRankX", new List, ITraversal>> {(g,p) =>g.V().Out("created").PageRank().With("~tinkerpop.pageRank.edges", __.BothE()).With("~tinkerpop.pageRank.propertyName", "projectRank").With("~tinkerpop.pageRank.times", 0).ValueMap("name", "projectRank")}}, + {"g_V_pageRank_order_byXpageRank_descX_byXnameX_name", new List, ITraversal>> {(g,p) =>g.V().PageRank().Order().By("gremlin.pageRankVertexProgram.pageRank", Order.Desc).By("name").Values("name")}}, + {"g_V_pageRank_order_byXpageRank_descX_name_limitX2X", new List, ITraversal>> {(g,p) =>g.V().PageRank().Order().By("gremlin.pageRankVertexProgram.pageRank", Order.Desc).Values("name").Limit(2)}}, + {"g_V_pageRank_withXedges_outEXknowsXX_withXpropertyName_friendRankX_project_byXnameX_byXvaluesXfriendRankX_mathX", new List, ITraversal>> {(g,p) =>g.V().PageRank().With("~tinkerpop.pageRank.edges", __.OutE("knows")).With("~tinkerpop.pageRank.propertyName", "friendRank").Project("name", "friendRank").By("name").By(__.Values("friendRank").Math("ceil(_ * 100)"))}}, + {"g_V_hasLabelXpersonX_pageRank_withXpropertyName_kpageRankX_project_byXnameX_byXvaluesXpageRankX_mathX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").PageRank().With("~tinkerpop.pageRank.propertyName", "pageRank").Project("name", "pageRank").By("name").By(__.Values("pageRank").Math("ceil(_ * 100)"))}}, + {"g_V_pageRank_withXpropertyName_pageRankX_asXaX_outXknowsX_pageRank_asXbX_selectXa_bX_by_byXmathX", new List, ITraversal>> {(g,p) =>g.V().PageRank().With("~tinkerpop.pageRank.propertyName", "pageRank").As("a").Out("knows").Values("pageRank").As("b").Select("a", "b").By().By(__.Math("ceil(_ * 100)"))}}, + {"g_V_hasLabelXsoftwareX_hasXname_rippleX_pageRankX1X_withXedges_inEXcreatedX_withXtimes_1X_withXpropertyName_priorsX_inXcreatedX_unionXboth__identityX_valueMapXname_priorsX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Has("name", "ripple").PageRank(1.0).With("~tinkerpop.pageRank.edges", __.InE("created")).With("~tinkerpop.pageRank.times", 1).With("~tinkerpop.pageRank.propertyName", "priors").In("created").Union(__.Both(), __.Identity()).ValueMap("name", "priors")}}, + {"g_V_outXcreatedX_groupXmX_byXlabelX_pageRankX1X_withXpropertyName_pageRankX_withXedges_inEX_withXtimes_1X_inXcreatedX_groupXmX_byXpageRankX_capXmX", new List, ITraversal>> {(g,p) =>g.V().Out("created").Group("m").By(T.Label).PageRank(1.0).With("~tinkerpop.pageRank.propertyName", "pageRank").With("~tinkerpop.pageRank.edges", __.InE()).With("~tinkerpop.pageRank.times", 1).In("created").Group("m").By("pageRank").Cap("m")}}, + {"g_VX1X_name_path", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Values("name").Path()}}, + {"g_VX1X_out_path_byXageX_byXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Path().By("age").By("name")}}, + {"g_V_repeatXoutX_timesX2X_path_byXitX_byXnameX_byXlangX", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out()).Times(2).Path().By().By("name").By("lang")}}, + {"g_V_out_out_path_byXnameX_byXageX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").By("age")}}, + {"g_V_asXaX_hasXname_markoX_asXbX_hasXage_29X_asXcX_path", new List, ITraversal>> {(g,p) =>g.V().As("a").Has("name", "marko").As("b").Has("age", 29).As("c").Path()}}, + {"g_VX1X_outEXcreatedX_inV_inE_outV_path", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE("created").InV().InE().OutV().Path()}}, + {"g_V_asXaX_out_asXbX_out_asXcX_path_fromXbX_toXcX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Out().As("c").Path().From("b").To("c").By("name")}}, + {"g_VX1X_out_path_byXageX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Path().By("age")}}, + {"g_withStrategiesXProductiveByStrategyX_VX1X_out_path_byXageX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V(p["vid1"]).Out().Path().By("age")}}, + {"g_injectX1_null_nullX_path", new List, ITraversal>> {(g,p) =>g.Inject(1, null, null).Path()}}, + {"g_injectX1_null_nullX_path_dedup", new List, ITraversal>> {(g,p) =>g.Inject(1, null, null).Path().Dedup()}}, + {"g_V_peerPressure_hasXclusterX", new List, ITraversal>> {(g,p) =>g.V().PeerPressure().Has("gremlin.peerPressureVertexProgram.cluster")}}, + {"g_V_peerPressure_withXpropertyName_clusterX_withXedges_outEXknowsXX_pageRankX1X_byXrankX_withXedges_outEXknowsX_withXtimes_2X_group_byXclusterX_byXrank_sumX_limitX100X", new List, ITraversal>> {(g,p) =>g.V().PeerPressure().With("~tinkerpop.peerPressure.propertyName", "cluster").With("~tinkerpop.peerPressure.edges", __.OutE("knows")).PageRank(1.0).With("~tinkerpop.pageRank.propertyName", "rank").With("~tinkerpop.pageRank.edges", __.OutE("knows")).With("~tinkerpop.pageRank.times", 1).Group().By("cluster").By(__.Values("rank").Sum()).Limit(100)}}, + {"g_V_hasXname_rippleX_inXcreatedX_peerPressure_withXedges_outEX_withyXpropertyName_clusterX_repeatXunionXidentity__bothX_timesX2X_dedup_valueMapXname_clusterX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "ripple").In("created").PeerPressure().With("~tinkerpop.peerPressure.edges", __.OutE()).With("~tinkerpop.peerPressure.propertyName", "cluster").Repeat(__.Union(__.Identity(), __.Both())).Times(2).Dedup().ValueMap("name", "cluster")}}, + {"g_injectXnullX_productXinjectX1XX", new List, ITraversal>> {(g,p) =>g.Inject(null).Product(__.Inject(1))}}, + {"g_V_valuesXnameX_productXV_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Product(__.V().Fold())}}, + {"g_V_fold_productXconstantXnullXX", new List, ITraversal>> {(g,p) =>g.V().Fold().Product(__.Constant(null))}}, + {"g_V_fold_productXVX", new List, ITraversal>> {(g,p) =>g.V().Fold().Product(__.V())}}, + {"g_V_valuesXnameX_fold_productX2X", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Product(2)}}, + {"g_V_valuesXnameX_fold_productXnullX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Product(null)}}, + {"g_V_valuesXnonexistantX_fold_productXV_valuesXnameX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("nonexistant").Fold().Product(__.V().Values("name").Fold())}}, + {"g_V_valuesXnameX_fold_productXV_valuesXnonexistantX_foldX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Product(__.V().Values("nonexistant").Fold())}}, + {"g_V_valuesXageX_order_byXdescX_limitX3X_fold_productXV_valuesXageX_order_byXascX_limitX2X_foldX_unfold", new List, ITraversal>> {(g,p) =>g.V().Values("age").Order().By(Order.Desc).Limit(3).Fold().Product(__.V().Values("age").Order().By(Order.Asc).Limit(2).Fold()).Unfold()}}, + {"g_V_out_path_byXvaluesXnameX_toUpperX_productXMARKOX_unfold", new List, ITraversal>> {(g,p) =>g.V().Out().Path().By(__.Values("name").ToUpper()).Product(new List { "MARKO" }).Unfold()}}, + {"g_injectXmarkoX_productXV_valuesXnameX_order_foldX_unfold", new List, ITraversal>> {(g,p) =>g.Inject(new List { "marko" }).Product(__.V().Values("name").Order().Fold()).Unfold()}}, + {"g_V_valueMapXlocationX_selectXvaluesX_unfold_productXdulles_seattle_vancouverX_unfold", new List, ITraversal>> {(g,p) =>g.V().ValueMap("location").Select(Column.Values).Unfold().Product(new List { "dulles", "seattle", "vancouver" }).Unfold()}}, + {"g_V_valuesXageX_order_byXascX_fold_productXconstantX27X_foldX_unfold", new List, ITraversal>> {(g,p) =>g.V().Values("age").Order().By(Order.Asc).Fold().Product(__.Constant(27).Fold()).Unfold()}}, + {"g_V_out_out_path_byXnameX_productXdave_kelvinX_unfold", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Product(new List { "dave", "kelvin" }).Unfold()}}, + {"g_injectXa_null_bX_productXa_cX_unfold", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Product(new List { "a", "c" }).Unfold()}}, + {"g_injectXa_null_bX_productXa_null_cX_unfold", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", null, "b" }).Product(new List { "a", null, "c" }).Unfold()}}, + {"g_injectX3_threeX_productXfive_three_7X_unfold", new List, ITraversal>> {(g,p) =>g.Inject(new List { 3, "three" }).Product(new List { "five", "three", 7 }).Unfold()}}, + {"g_V_hasLabelXpersonX_projectXa_bX_byXoutE_countX_byXageX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Project("a", "b").By(__.OutE().Count()).By("age")}}, + {"g_V_outXcreatedX_projectXa_bX_byXnameX_byXinXcreatedX_countX_order_byXselectXbX__descX_selectXaX", new List, ITraversal>> {(g,p) =>g.V().Out("created").Project("a", "b").By("name").By(__.In("created").Count()).Order().By(__.Select("b"), Order.Desc).Select("a")}}, + {"g_V_valueMap_projectXxX_byXselectXnameXX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Project("x").By(__.Select("name"))}}, + {"g_V_projectXa_bX_byXinE_countX_byXageX", new List, ITraversal>> {(g,p) =>g.V().Project("a", "b").By(__.InE().Count()).By("age")}}, + {"g_withStrategiesXProductiveByStrategyX_V_projectXa_bX_byXinE_countX_byXageX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Project("a", "b").By(__.InE().Count()).By("age")}}, + {"g_V_hasXageX_propertiesXnameX", new List, ITraversal>> {(g,p) =>g.V().Has("age").Properties("name").Value()}}, + {"g_V_hasXageX_propertiesXname_ageX_value", new List, ITraversal>> {(g,p) =>g.V().Has("age").Properties("name", "age").Value()}}, + {"g_V_hasXageX_propertiesXage_nameX_value", new List, ITraversal>> {(g,p) =>g.V().Has("age").Properties("age", "name").Value()}}, + {"g_V_propertiesXname_age_nullX_value", new List, ITraversal>> {(g,p) =>g.V().Properties("name", "age", null).Value()}}, + {"g_V_valuesXname_age_nullX", new List, ITraversal>> {(g,p) =>g.V().Values("name", "age", null)}}, + {"g_E_propertiesXweightX", new List, ITraversal>> {(g,p) =>g.E().Properties("weight")}}, + {"g_E_properties", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").As("a").AddV((string) "person").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("weight", 0.5d).Property("since", 2020), (g,p) =>g.E().Properties()}}, + {"g_E_propertiesXsinceX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").As("a").AddV((string) "person").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("weight", 0.5d).Property("since", 2020), (g,p) =>g.E().Properties("since")}}, + {"g_E_properties_multi_edges", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").As("a").AddV((string) "person").Property("name", "bob").As("b").AddE((string) "knows").From("a").To("b").Property("weight", 0.5d).Property("since", 2020).AddE((string) "likes").From("a").To("b").Property("weight", 1.0d).Property("tag", "friend"), (g,p) =>g.E().Properties()}}, + {"g_injectX__feature___test__nullX_rTrim", new List, ITraversal>> {(g,p) =>g.Inject("feature ", "one test ", null, "", " ", " abc", "abc ", " abc ", "  ").RTrim()}}, + {"g_injectX__feature___test__nullX_rTrimXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { " feature ", " one test ", null, "", " ", " abc", "abc ", " abc ", "  " }).RTrim(Scope.Local)}}, + {"g_injectX__feature__X_rTrim", new List, ITraversal>> {(g,p) =>g.Inject(" feature ").RTrim()}}, + {"g_injectXListXa_bXX_rTrim", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", "b" }).RTrim()}}, + {"g_injectXListX1_2XX_rTrimXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2 }).RTrim(Scope.Local)}}, + {"g_V_valuesXnameX_rTrim", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", " marko ").Property("age", 29).As("marko").AddV((string) "person").Property("name", " vadas ").Property("age", 27).As("vadas").AddV((string) "software").Property("name", " lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh ").Property("age", 32).As("josh").AddV((string) "software").Property("name", " ripple ").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Values("name").RTrim()}}, + {"g_V_valuesXnameX_order_fold_rTrimXlocalX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", " marko ").Property("age", 29).As("marko").AddV((string) "person").Property("name", " vadas ").Property("age", 27).As("vadas").AddV((string) "software").Property("name", " lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh ").Property("age", 32).As("josh").AddV((string) "software").Property("name", " ripple ").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Values("name").Order().Fold().RTrim(Scope.Local)}}, + {"g_injectXthat_this_test_nullX_replaceXh_jX", new List, ITraversal>> {(g,p) =>g.Inject("that", "this", "test", null).Replace("h", "j")}}, + {"g_injectXthat_this_test_nullX_fold_replaceXlocal_h_jX", new List, ITraversal>> {(g,p) =>g.Inject("that", "this", "test", null).Fold().Replace(Scope.Local, "h", "j")}}, + {"g_injectXListXa_bXcX_replaceXa_bX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", "b" }).Replace("a", "b")}}, + {"g_V_hasLabelXsoftwareX_valueXnameX_replaceXnull_iX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Values("name").Replace(null, "g")}}, + {"g_V_hasLabelXsoftwareX_valueXnameX_replaceXa_iX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Values("name").Replace("p", "g")}}, + {"g_V_hasLabelXsoftwareX_valueXnameX_order_fold_replaceXloacl_a_iX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Values("name").Order().Fold().Replace(Scope.Local, "p", "g")}}, + {"g_injectXfeature_test_nullX_reverse", new List, ITraversal>> {(g,p) =>g.Inject("feature", "test one", null).Reverse()}}, + {"g_V_valuesXnameX_reverse", new List, ITraversal>> {(g,p) =>g.V().Values("name").Reverse()}}, + {"g_V_valuesXageX_reverse", new List, ITraversal>> {(g,p) =>g.V().Values("age").Reverse()}}, + {"g_V_out_path_byXnameX_reverse", new List, ITraversal>> {(g,p) =>g.V().Out().Path().By("name").Reverse()}}, + {"g_V_out_out_path_byXnameX_reverse", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Path().By("name").Reverse()}}, + {"g_V_valuesXageX_fold_orderXlocalX_byXdescX_reverse", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold().Order(Scope.Local).By(Order.Desc).Reverse()}}, + {"g_V_valuesXnameX_fold_orderXlocalX_by_reverse", new List, ITraversal>> {(g,p) =>g.V().Values("name").Fold().Order(Scope.Local).By().Reverse()}}, + {"g_injectXnullX_reverse", new List, ITraversal>> {(g,p) =>g.Inject(null).Reverse()}}, + {"g_injectXbX_reverse", new List, ITraversal>> {(g,p) =>g.Inject("b").Reverse()}}, + {"g_injectX3_threeX_reverse", new List, ITraversal>> {(g,p) =>g.Inject(new List { 3, "three" }).Reverse()}}, + {"g_VX1X_asXaX_outXknowsX_asXbX_selectXa_bX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Out("knows").As("b").Select("a", "b")}}, + {"g_VX1X_asXaX_outXknowsX_asXbX_selectXa_bX_byXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Out("knows").As("b").Select("a", "b").By("name")}}, + {"g_VX1X_asXaX_outXknowsX_asXbX_selectXaX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Out("knows").As("b").Select("a")}}, + {"g_VX1X_asXaX_outXknowsX_asXbX_selectXaX_byXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Out("knows").As("b").Select("a").By("name")}}, + {"g_V_asXaX_out_asXbX_selectXa_bX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("b").Select("a", "b").By("name")}}, + {"g_V_asXaX_out_aggregateXxX_asXbX_selectXa_bX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().Aggregate("x").As("b").Select("a", "b").By("name")}}, + {"g_V_asXaX_name_order_asXbX_selectXa_bX_byXnameX_by_XitX", new List, ITraversal>> {(g,p) =>g.V().As("a").Values("name").Order().As("b").Select("a", "b").By("name").By()}}, + {"g_V_hasXname_gremlinX_inEXusesX_order_byXskill_ascX_asXaX_outV_asXbX_selectXa_bX_byXskillX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "gremlin").InE("uses").Order().By("skill", Order.Asc).As("a").OutV().As("b").Select("a", "b").By("skill").By("name")}}, + {"g_V_whereX_valueXnameX_isXmarkoXX_asXaX_selectXaX", new List, ITraversal>> {(g,p) =>g.V().Where(__.Values("name").Is("marko")).As("a").Select("a")}}, + {"g_V_label_groupCount_asXxX_selectXxX", new List, ITraversal>> {(g,p) =>g.V().Label().GroupCount().As("x").Select("x")}}, + {"g_V_hasLabelXpersonX_asXpX_mapXbothE_label_groupCountX_asXrX_selectXp_rX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").As("p").Map(__.BothE().Label().GroupCount()).As("r").Select("p", "r")}}, + {"g_V_chooseXoutE_count_isX0X__asXaX__asXbXX_chooseXselectXaX__selectXaX__selectXbXX", new List, ITraversal>> {(g,p) =>g.V().Choose(__.OutE().Count().Is(p["xx1"]), __.As("a"), __.As("b")).Choose(__.Select("a"), __.Select("a"), __.Select("b"))}}, + {"g_VX1X_groupXaX_byXconstantXaXX_byXnameX_selectXaX_selectXaX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Group("a").By(__.Constant("a")).By(__.Values("name")).Barrier().Select("a").Select("a")}}, + {"g_VX1X_asXhereX_out_selectXhereX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("here").Out().Select("here")}}, + {"g_VX4X_out_asXhereX_hasXlang_javaX_selectXhereX", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).As("here").Out().Select("here")}}, + {"g_VX4X_out_asXhereX_hasXlang_javaX_selectXhereX_name", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).Out().As("here").Has("lang", "java").Select("here").Values("name")}}, + {"g_VX1X_outE_asXhereX_inV_hasXname_vadasX_selectXhereX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE().As("here").InV().Has("name", "vadas").Select("here")}}, + {"g_VX1X_outEXknowsX_hasXweight_1X_asXhereX_inV_hasXname_joshX_selectXhereX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE("knows").Has("weight", 1.0).As("here").InV().Has("name", "josh").Select("here")}}, + {"g_VX1X_outEXknowsX_asXhereX_hasXweight_1X_asXfakeX_inV_hasXname_joshX_selectXhereX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE("knows").As("here").Has("weight", 1.0).As("fake").InV().Has("name", "josh").Select("here")}}, + {"g_V_asXhereXout_name_selectXhereX", new List, ITraversal>> {(g,p) =>g.V().As("here").Out().Values("name").Select("here")}}, + {"g_V_outXcreatedX_unionXasXprojectX_inXcreatedX_hasXname_markoX_selectXprojectX__asXprojectX_inXcreatedX_inXknowsX_hasXname_markoX_selectXprojectXX_groupCount_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Out("created").Union(__.As("project").In("created").Has("name", "marko").Select("project"), __.As("project").In("created").In("knows").Has("name", "marko").Select("project")).GroupCount().By("name")}}, + {"g_V_untilXout_outX_repeatXin_asXaXX_selectXaX_byXtailXlocalX_nameX", new List, ITraversal>> {(g,p) =>g.V().Until(__.Out().Out()).Repeat(__.In().As("a")).Select("a").By(__.Tail(Scope.Local).Values("name"))}}, + {"g_V_outE_weight_groupCount_selectXkeysX_unfold", new List, ITraversal>> {(g,p) =>g.V().OutE().Values("weight").GroupCount().Select(Column.Keys).Unfold()}}, + {"g_V_hasLabelXsoftwareX_asXnameX_asXlanguageX_asXcreatorsX_selectXname_language_creatorsX_byXnameX_byXlangX_byXinXcreatedX_name_fold_orderXlocalXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").As("name").As("language").As("creators").Select("name", "language", "creators").By("name").By("lang").By(__.In("created").Values("name").Fold().Order(Scope.Local))}}, + {"g_V_outE_weight_groupCount_unfold_selectXkeysX_unfold", new List, ITraversal>> {(g,p) =>g.V().OutE().Values("weight").GroupCount().Unfold().Select(Column.Keys).Unfold()}}, + {"g_V_outE_weight_groupCount_unfold_selectXvaluesX_unfold", new List, ITraversal>> {(g,p) =>g.V().OutE().Values("weight").GroupCount().Unfold().Select(Column.Values).Unfold()}}, + {"g_V_untilXout_outX_repeatXin_asXaX_in_asXbXX_selectXa_bX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Until(__.Out().Out()).Repeat(__.In().As("a").In().As("b")).Select("a", "b").By("name")}}, + {"g_V_outE_weight_groupCount_selectXvaluesX_unfold", new List, ITraversal>> {(g,p) =>g.V().OutE().Values("weight").GroupCount().Select(Column.Values).Unfold()}}, + {"g_V_asXaX_whereXoutXknowsXX_selectXaX", new List, ITraversal>> {(g,p) =>g.V().As("a").Where(__.Out("knows")).Select("a")}}, + {"g_VX1X_asXaX_repeatXout_asXaXX_timesX2X_selectXfirst_aX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Repeat(__.Out().As("a")).Times(2).Select(Pop.First, "a")}}, + {"g_V_asXaX_outXknowsX_asXbX_localXselectXa_bX_byXnameXX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out("knows").As("b").Local(__.Select("a", "b").By("name"))}}, + {"g_VX1X_asXaX_repeatXout_asXaXX_timesX2X_selectXlast_aX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).As("a").Repeat(__.Out().As("a")).Times(2).Select(Pop.Last, "a")}}, + {"g_VX1X_outEXknowsX_asXhereX_hasXweight_1X_inV_hasXname_joshX_selectXhereX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE("knows").As("here").Has("weight", 1.0).InV().Has("name", "josh").Select("here")}}, + {"g_V_asXaX_hasXname_markoX_asXbX_asXcX_selectXa_b_cX_by_byXnameX_byXageX", new List, ITraversal>> {(g,p) =>g.V().As("a").Has("name", "marko").As("b").As("c").Select("a", "b", "c").By().By("name").By("age")}}, + {"g_V_outE_weight_groupCount_selectXvaluesX_unfold_groupCount_selectXvaluesX_unfold", new List, ITraversal>> {(g,p) =>g.V().OutE().Values("weight").GroupCount().Select(Column.Values).Unfold().GroupCount().Select(Column.Values).Unfold()}}, + {"g_V_asXaX_groupXmX_by_byXbothE_countX_barrier_selectXmX_selectXselectXaXX", new List, ITraversal>> {(g,p) =>g.V().As("a").Group("m").By().By(__.BothE().Count()).Barrier().Select("m").Select(__.Select("a"))}}, + {"g_V_asXaX_groupXmX_by_byXbothE_countX_barrier_selectXmX_selectXselectXaXX_byXmathX_plus_XX", new List, ITraversal>> {(g,p) =>g.V().As("a").Group("m").By().By(__.BothE().Count()).Barrier().Select("m").Select(__.Select("a")).By(__.Math("_+_"))}}, + {"g_V_asXaX_outXknowsX_asXaX_selectXall_constantXaXX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out("knows").As("a").Select(Pop.All, __.Constant("a"))}}, + {"g_V_selectXaX", new List, ITraversal>> {(g,p) =>g.V().Select("a")}}, + {"g_V_selectXaX_count", new List, ITraversal>> {(g,p) =>g.V().Select("a").Count()}}, + {"g_V_selectXa_bX", new List, ITraversal>> {(g,p) =>g.V().Select("a", "b")}}, + {"g_V_valueMap_selectXaX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Select("a")}}, + {"g_V_valueMap_selectXa_bX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Select("a", "b")}}, + {"g_V_selectXfirst_aX", new List, ITraversal>> {(g,p) =>g.V().Select(Pop.First, "a")}}, + {"g_V_selectXfirst_a_bX", new List, ITraversal>> {(g,p) =>g.V().Select(Pop.First, "a", "b")}}, + {"g_V_valueMap_selectXfirst_aX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Select(Pop.First, "a")}}, + {"g_V_valueMap_selectXfirst_a_bX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Select(Pop.First, "a", "b")}}, + {"g_V_selectXlast_aX", new List, ITraversal>> {(g,p) =>g.V().Select(Pop.Last, "a")}}, + {"g_V_selectXlast_a_bX", new List, ITraversal>> {(g,p) =>g.V().Select(Pop.Last, "a", "b")}}, + {"g_V_valueMap_selectXlast_aX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Select(Pop.Last, "a")}}, + {"g_V_valueMap_selectXlast_a_bX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Select(Pop.Last, "a", "b")}}, + {"g_V_selectXall_aX", new List, ITraversal>> {(g,p) =>g.V().Select(Pop.All, "a")}}, + {"g_V_selectXall_a_bX", new List, ITraversal>> {(g,p) =>g.V().Select(Pop.All, "a", "b")}}, + {"g_V_valueMap_selectXall_aX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Select(Pop.All, "a")}}, + {"g_V_valueMap_selectXall_a_bX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Select(Pop.All, "a", "b")}}, + {"g_V_asXa_bX_out_asXcX_path_selectXkeysX", new List, ITraversal>> {(g,p) =>g.V().As("a", "b").Out().As("c").Path().Select(Column.Keys), (g,p) =>g.V().As("a", "b").Out().As("c").Path().Select(Column.Keys)}}, + {"g_V_hasXperson_name_markoX_barrier_asXaX_outXknows_selectXaX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", "marko").Barrier().As("a").Out("knows").Select("a")}}, + {"g_V_hasXperson_name_markoX_elementMapXnameX_asXaX_unionXidentity_identityX_selectXaX_selectXnameX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", "marko").ElementMap("name").As("a").Union(__.Identity(), __.Identity()).Select("a").Select("name")}}, + {"g_V_hasXperson_name_markoX_count_asXaX_unionXidentity_identityX_selectXaX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", "marko").Count().As("a").Union(__.Identity(), __.Identity()).Select("a")}}, + {"g_V_hasXperson_name_markoX_path_asXaX_unionXidentity_identityX_selectXaX_unfold", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", "marko").Path().As("a").Union(__.Identity(), __.Identity()).Select("a").Unfold()}}, + {"g_EX11X_propertiesXweightX_asXaX_selectXaX_byXkeyX", new List, ITraversal>> {(g,p) =>g.E(p["eid11"]).Properties("weight").As("a").Select("a").By(T.Key)}}, + {"g_EX11X_propertiesXweightX_asXaX_selectXaX_byXvalueX", new List, ITraversal>> {(g,p) =>g.E(p["eid11"]).Properties("weight").As("a").Select("a").By(T.Value)}}, + {"g_V_asXaX_selectXaX_byXageX", new List, ITraversal>> {(g,p) =>g.V().As("a").Select("a").By("age")}}, + {"g_V_asXa_nX_selectXa_nX_byXageX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().As("a", "n").Select("a", "n").By("age").By("name")}}, + {"g_withStrategiesXProductiveByStrategyX_V_asXaX_selectXaX_byXageX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().As("a").Select("a").By("age")}}, + {"g_withSideEffectXk_nullX_injectXxX_selectXkX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("k", null).Inject("x").Select("k")}}, + {"g_V_out_in_selectXall_a_a_aX_byXunfold_name_foldX", new List, ITraversal>> {(g,p) =>g.AddV((string) "A").Property("name", "a1").As("a1").AddV((string) "B").Property("name", "b1").As("b1").AddE((string) "ab").From("a1").To("b1"), (g,p) =>g.V().As("a").Out().As("a").In().As("a").Select(Pop.All, "a", "a", "a").By(__.Unfold().Values("name").Fold())}}, + {"g_withoutStrategiesXLazyBarrierStrategyX_V_asXlabelX_localXaggregate_xX_selectXxX_selectXlabelX", new List, ITraversal>> {(g,p) =>g.WithoutStrategies(typeof(LazyBarrierStrategy)).V().As("label").Local(__.Aggregate("x")).Select("x").Select("label")}}, + {"g_V_name_asXaX_selectXfirst_aX", new List, ITraversal>> {(g,p) =>g.V().Values("name").As("a").Select(Pop.First, "a")}}, + {"g_V_name_asXaX_selectXlast_aX", new List, ITraversal>> {(g,p) =>g.V().Values("name").As("a").Select(Pop.Last, "a")}}, + {"g_V_name_asXaX_selectXmixed_aX", new List, ITraversal>> {(g,p) =>g.V().Values("name").As("a").Select(Pop.Mixed, "a")}}, + {"g_V_name_asXaX_selectXall_aX", new List, ITraversal>> {(g,p) =>g.V().Values("name").As("a").Select(Pop.All, "a")}}, + {"g_V_hasLabelXpersonX_name_asXaX_concatXXX_asXaX_length_asXaX_selectXaX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").As("a").Concat("X").As("a").Length().As("a").Select("a")}}, + {"g_V_hasLabelXpersonX_name_asXaX_concatXXX_asXaX_length_asXaX_selectXfirst_aX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").As("a").Concat("X").As("a").Length().As("a").Select(Pop.First, "a")}}, + {"g_V_hasLabelXpersonX_name_asXaX_concatXXX_asXaX_length_asXaX_selectXlast_aX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").As("a").Concat("X").As("a").Length().As("a").Select(Pop.Last, "a")}}, + {"g_V_hasLabelXpersonX_name_asXaX_concatXXX_asXaX_concatXYZX_asXaX_selectXmixed_aX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").As("a").Concat("X").As("a").Concat("YZ").As("a").Select(Pop.Mixed, "a")}}, + {"g_V_hasLabelXpersonX_name_asXaX_concatXXX_asXaX_concatXYZX_asXaX_selectXall_aX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").As("a").Concat("X").As("a").Concat("YZ").As("a").Select(Pop.All, "a")}}, + {"g_V_asXaX_out_asXaX_out_asXaX_selectXmixed_aX_byXunfold_valuesXnameX_foldX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("a").Out().As("a").Select(Pop.Mixed, "a").By(__.Unfold().Values("name").Fold())}}, + {"g_V_asXaX_out_asXaX_out_asXaX_selectXall_aX_byXunfold_valuesXnameX_foldX", new List, ITraversal>> {(g,p) =>g.V().As("a").Out().As("a").Out().As("a").Select(Pop.All, "a").By(__.Unfold().Values("name").Fold())}}, + {"g_V_shortestPath", new List, ITraversal>> {(g,p) =>g.V().ShortestPath()}}, + {"g_V_both_dedup_shortestPath", new List, ITraversal>> {(g,p) =>g.V().Both().Dedup().ShortestPath()}}, + {"g_V_shortestPath_edgesIncluded", new List, ITraversal>> {(g,p) =>g.V().ShortestPath().With("~tinkerpop.shortestPath.includeEdges")}}, + {"g_V_shortestPath_directionXINX", new List, ITraversal>> {(g,p) =>g.V().ShortestPath().With("~tinkerpop.shortestPath.edges", Direction.In)}}, + {"g_V_shortestPath_edgesXoutEX", new List, ITraversal>> {(g,p) =>g.V().ShortestPath().With("~tinkerpop.shortestPath.edges", __.OutE())}}, + {"g_V_shortestPath_edgesIncluded_edgesXoutEX", new List, ITraversal>> {(g,p) =>g.V().ShortestPath().With("~tinkerpop.shortestPath.includeEdges").With("~tinkerpop.shortestPath.edges", __.OutE())}}, + {"g_V_hasXname_markoX_shortestPath", new List, ITraversal>> {(g,p) =>g.V().Has("name", "marko").ShortestPath()}}, + {"g_V_shortestPath_targetXhasXname_markoXX", new List, ITraversal>> {(g,p) =>g.V().ShortestPath().With("~tinkerpop.shortestPath.target", __.Has("name", "marko"))}}, + {"g_V_shortestPath_targetXvaluesXnameX_isXmarkoXX", new List, ITraversal>> {(g,p) =>g.V().ShortestPath().With("~tinkerpop.shortestPath.target", __.Values("name").Is("marko"))}}, + {"g_V_hasXname_markoX_shortestPath_targetXhasLabelXsoftwareXX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "marko").ShortestPath().With("~tinkerpop.shortestPath.target", __.HasLabel("software"))}}, + {"g_V_hasXname_markoX_shortestPath_targetXhasXname_joshXX_distanceXweightX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "marko").ShortestPath().With("~tinkerpop.shortestPath.target", __.Has("name", "josh")).With("~tinkerpop.shortestPath.distance", "weight")}}, + {"g_V_hasXname_danielX_shortestPath_targetXhasXname_stephenXX_edgesXbothEXusesXX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "daniel").ShortestPath().With("~tinkerpop.shortestPath.target", __.Has("name", "stephen")).With("~tinkerpop.shortestPath.edges", __.BothE("uses"))}}, + {"g_V_hasXsong_name_MIGHT_AS_WELLX_shortestPath_targetXhasXsong_name_MAYBE_YOU_KNOW_HOW_I_FEELXX_edgesXoutEXfollowedByXX_distanceXweightX", new List, ITraversal>> {(g,p) =>g.V().Has("song", "name", "MIGHT AS WELL").ShortestPath().With("~tinkerpop.shortestPath.target", __.Has("song", "name", "MAYBE YOU KNOW HOW I FEEL")).With("~tinkerpop.shortestPath.edges", __.OutE("followedBy")).With("~tinkerpop.shortestPath.distance", "weight")}}, + {"g_V_hasXname_markoX_shortestPath_maxDistanceX1X", new List, ITraversal>> {(g,p) =>g.V().Has("name", "marko").ShortestPath().With("~tinkerpop.shortestPath.maxDistance", 1)}}, + {"g_V_hasXname_vadasX_shortestPath_distanceXweightX_maxDistanceX1_3X", new List, ITraversal>> {(g,p) =>g.V().Has("name", "vadas").ShortestPath().With("~tinkerpop.shortestPath.distance", "weight").With("~tinkerpop.shortestPath.maxDistance", 1.3)}}, + {"g_injectXthat_this_testX_spiltXhX", new List, ITraversal>> {(g,p) =>g.Inject("that", "this", "test", null).Split("h")}}, + {"g_injectXhello_worldX_spiltXnullX", new List, ITraversal>> {(g,p) =>g.Inject("hello world").Split(null)}}, + {"g_injectXthat_this_test_nullX_splitXemptyX", new List, ITraversal>> {(g,p) =>g.Inject("that", "this", "test", null).Split("")}}, + {"g_injectXListXa_bXcX_splitXa_bX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", "b" }).Split("a")}}, + {"g_V_hasLabelXpersonX_valueXnameX_splitXnullX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").Split(null)}}, + {"g_V_hasLabelXpersonX_valueXnameX_order_fold_splitXlocal_aX_unfold", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").Order().Fold().Split(Scope.Local, "a").Unfold()}}, + {"g_V_hasLabelXpersonX_valueXnameX_order_fold_splitXlocal_emptyX_unfold", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").Order().Fold().Split(Scope.Local, "").Unfold()}}, + {"g_injectXthat_this_testX_substringX1_8X", new List, ITraversal>> {(g,p) =>g.Inject("test", "hello world", null).Substring(1, 8)}}, + {"g_injectXListXa_bXcX_substringX1_2X", new List, ITraversal>> {(g,p) =>g.Inject(new List { "aa", "bb" }).Substring(1, 2)}}, + {"g_V_hasLabelXpersonX_valueXnameX_substringX2X", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Values("name").Substring(2)}}, + {"g_V_hasLabelXsoftwareX_valueXnameX_substringX1_4X", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Values("name").Substring(1, 4)}}, + {"g_V_hasLabelXpersonX_valueXnameX_order_fold_substringXlocal_2X", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Values("name").Order().Fold().Substring(Scope.Local, 2)}}, + {"g_V_hasLabelXsoftwareX_valueXnameX_order_fold_substringXlocal_1_4X", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Values("name").Order().Fold().Substring(Scope.Local, 1, 4)}}, + {"g_V_hasLabelXsoftwareX_valueXnameX_substringX1_0X", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Values("name").Substring(1, 0)}}, + {"g_V_hasLabelXpersonX_valueXnameX_substringXneg3X", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Values("name").Substring(-3)}}, + {"g_V_hasLabelXsoftwareX_valueXnameX_substringX1_neg1X", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Values("name").Substring(1, -1)}}, + {"g_V_hasLabelXsoftwareX_valueXnameX_substringXneg4_2X", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Values("name").Substring(-4, 2)}}, + {"g_V_hasLabelXsoftwareX_valueXnameX_substringXneg3_neg1X", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Values("name").Substring(-3, -1)}}, + {"g_V_injectX127b_1bX_sumXX", new List, ITraversal>> {(g,p) =>g.Inject((sbyte) 127, (sbyte) 1).Sum()}}, + {"g_V_injectX_128b__1bX_sumXX", new List, ITraversal>> {(g,p) =>g.Inject((short) -128, (short) -1).Sum()}}, + {"g_V_injectX32767s_1sX_sumXX", new List, ITraversal>> {(g,p) =>g.Inject((short) 32767, (short) 1).Sum()}}, + {"g_V_injectX_32768s__1sX_sumXX", new List, ITraversal>> {(g,p) =>g.Inject((short) -32768, (short) -1).Sum()}}, + {"g_V_injectX2147483647i_1iX_sumXX", new List, ITraversal>> {(g,p) =>g.Inject(2147483647, 1).Sum()}}, + {"g_V_injectX_2147483648i__1iX_sumXX", new List, ITraversal>> {(g,p) =>g.Inject(-2147483648, -1).Sum()}}, + {"g_V_age_sum", new List, ITraversal>> {(g,p) =>g.V().Values("age").Sum()}}, + {"g_V_foo_sum", new List, ITraversal>> {(g,p) =>g.V().Values("foo").Sum()}}, + {"g_V_age_fold_sumXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Fold().Sum(Scope.Local)}}, + {"g_V_foo_fold_sumXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("foo").Fold().Sum(Scope.Local)}}, + {"g_V_hasLabelXsoftwareX_group_byXnameX_byXbothE_weight_sumX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Group().By("name").By(__.BothE().Values("weight").Sum())}}, + {"g_V_aggregateXaX_byXageX_sumXlocalX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("age").Cap("a").Sum(Scope.Local)}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXageX_sumXlocalX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("age").Cap("a").Sum(Scope.Local)}}, + {"g_V_aggregateXaX_byXageX_capXaX_unfold_sum", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("age").Cap("a").Unfold().Sum()}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXageX_capXaX_unfold_sum", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("age").Cap("a").Unfold().Sum()}}, + {"g_V_aggregateXaX_byXfooX_sumXlocalX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("foo").Cap("a").Sum(Scope.Local)}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXfooX_sumXlocalX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("foo").Cap("a").Sum(Scope.Local)}}, + {"g_V_aggregateXaX_byXfooX_capXaX_unfold_sum", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").By("foo").Cap("a").Unfold().Sum()}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXaX_byXfooX_capXaX_unfold_sum", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("a").By("foo").Cap("a").Unfold().Sum()}}, + {"g_injectXnull_10_5_nullX_sum", new List, ITraversal>> {(g,p) =>g.Inject(null, 10, 5, null).Sum()}}, + {"g_injectXlistXnull_10_5_nullXX_sumXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { null, 10, 5, null }).Sum(Scope.Local)}}, + {"g_VX1X_valuesXageX_sumXlocalX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Values("age").Sum(Scope.Local)}}, + {"g_V_localXunionXvaluesXageX_outE_valuesXweightXX_foldX_sumXlocalX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Union(__.Values("age"), __.OutE().Values("weight")).Fold()).Sum(Scope.Local)}}, + {"g_V_age_injectX1000nX_sum", new List, ITraversal>> {(g,p) =>g.V().Values("age").Inject(BigInteger.Parse("1000")).Sum()}}, + {"g_injectX1b_2b_3bX_sum", new List, ITraversal>> {(g,p) =>g.Inject((sbyte) 1, (sbyte) 2, (sbyte) 3).Sum()}}, + {"g_injectX1b_2b_3sX_sum", new List, ITraversal>> {(g,p) =>g.Inject((sbyte) 1, (sbyte) 2, (short) 3).Sum()}}, + {"g_injectX1b_26b_3iX_sum", new List, ITraversal>> {(g,p) =>g.Inject((sbyte) 1, (sbyte) 2, 3).Sum()}}, + {"g_injectX1f_26f_3fX_sum", new List, ITraversal>> {(g,p) =>g.Inject(1f, 2f, 3f).Sum()}}, + {"g_V_age_injectX1000nX_fold_sumXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("age").Inject(BigInteger.Parse("1000")).Fold().Sum(Scope.Local)}}, + {"g_injectX1b_2b_3bX_fold_sumXlocalX", new List, ITraversal>> {(g,p) =>g.Inject((sbyte) 1, (sbyte) 2, (sbyte) 3).Fold().Sum(Scope.Local)}}, + {"g_injectX1b_2b_3sX_fold_sumXlocalX", new List, ITraversal>> {(g,p) =>g.Inject((sbyte) 1, (sbyte) 2, (short) 3).Fold().Sum(Scope.Local)}}, + {"g_injectX1b_26b_3iX_fold_sumXlocalX", new List, ITraversal>> {(g,p) =>g.Inject((sbyte) 1, (sbyte) 2, 3).Fold().Sum(Scope.Local)}}, + {"g_injectX1f_26f_3fX_fold_sumXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(1f, 2f, 3f).Fold().Sum(Scope.Local)}}, + {"g_injectXfeature_test_nullX_toLower", new List, ITraversal>> {(g,p) =>g.Inject("FEATURE", "tESt", null).ToLower()}}, + {"g_injectXfeature_test_nullX_toLowerXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "FEATURE", "tESt", null }).ToLower(Scope.Local)}}, + {"g_injectXListXa_bXX_toLower", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", "b" }).ToLower()}}, + {"g_V_valuesXnameX_toLower", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "MARKO").Property("age", 29).As("marko").AddV((string) "person").Property("name", "VADAS").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "LOP").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "JOSH").Property("age", 32).As("josh").AddV((string) "software").Property("name", "RIPPLE").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "PETER").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Values("name").ToLower()}}, + {"g_V_valuesXnameX_toLowerXlocalX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "MARKO").Property("age", 29).As("marko").AddV((string) "person").Property("name", "VADAS").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "LOP").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "JOSH").Property("age", 32).As("josh").AddV((string) "software").Property("name", "RIPPLE").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "PETER").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Values("name").ToLower(Scope.Local)}}, + {"g_V_valuesXnameX_order_fold_toLowerXlocalX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "MARKO").Property("age", 29).As("marko").AddV((string) "person").Property("name", "VADAS").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "LOP").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "JOSH").Property("age", 32).As("josh").AddV((string) "software").Property("name", "RIPPLE").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "PETER").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Values("name").Order().Fold().ToLower(Scope.Local)}}, + {"g_injectXfeature_test_nullX_toUpper", new List, ITraversal>> {(g,p) =>g.Inject("feature", "tESt", null).ToUpper()}}, + {"g_injectXfeature_test_nullX_toUpperXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { "feature", "tESt", null }).ToUpper(Scope.Local)}}, + {"g_injectXListXa_bXX_toUpper", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", "b" }).ToUpper()}}, + {"g_V_valuesXnameX_toUpper", new List, ITraversal>> {(g,p) =>g.V().Values("name").ToUpper()}}, + {"g_V_valuesXnameX_toUpperXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("name").ToUpper(Scope.Local)}}, + {"g_V_valuesXnameX_order_fold_toUpperXlocalX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Order().Fold().ToUpper(Scope.Local)}}, + {"g_injectX__feature___test__nullX_trim", new List, ITraversal>> {(g,p) =>g.Inject(" feature ", " one test ", null, "", " ", " abc", "abc ", " abc ", "  ").Trim()}}, + {"g_injectX__feature___test__nullX_trimXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { " feature ", " one test ", null, "", " ", " abc", "abc ", " abc ", "  " }).Trim(Scope.Local)}}, + {"g_injectXListXa_bXX_trim", new List, ITraversal>> {(g,p) =>g.Inject(new List { "a", "b" }).Trim()}}, + {"g_injectXListX1_2XX_trimXlocalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 2 }).Trim(Scope.Local)}}, + {"g_V_valuesXnameX_trim", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", " marko ").Property("age", 29).As("marko").AddV((string) "person").Property("name", " vadas ").Property("age", 27).As("vadas").AddV((string) "software").Property("name", " lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh ").Property("age", 32).As("josh").AddV((string) "software").Property("name", " ripple ").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Values("name").Trim()}}, + {"g_V_valuesXnameX_order_fold_trimXlocalX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", " marko ").Property("age", 29).As("marko").AddV((string) "person").Property("name", " vadas ").Property("age", 27).As("vadas").AddV((string) "software").Property("name", " lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh ").Property("age", 32).As("josh").AddV((string) "software").Property("name", " ripple ").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Values("name").Order().Fold().Trim(Scope.Local)}}, + {"g_V_localXoutE_foldX_unfold", new List, ITraversal>> {(g,p) =>g.V().Local(__.OutE().Fold()).Unfold()}}, + {"g_V_valueMap_unfold_mapXselectXkeysXX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().Unfold().Map(__.Select(Column.Keys))}}, + {"g_VX1X_repeatXboth_simplePathX_untilXhasIdX6XX_path_byXnameX_unfold", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Repeat(__.Both().SimplePath()).Until(__.HasId(p["vid6"])).Path().By("name").Unfold()}}, + {"g_V_valueMap", new List, ITraversal>> {(g,p) =>g.V().ValueMap()}}, + {"g_V_valueMapXtrueX", new List, ITraversal>> {(g,p) =>g.V().ValueMap(true)}}, + {"g_V_valueMap_withXtokensX", new List, ITraversal>> {(g,p) =>g.V().ValueMap().With(WithOptions.Tokens)}}, + {"g_V_valueMapXname_ageX", new List, ITraversal>> {(g,p) =>g.V().ValueMap("name", "age")}}, + {"g_V_valueMapXtrue_name_ageX", new List, ITraversal>> {(g,p) =>g.V().ValueMap(true, "name", "age")}}, + {"g_V_valueMapXname_ageX_withXtokensX", new List, ITraversal>> {(g,p) =>g.V().ValueMap("name", "age").With(WithOptions.Tokens)}}, + {"g_V_valueMapXname_ageX_withXtokens_labelsX_byXunfoldX", new List, ITraversal>> {(g,p) =>g.V().ValueMap("name", "age").With(WithOptions.Tokens, WithOptions.Labels).By(__.Unfold())}}, + {"g_V_valueMapXname_ageX_withXtokens_idsX_byXunfoldX", new List, ITraversal>> {(g,p) =>g.V().ValueMap("name", "age").With(WithOptions.Tokens, WithOptions.Ids).By(__.Unfold())}}, + {"g_VX1X_outXcreatedX_valueMap", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("created").ValueMap()}}, + {"g_V_hasLabelXpersonX_filterXoutEXcreatedXX_valueMapXtrueX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Filter(__.OutE("created")).ValueMap(true)}}, + {"g_V_hasLabelXpersonX_filterXoutEXcreatedXX_valueMap_withXtokensX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Filter(__.OutE("created")).ValueMap().With(WithOptions.Tokens)}}, + {"g_VX1X_valueMapXname_locationX_byXunfoldX_by", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).ValueMap("name", "location").By(__.Unfold()).By()}}, + {"g_V_valueMapXname_age_nullX", new List, ITraversal>> {(g,p) =>g.V().ValueMap("name", "age", null)}}, + {"g_V_valueMapXname_ageX_byXisXxXXbyXunfoldX", new List, ITraversal>> {(g,p) =>g.V().ValueMap("name", "age").By(__.Is("x")).By(__.Unfold())}}, + {"g_VXnullX", new List, ITraversal>> {(g,p) =>g.V(null)}}, + {"g_VXlistXnullXX", new List, ITraversal>> {(g,p) =>g.V(p["xx1"])}}, + {"g_VX1_nullX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"], null)}}, + {"g_VXlistX1_2_3XX_name", new List, ITraversal>> {(g,p) =>g.V(p["xx1"]).Values("name")}}, + {"g_VXlistXv1_v2_v3XX_name", new List, ITraversal>> {(g,p) =>g.V(p["xx1"]).Values("name")}}, + {"g_V", new List, ITraversal>> {(g,p) =>g.V()}}, + {"g_VXv1X_out", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out()}}, + {"g_VX1X_out", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out()}}, + {"g_VX2X_in", new List, ITraversal>> {(g,p) =>g.V(p["vid2"]).In()}}, + {"g_VX4X_both", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).Both()}}, + {"g_VX1X_outE", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE()}}, + {"g_VX2X_outE", new List, ITraversal>> {(g,p) =>g.V(p["vid2"]).InE()}}, + {"g_VX4X_bothEXcreatedX", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).BothE("created")}}, + {"g_VX4X_bothEXcreatedvarX", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).BothE(new GValue("xx1", (string) p["xx1"]))}}, + {"g_VX4X_bothE", new List, ITraversal>> {(g,p) =>g.V(p["vid4"]).BothE()}}, + {"g_V_out_outE_inV_inE_inV_both_name", new List, ITraversal>> {(g,p) =>g.V().Out().OutE().InV().InE().InV().Both().Values("name")}}, + {"g_VX2X_inE", new List, ITraversal>> {(g,p) =>g.V(p["vid2"]).BothE()}}, + {"g_VX1X_outXknowsX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("knows")}}, + {"g_VX1AsStringX_outXknowsX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("knows")}}, + {"g_VX1X_outXknows_createdX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out("knows", "created")}}, + {"g_VX1X_outXknowsvar_createdvarX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out(new GValue("xx2", (string) p["xx2"]), new GValue("xx3", (string) p["xx3"]))}}, + {"g_V_out_out", new List, ITraversal>> {(g,p) =>g.V().Out().Out()}}, + {"g_VX1X_out_out_out", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Out().Out()}}, + {"g_VX1X_out_name", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Values("name")}}, + {"g_VX1X_to_XOUT_knowsX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).To(Direction.Out, "knows")}}, + {"g_VX1_2_3_4X_name", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().Has("software", "name", "lop").Drop(), (g,p) =>g.V(p["vid1"], p["vid2"], p["vid3"], p["vid4"])}}, + {"g_V_hasLabelXpersonX_V_hasLabelXsoftwareX_name", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").V().HasLabel("software").Values("name")}}, + {"g_V_hasLabelXloopsX_bothEXselfX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("loops").BothE("self")}}, + {"g_V_hasLabelXloopsX_bothXselfX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("loops").Both("self")}}, + {"g_injectX1X_VXnullX", new List, ITraversal>> {(g,p) =>g.Inject(1).V(null)}}, + {"g_injectX1X_VX1_nullX", new List, ITraversal>> {(g,p) =>g.Inject(1).V(p["vid1"], null)}}, + {"g_VX1X_V_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).V().Values("name")}}, + {"g_V_outXknowsX_V_name", new List, ITraversal>> {(g,p) =>g.V().Out("knows").V().Values("name")}}, + {"g_V_hasXname_GarciaX_inXsungByX_asXsongX_V_hasXname_Willie_DixonX_inXwrittenByX_whereXeqXsongXX_name", new List, ITraversal>> {(g,p) =>g.V().Has("artist", "name", "Garcia").In("sungBy").As("song").V().Has("artist", "name", "Willie_Dixon").In("writtenBy").Where(P.Eq("song")).Values("name")}}, + {"g_V_hasLabelXpersonX_asXpX_VXsoftwareX_addInEXuses_pX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "marko").Property("age", 29).As("marko").AddV((string) "person").Property("name", "vadas").Property("age", 27).As("vadas").AddV((string) "software").Property("name", "lop").Property("lang", "java").As("lop").AddV((string) "person").Property("name", "josh").Property("age", 32).As("josh").AddV((string) "software").Property("name", "ripple").Property("lang", "java").As("ripple").AddV((string) "person").Property("name", "peter").Property("age", 35).As("peter").AddE((string) "knows").From("marko").To("vadas").Property("weight", 0.5d).AddE((string) "knows").From("marko").To("josh").Property("weight", 1.0d).AddE((string) "created").From("marko").To("lop").Property("weight", 0.4d).AddE((string) "created").From("josh").To("ripple").Property("weight", 1.0d).AddE((string) "created").From("josh").To("lop").Property("weight", 0.4d).AddE((string) "created").From("peter").To("lop").Property("weight", 0.2d), (g,p) =>g.V().HasLabel("person").As("p").V(p["xx1"]).AddE((string) "uses").From("p"), (g,p) =>g.E().HasLabel("uses"), (g,p) =>g.V(p["vid1"]).OutE("uses"), (g,p) =>g.V(p["vid2"]).OutE("uses"), (g,p) =>g.V(p["vid3"]).InE("uses"), (g,p) =>g.V(p["vid4"]).OutE("uses"), (g,p) =>g.V(p["vid5"]).InE("uses"), (g,p) =>g.V(p["vid6"]).OutE("uses")}}, + {"InjectXnullX_eqXnullX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Eq(null))}}, + {"InjectXnullX_neqXnullX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Neq(null))}}, + {"InjectXnullX_ltXnullX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Lt(null))}}, + {"InjectXnullX_lteXnullX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Lte(null))}}, + {"InjectXnullX_gtXnullX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Gt(null))}}, + {"InjectXnullX_gteXnullX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Gte(null))}}, + {"InjectXNaNX_eqXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Eq(Double.NaN))}}, + {"InjectXNaNX_neqXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Neq(Double.NaN))}}, + {"InjectXNaNX_ltXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Lt(Double.NaN))}}, + {"InjectXNaNX_lteXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Lte(Double.NaN))}}, + {"InjectXNaNX_gtXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Gt(Double.NaN))}}, + {"InjectXNaNX_gteXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Gte(Double.NaN))}}, + {"InjectX1dX_eqXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Eq(Double.NaN))}}, + {"InjectX1dX_neqXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Neq(Double.NaN))}}, + {"InjectX1dX_ltXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Lt(Double.NaN))}}, + {"InjectX1dX_lteXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Lte(Double.NaN))}}, + {"InjectX1dX_gtXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Gt(Double.NaN))}}, + {"InjectX1dX_gteXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Gte(Double.NaN))}}, + {"InjectXNaNX_eqX1dX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Eq(1.0d))}}, + {"InjectXNaNX_neqX1dX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Neq(1.0d))}}, + {"InjectXNaNX_ltX1dX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Lt(1.0d))}}, + {"InjectXNaNX_lteX1dX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Lte(1.0d))}}, + {"InjectXNaNX_gtX1dX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Gt(1.0d))}}, + {"InjectXNaNX_gteX1dX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Gte(1.0d))}}, + {"InjectX1dX_eqXnullX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Eq(null))}}, + {"InjectX1dX_neqXnullX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Neq(null))}}, + {"InjectX1dX_ltXnullX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Lt(null))}}, + {"InjectX1dX_lteXnullX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Lte(null))}}, + {"InjectX1dX_gtXnullX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Gt(null))}}, + {"InjectX1dX_gteXnullX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Gte(null))}}, + {"InjectXnullX_eqX1dX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Eq(1.0d))}}, + {"InjectXnullX_neqX1dX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Neq(1.0d))}}, + {"InjectXnullX_ltX1dX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Lt(1.0d))}}, + {"InjectXnullX_lteX1dX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Lte(1.0d))}}, + {"InjectXnullX_gtX1dX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Gt(1.0d))}}, + {"InjectXnullX_gteX1dX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Gte(1.0d))}}, + {"InjectXnullX_eqXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Eq(Double.NaN))}}, + {"InjectXnullX_neqXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Neq(Double.NaN))}}, + {"InjectXnullX_ltXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Lt(Double.NaN))}}, + {"InjectXnullX_lteXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Lte(Double.NaN))}}, + {"InjectXnullX_gtXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Gt(Double.NaN))}}, + {"InjectXnullX_gteXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(null).Is(P.Gte(Double.NaN))}}, + {"InjectXNaNX_eqXnullX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Eq(null))}}, + {"InjectXNaNX_neqXnullX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Neq(null))}}, + {"InjectXNaNX_ltXnullX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Lt(null))}}, + {"InjectXNaNX_lteXnullX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Lte(null))}}, + {"InjectXNaNX_gtXnullX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Gt(null))}}, + {"InjectXNaNX_gteXnullX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NaN).Is(P.Gte(null))}}, + {"InjectXfooX_eqX1dX", new List, ITraversal>> {(g,p) =>g.Inject("foo").Is(P.Eq(1.0d))}}, + {"InjectXfooX_neqX1dX", new List, ITraversal>> {(g,p) =>g.Inject("foo").Is(P.Neq(1.0d))}}, + {"InjectXfooX_ltX1dX", new List, ITraversal>> {(g,p) =>g.Inject("foo").Is(P.Lt(1.0d))}}, + {"InjectXfooX_lteX1dX", new List, ITraversal>> {(g,p) =>g.Inject("foo").Is(P.Lte(1.0d))}}, + {"InjectXfooX_gtX1dX", new List, ITraversal>> {(g,p) =>g.Inject("foo").Is(P.Gt(1.0d))}}, + {"InjectXfooX_gteX1dX", new List, ITraversal>> {(g,p) =>g.Inject("foo").Is(P.Gte(1.0d))}}, + {"InjectX1dX_eqXfooX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Eq("foo"))}}, + {"InjectX1dX_neqXfooX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Neq("foo"))}}, + {"InjectX1dX_ltXfooX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Lt("foo"))}}, + {"InjectX1dX_lteXfooX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Lte("foo"))}}, + {"InjectX1dX_gtXfooX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Gt("foo"))}}, + {"InjectX1dX_gteXfooX", new List, ITraversal>> {(g,p) =>g.Inject(1.0d).Is(P.Gte("foo"))}}, + {"InjectX1dX_andXtrue_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).And(__.Is(P.Eq(1)), __.Is(P.Gt(0)))}}, + {"InjectX1dX_isXtrue_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Eq(1).And(P.Gt(0)))}}, + {"InjectX1dX_andXtrue_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).And(__.Is(P.Eq(1)), __.Is(P.Lt(0)))}}, + {"InjectX1dX_isXtrue_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Eq(1).And(P.Lt(0)))}}, + {"InjectX1dX_andXtrue_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1d).And(__.Is(P.Eq(1)), __.Is(P.Lt(Double.NaN)))}}, + {"InjectX1dX_isXtrue_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Eq(1).And(P.Lt(Double.NaN)))}}, + {"InjectX1dX_andXfalse_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).And(__.Is(P.Neq(1)), __.Is(P.Gt(0)))}}, + {"InjectX1dX_isXfalse_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Neq(1).And(P.Gt(0)))}}, + {"InjectX1dX_andXfalse_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).And(__.Is(P.Neq(1)), __.Is(P.Lt(0)))}}, + {"InjectX1dX_isXfalse_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Neq(1).And(P.Lt(0)))}}, + {"InjectX1dX_andXfalse_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1d).And(__.Is(P.Neq(1)), __.Is(P.Lt(Double.NaN)))}}, + {"InjectX1dX_isXfalse_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Neq(1).And(P.Lt(Double.NaN)))}}, + {"InjectX1dX_andXerror_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).And(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(0)))}}, + {"InjectX1dX_isXerror_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Lt(Double.NaN).And(P.Gt(0)))}}, + {"InjectX1dX_andXerror_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).And(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(2)))}}, + {"InjectX1dX_isXerror_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Lt(Double.NaN).And(P.Gt(2)))}}, + {"InjectX1dX_andXerror_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1d).And(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(Double.NaN)))}}, + {"InjectX1dX_isXerror_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Lt(Double.NaN).And(P.Gt(Double.NaN)))}}, + {"InjectX1dX_orXtrue_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Or(__.Is(P.Eq(1)), __.Is(P.Gt(0)))}}, + {"InjectX1dX_isXtrue_or_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Eq(1).Or(P.Gt(0)))}}, + {"InjectX1dX_orXtrue_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Or(__.Is(P.Eq(1)), __.Is(P.Lt(0)))}}, + {"InjectX1dX_isXtrue_or_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Eq(1).Or(P.Lt(0)))}}, + {"InjectX1dX_orXtrue_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Or(__.Is(P.Eq(1)), __.Is(P.Lt(Double.NaN)))}}, + {"InjectX1dX_isXtrue_or_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Eq(1).Or(P.Lt(Double.NaN)))}}, + {"InjectX1dX_orXfalse_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Or(__.Is(P.Neq(1)), __.Is(P.Gt(0)))}}, + {"InjectX1dX_isXfalse_or_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Neq(1).Or(P.Gt(0)))}}, + {"InjectX1dX_orXfalse_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Or(__.Is(P.Neq(1)), __.Is(P.Lt(0)))}}, + {"InjectX1dX_isXfalse_or_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Neq(1).Or(P.Lt(0)))}}, + {"InjectX1dX_orXfalse_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Or(__.Is(P.Neq(1)), __.Is(P.Lt(Double.NaN)))}}, + {"InjectX1dX_isXfalse_or_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Neq(1).Or(P.Lt(Double.NaN)))}}, + {"InjectX1dX_orXerror_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Or(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(0)))}}, + {"InjectX1dX_isXerror_or_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Lt(Double.NaN).Or(P.Gt(0)))}}, + {"InjectX1dX_orXerror_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Or(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(2)))}}, + {"InjectX1dX_isXerror_or_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Lt(Double.NaN).Or(P.Gt(2)))}}, + {"InjectX1dX_orXerror_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Or(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(Double.NaN)))}}, + {"InjectX1dX_isXerror_or_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Is(P.Lt(Double.NaN).Or(P.Gt(Double.NaN)))}}, + {"InjectX1dX_notXtrueX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Not(__.Is(P.Gt(0)))}}, + {"InjectX1dX_notXfalseX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Not(__.Is(P.Lt(0)))}}, + {"InjectX1dX_notXNaNX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Not(__.Is(P.Gt(Double.NaN)))}}, + {"InjectX1dX_notXisXeqXNaNXXX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Not(__.Is(P.Eq(Double.NaN)))}}, + {"InjectX1dX_notXnotXisXeqXNaNXXXX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Not(__.Not(__.Is(P.Eq(Double.NaN))))}}, + {"InjectX1dX_whereXnotXisXltXNaNXXXX", new List, ITraversal>> {(g,p) =>g.Inject(1d).Where(__.Inject(1).Not(__.Is(P.Lt(Double.NaN))))}}, + {"InjectX1dX_xorXtrue_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1).Filter(__.Or(__.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Eq(1)))), __.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Eq(1))))))}}, + {"InjectX1dX_xorXtrue_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1).Filter(__.Or(__.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Gt(1)))), __.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Eq(1))))))}}, + {"InjectX1dX_xorXtrue_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1).Filter(__.Or(__.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Lt(Double.NaN)))), __.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Eq(1))))))}}, + {"InjectX1dX_xorXfalse_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1).Filter(__.Or(__.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Eq(1)))), __.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Gt(1))))))}}, + {"InjectX1dX_xorXfalse_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1).Filter(__.Or(__.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Gt(1)))), __.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Gt(1))))))}}, + {"InjectX1dX_xorXfalse_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1).Filter(__.Or(__.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Lt(Double.NaN)))), __.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Gt(1))))))}}, + {"InjectX1dX_xorXerror_trueX", new List, ITraversal>> {(g,p) =>g.Inject(1).Filter(__.Or(__.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Eq(1)))), __.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Lt(Double.NaN))))))}}, + {"InjectX1dX_xorXerror_falseX", new List, ITraversal>> {(g,p) =>g.Inject(1).Filter(__.Or(__.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Gt(1)))), __.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Lt(Double.NaN))))))}}, + {"InjectX1dX_xorXerror_errorX", new List, ITraversal>> {(g,p) =>g.Inject(1).Filter(__.Or(__.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Lt(Double.NaN)))), __.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Lt(Double.NaN))))))}}, + {"InjectXInfX_eqXInfX", new List, ITraversal>> {(g,p) =>g.Inject(Double.PositiveInfinity).Is(P.Eq(Double.PositiveInfinity))}}, + {"InjectXInfX_neqXInfX", new List, ITraversal>> {(g,p) =>g.Inject(Double.PositiveInfinity).Is(P.Neq(Double.PositiveInfinity))}}, + {"InjectXNegInfX_eqXNegInfX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NegativeInfinity).Is(P.Eq(Double.NegativeInfinity))}}, + {"InjectXNegInfX_neqXNegInfX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NegativeInfinity).Is(P.Neq(Double.NegativeInfinity))}}, + {"InjectXInfX_gtXNegInfX", new List, ITraversal>> {(g,p) =>g.Inject(Double.PositiveInfinity).Is(P.Gt(Double.NegativeInfinity))}}, + {"InjectXInfX_ltXNegInfX", new List, ITraversal>> {(g,p) =>g.Inject(Double.PositiveInfinity).Is(P.Lt(Double.NegativeInfinity))}}, + {"InjectXNegInfX_ltXInfX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NegativeInfinity).Is(P.Lt(Double.PositiveInfinity))}}, + {"InjectXNegInfX_gtXInfX", new List, ITraversal>> {(g,p) =>g.Inject(Double.NegativeInfinity).Is(P.Gt(Double.PositiveInfinity))}}, + {"Primitives_Number_eqXbyteX", new List, ITraversal>> {(g,p) =>g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse("1") }).Unfold().Where(__.Is(p["xx1"]))}}, + {"Primitives_Number_eqXshortX", new List, ITraversal>> {(g,p) =>g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse("1") }).Unfold().Where(__.Is(p["xx1"]))}}, + {"Primitives_Number_eqXintX", new List, ITraversal>> {(g,p) =>g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse("1") }).Unfold().Where(__.Is(p["xx1"]))}}, + {"Primitives_Number_eqXlongX", new List, ITraversal>> {(g,p) =>g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse("1") }).Unfold().Where(__.Is(p["xx1"]))}}, + {"Primitives_Number_eqXbigintX", new List, ITraversal>> {(g,p) =>g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse("1") }).Unfold().Where(__.Is(p["xx1"]))}}, + {"Primitives_Number_eqXfloatX", new List, ITraversal>> {(g,p) =>g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse("1") }).Unfold().Where(__.Is(p["xx1"]))}}, + {"Primitives_Number_eqXdoubleX", new List, ITraversal>> {(g,p) =>g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse("1") }).Unfold().Where(__.Is(p["xx1"]))}}, + {"Primitives_Number_eqXbigdecimalX", new List, ITraversal>> {(g,p) =>g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse("1") }).Unfold().Where(__.Is(p["xx1"]))}}, + {"g_V_values_order", new List, ITraversal>> {(g,p) =>g.V().Values().Order()}}, + {"g_V_properties_order", new List, ITraversal>> {(g,p) =>g.V().Properties().Order()}}, + {"g_V_properties_order_id", new List, ITraversal>> {(g,p) =>g.V().Properties().Order().Id()}}, + {"g_E_properties_order_value", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").As("a").AddE((string) "self").From("a").To("a").Property("weight", 0.5d).Property("a", 10).AddE((string) "self").From("a").To("a").Property("weight", 1.0d).Property("a", 11).AddE((string) "self").From("a").To("a").Property("weight", 0.4d).Property("a", 12).AddE((string) "self").From("a").To("a").Property("weight", 1.0d).Property("a", 13).AddE((string) "self").From("a").To("a").Property("weight", 0.4d).Property("a", 14).AddE((string) "self").From("a").To("a").Property("weight", 0.2d).Property("a", 15), (g,p) =>g.E().Properties().Order().Value()}}, + {"g_E_properties_order_byXdescX_value", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").As("a").AddE((string) "self").From("a").To("a").Property("weight", 0.5d).Property("a", 10).AddE((string) "self").From("a").To("a").Property("weight", 1.0d).Property("a", 11).AddE((string) "self").From("a").To("a").Property("weight", 0.4d).Property("a", 12).AddE((string) "self").From("a").To("a").Property("weight", 1.0d).Property("a", 13).AddE((string) "self").From("a").To("a").Property("weight", 0.4d).Property("a", 14).AddE((string) "self").From("a").To("a").Property("weight", 0.2d).Property("a", 15), (g,p) =>g.E().Properties().Order().By(Order.Desc).Value()}}, + {"g_E_properties_order", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").As("a").AddE((string) "self").From("a").To("a").Property("weight", 0.5d).Property("a", 10).AddE((string) "self").From("a").To("a").Property("weight", 1.0d).Property("a", 11).AddE((string) "self").From("a").To("a").Property("weight", 0.4d).Property("a", 12).AddE((string) "self").From("a").To("a").Property("weight", 1.0d).Property("a", 13).AddE((string) "self").From("a").To("a").Property("weight", 0.4d).Property("a", 14).AddE((string) "self").From("a").To("a").Property("weight", 0.2d).Property("a", 15), (g,p) =>g.E().Properties().Order()}}, + {"g_E_properties_order_byXdescX", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property("name", "alice").As("a").AddE((string) "self").From("a").To("a").Property("weight", 0.5d).Property("a", 10).AddE((string) "self").From("a").To("a").Property("weight", 1.0d).Property("a", 11).AddE((string) "self").From("a").To("a").Property("weight", 0.4d).Property("a", 12).AddE((string) "self").From("a").To("a").Property("weight", 1.0d).Property("a", 13).AddE((string) "self").From("a").To("a").Property("weight", 0.4d).Property("a", 14).AddE((string) "self").From("a").To("a").Property("weight", 0.2d).Property("a", 15), (g,p) =>g.E().Properties().Order().By(Order.Desc)}}, + {"g_inject_order", new List, ITraversal>> {(g,p) =>g.Inject("zzz", "foo", Guid.Parse("6100808b-62f9-42b7-957e-ed66c30f40d1"), new List { "a", "b", "c", "d" }, 1, DateTimeOffset.Parse("2023-08-01T00:00Z"), new List { "a", "b", "c" }, new Dictionary {{ "a", "a" }, { "b", "b" }}, null, 2.0d, DateTimeOffset.Parse("2023-01-01T00:00Z"), new HashSet { "x", "y", "z" }, new Dictionary {{ "a", "a" }, { "b", false }, { "c", "c" }}, "bar", Guid.Parse("5100808b-62f9-42b7-957e-ed66c30f40d1"), true, false, Double.PositiveInfinity, Double.NaN, Double.NegativeInfinity).Order()}}, + {"g_inject_order_byXdescX", new List, ITraversal>> {(g,p) =>g.Inject("zzz", "foo", Guid.Parse("6100808b-62f9-42b7-957e-ed66c30f40d1"), new List { "a", "b", "c", "d" }, 1, DateTimeOffset.Parse("2023-08-01T00:00Z"), new List { "a", "b", "c" }, new Dictionary {{ "a", "a" }, { "b", "b" }}, null, 2.0d, DateTimeOffset.Parse("2023-01-01T00:00Z"), new HashSet { "x", "y", "z" }, new Dictionary {{ "a", "a" }, { "b", false }, { "c", "c" }}, "bar", Guid.Parse("5100808b-62f9-42b7-957e-ed66c30f40d1"), true, false, Double.PositiveInfinity, Double.NaN, Double.NegativeInfinity).Order().By(Order.Desc)}}, + {"g_V_out_out_order_byXascX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Order().By(Order.Asc)}}, + {"g_V_out_out_order_byXdescX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Order().By(Order.Desc)}}, + {"g_V_out_out_asXheadX_path_order_byXascX_selectXheadX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().As("head").Path().Order().By(Order.Asc).Select("head")}}, + {"g_V_out_out_asXheadX_path_order_byXdescX_selectXheadX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().As("head").Path().Order().By(Order.Desc).Select("head")}}, + {"g_V_out_outE_order_byXascX", new List, ITraversal>> {(g,p) =>g.V().Out().OutE().Order().By(Order.Asc)}}, + {"g_V_out_outE_order_byXdescX", new List, ITraversal>> {(g,p) =>g.V().Out().OutE().Order().By(Order.Desc)}}, + {"g_V_out_outE_asXheadX_path_order_byXascX_selectXheadX", new List, ITraversal>> {(g,p) =>g.V().Out().OutE().As("head").Path().Order().By(Order.Asc).Select("head")}}, + {"g_V_out_outE_asXheadX_path_order_byXdescX_selectXheadX", new List, ITraversal>> {(g,p) =>g.V().Out().OutE().As("head").Path().Order().By(Order.Desc).Select("head")}}, + {"g_V_out_out_properties_asXheadX_path_order_byXascX_selectXheadX_value", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Properties().As("head").Path().Order().By(Order.Asc).Select("head").Value()}}, + {"g_V_out_out_properties_asXheadX_path_order_byXdescX_selectXheadX_value", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Properties().As("head").Path().Order().By(Order.Desc).Select("head").Value()}}, + {"g_V_out_out_values_asXheadX_path_order_byXascX_selectXheadX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Values().As("head").Path().Order().By(Order.Asc).Select("head")}}, + {"g_V_out_out_values_asXheadX_path_order_byXdescX_selectXheadX", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Values().As("head").Path().Order().By(Order.Desc).Select("head")}}, + {"g_V_valueXnameX_aggregateXxX_capXxX", new List, ITraversal>> {(g,p) =>g.V().Values("name").Aggregate("x").Cap("x")}}, + {"g_V_aggregateXxX_byXnameX_capXxX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("x").By("name").Cap("x")}}, + {"g_V_out_aggregateXaX_path", new List, ITraversal>> {(g,p) =>g.V().Out().Aggregate("a").Path()}}, + {"g_V_hasLabelXpersonX_aggregateXxX_byXageX_capXxX_asXyX_selectXyX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Aggregate("x").By("age").Cap("x").As("y").Select("y")}}, + {"g_V_aggregateXxX_byXageX_capXxX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("x").By("age").Cap("x")}}, + {"g_V_localXaggregateXxX_byXageXX_capXxX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Aggregate("x").By("age")).Cap("x")}}, + {"g_withStrategiesXProductiveByStrategyX_V_localXaggregateXxX_byXageXX_capXxX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Local(__.Aggregate("x").By("age")).Cap("x")}}, + {"g_V_localX_aggregateXa_byXnameXX_out_capXaX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Aggregate("a").By("name")).Out().Cap("a")}}, + {"g_VX1X_localXaggregateXaX_byXnameXX_out_localXaggregateXaX_byXnameXX_name_capXaX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Local(__.Aggregate("a").By("name")).Out().Local(__.Aggregate("a").By("name")).Values("name").Cap("a")}}, + {"g_withSideEffectXa_setX_V_both_name_localXaggregateX_aXX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Both().Values("name").Local(__.Aggregate("a")).Cap("a")}}, + {"g_withSideEffectXa_set_inlineX_V_both_name_localXaggregateXaXX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", new HashSet { "alice" }).V().Both().Values("name").Local(__.Aggregate("a")).Cap("a")}}, + {"g_V_localXaggregateXaX_byXoutEXcreatedX_countXX_out_out_localXaggregateXaX_byXinEXcreatedX_weight_sumXX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Aggregate("a").By(__.OutE("created").Count())).Out().Out().Local(__.Aggregate("a").By(__.InE("created").Values("weight").Sum())).Cap("a")}}, + {"g_V_aggregateXxX_byXvaluesXageX_isXgtX29XXX_capXxX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("x").By(__.Values("age").Is(P.Gt(29))).Cap("x")}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXxX_byXvaluesXageX_isXgtX29XXX_capXxX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("x").By(__.Values("age").Is(P.Gt(29))).Cap("x")}}, + {"g_V_aggregateXxX_byXout_order_byXnameXX_capXxX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("x").By(__.Out().Order().By("name")).Cap("x")}}, + {"g_withStrategiesXProductiveByStrategyX_V_aggregateXxX_byXout_order_byXnameXX_capXxX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Aggregate("x").By(__.Out().Order().By("name")).Cap("x")}}, + {"g_V_aggregateXaX_hasXperson_age_gteX30XXX_capXaX_unfold_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").Has("person", "age", P.Gte(30)).Cap("a").Unfold().Values("name")}}, + {"g_withSideEffectXa_1_sumX_V_aggregateXaX_byXageX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 1, Operator.Sum).V().Aggregate("a").By("age").Cap("a")}}, + {"g_withSideEffectXa_1_sumX_V_localXaggregateX_aX_byXageXX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 1, Operator.Sum).V().Local(__.Aggregate("a").By("age")).Cap("a")}}, + {"g_withSideEffectXa_123_minusX_V_aggregateXaX_byXageX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 123, Operator.Minus).V().Aggregate("a").By("age").Cap("a")}}, + {"g_withSideEffectXa_123_minusX_V_localXaggregateX_aX_byXageXX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 123, Operator.Minus).V().Local(__.Aggregate("a").By("age")).Cap("a")}}, + {"g_withSideEffectXa_2_multX_V_aggregateXaX_byXageX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 2, Operator.Mult).V().Aggregate("a").By("age").Cap("a")}}, + {"g_withSideEffectXa_2_multX_V_localXaggregateX_aX_byXageXX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 2, Operator.Mult).V().Local(__.Aggregate("a").By("age")).Cap("a")}}, + {"g_withSideEffectXa_876960_divX_V_aggregateXaX_byXageX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 876960, Operator.Div).V().Aggregate("a").By("age").Cap("a")}}, + {"g_withSideEffectXa_876960_divX_V_localXaggregateX_aX_byXageXX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 876960, Operator.Div).V().Local(__.Aggregate("a").By("age")).Cap("a")}}, + {"g_withSideEffectXa_1_minX_V_aggregateXaX_byXageX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 1, Operator.Min).V().Aggregate("a").By("age").Cap("a")}}, + {"g_withSideEffectXa_1_minX_V_localXaggregateX_aX_byXageXX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 1, Operator.Min).V().Local(__.Aggregate("a").By("age")).Cap("a")}}, + {"g_withSideEffectXa_100_minX_V_aggregateXaX_byXageX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 100, Operator.Min).V().Aggregate("a").By("age").Cap("a")}}, + {"g_withSideEffectXa_100_minX_V_localXaggregateX_aX_byXageXX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 100, Operator.Min).V().Local(__.Aggregate("a").By("age")).Cap("a")}}, + {"g_withSideEffectXa_1_maxX_V_aggregateXaX_byXageX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 1, Operator.Max).V().Aggregate("a").By("age").Cap("a")}}, + {"g_withSideEffectXa_1_maxX_V_localXaggregateX_aX_byXageXX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 1, Operator.Max).V().Local(__.Aggregate("a").By("age")).Cap("a")}}, + {"g_withSideEffectXa_100_maxX_V_aggregateXaX_byXageX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 100, Operator.Max).V().Aggregate("a").By("age").Cap("a")}}, + {"g_withSideEffectXa_100_maxX_V_localXaggregateX_aX_byXageX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", 100, Operator.Max).V().Local(__.Aggregate("a").By("age")).Cap("a")}}, + {"g_withSideEffectXa_true_andX_V_constantXfalseX_aggregateXaX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", true, Operator.And).V().Constant(false).Aggregate("a").Cap("a")}}, + {"g_withSideEffectXa_true_andX_V_constantXfalseX_localXaggregateX_aXX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", true, Operator.And).V().Constant(false).Local(__.Aggregate("a")).Cap("a")}}, + {"g_withSideEffectXa_true_orX_V_constantXfalseX_aggregateXaX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", true, Operator.Or).V().Constant(false).Aggregate("a").Cap("a")}}, + {"g_withSideEffectXa_true_orX_V_constantXfalseX_localXaggregateX_aXX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", true, Operator.Or).V().Constant(false).Local(__.Aggregate("a")).Cap("a")}}, + {"g_withSideEffectXa_1_2_3_addAllX_V_aggregateXaX_byXageX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", new List { 1, 2, 3 }, Operator.AddAll).V().Aggregate("a").By("age").Cap("a")}}, + {"g_withSideEffectXa_1_2_3_addAllX_V_localXaggregateX_aX_byXageXX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", new List { 1, 2, 3 }, Operator.AddAll).V().Local(__.Aggregate("a").By("age")).Cap("a")}}, + {"g_withSideEffectXa_1_2_3_assignX_V_aggregateXaX_byXageX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", new List { 1, 2, 3 }, Operator.Assign).V().Aggregate("a").By("age").Cap("a")}}, + {"g_withSideEffectXa_1_2_3_assignX_V_order_byXageX_localXaggregateX_aX_byXageXX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", new List { 1, 2, 3 }, Operator.Assign).V().Order().By("age").Local(__.Aggregate("a").By("age")).Cap("a")}}, + {"g_V_localXaggregateXa_nameXX_out_capXaX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Aggregate("a").By("name")).Out().Cap("a")}}, + {"g_withSideEffectXa_setX_V_both_name_localXaggregateXaXX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Both().Values("name").Local(__.Aggregate("a")).Cap("a")}}, + {"g_V_localXaggregateXaXX_outE_inV_localXaggregateXaXX_capXaX_unfold_dedup", new List, ITraversal>> {(g,p) =>g.V().Local(__.Aggregate("a")).OutE().InV().Local(__.Aggregate("a")).Cap("a").Unfold().Dedup()}}, + {"g_V_hasLabelXpersonX_localXaggregateXaXX_outXcreatedX_localXaggregateXaXX_capXaX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Local(__.Aggregate("a")).Out("created").Local(__.Aggregate("a")).Cap("a")}}, + {"g_V_localXaggregateXaXX_repeatXout_localXaggregateXaXXX_timesX2X_capXaX_unfold_groupCount", new List, ITraversal>> {(g,p) =>g.V().Local(__.Aggregate("a")).Repeat(__.Out().Local(__.Aggregate("a"))).Times(2).Cap("a").Unfold().Values("name").GroupCount()}}, + {"g_V_hasXname_markoX_localXaggregateXaXX_outXknowsX_localXaggregateXaXX_outXcreatedX_localXaggregateXaXX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "marko").Local(__.Aggregate("a")).Out("knows").Local(__.Aggregate("a")).Out("created").Local(__.Aggregate("a")).Cap("a")}}, + {"g_V_hasLabelXsoftwareX_localXaggregateXaXX_inXcreatedX_localXaggregateXaXX_outXknowsX_localXaggregateXaXX_capXaX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("software").Local(__.Aggregate("a")).In("created").Local(__.Aggregate("a")).Out("knows").Local(__.Aggregate("a")).Cap("a")}}, + {"g_V_localXaggregateXaXX_outE_hasXweight_lgtX0_5XX_inV_localXaggregateXaXX_capXaX_unfold_path", new List, ITraversal>> {(g,p) =>g.V().Local(__.Aggregate("a")).OutE().Has("weight", P.Gt(0.5)).InV().Local(__.Aggregate("a")).Cap("a").Unfold().Path()}}, + {"g_V_localXaggregateXaXX_bothE_sampleX1X_otherV_localXaggregateXaXX_capXaX_unfold_groupCount_byXlabelX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Aggregate("a")).BothE().Sample(1).OtherV().Local(__.Aggregate("a")).Cap("a").Unfold().GroupCount().By(T.Label)}}, + {"g_V_hasLabelXpersonX_localXaggregateXaXX_outE_inV_simplePath_localXaggregateXaXX_capXaX_unfold_hasLabelXsoftwareX_count", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Local(__.Aggregate("a")).OutE().InV().SimplePath().Local(__.Aggregate("a")).Cap("a").Unfold().HasLabel("software").Count()}}, + {"g_V_localXaggregateXaXX_unionXout_inX_localXaggregateXaXX_capXaX_unfold_dedup_valuesXnameX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Aggregate("a")).Union(__.Out(), __.In()).Local(__.Aggregate("a")).Cap("a").Unfold().Dedup().Values("name")}}, + {"g_V_hasXname_joshX_localXaggregateXaXX_outE_hasXweight_ltX1_0XX_inV_localXaggregateXaXX_outE_inV_localXaggregateXaXX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Has("name", "josh").Local(__.Aggregate("a")).OutE().Has("weight", P.Lt(1.0)).InV().Local(__.Aggregate("a")).OutE().InV().Local(__.Aggregate("a")).Cap("a")}}, + {"g_V_hasLabelXpersonX_localXaggregateXaXX_outE_order_byXweightX_limitX1X_inV_localXaggregateXaXX_capXaX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").Local(__.Aggregate("a")).OutE().Order().By("weight").Limit(1).InV().Local(__.Aggregate("a")).Cap("a")}}, + {"g_V_repeatXaggregateXaXX_timesX2X_capXaX_unfold", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Aggregate("a")).Times(2).Cap("a").Unfold()}}, + {"g_V_aggregateXaX_capXaX_unfold_both", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").Cap("a").Unfold().Both()}}, + {"g_V_aggregateXaX_capXaX_unfold_barrier_both", new List, ITraversal>> {(g,p) =>g.V().Aggregate("a").Cap("a").Unfold().Barrier().Both()}}, + {"g_V_fail", new List, ITraversal>> {(g,p) =>g.V().Fail()}}, + {"g_V_failXmsgX", new List, ITraversal>> {(g,p) =>g.V().Fail("msg")}}, + {"g_V_unionXout_failX", new List, ITraversal>> {(g,p) =>g.V().Union(__.Out(), __.Fail())}}, + {"g_V_group_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Group().By("name")}}, + {"g_V_group_byXageX", new List, ITraversal>> {(g,p) =>g.V().Group().By("age")}}, + {"g_withStrategiesXProductiveByStrategyX_V_group_byXageX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().Group().By("age")}}, + {"g_V_group_byXnameX_byXageX", new List, ITraversal>> {(g,p) =>g.V().Group().By("name").By("age")}}, + {"g_V_group_byXnameX_by", new List, ITraversal>> {(g,p) =>g.V().Group().By("name").By()}}, + {"g_V_hasXlangX_group_byXlangX_byXcountX", new List, ITraversal>> {(g,p) =>g.V().Has("lang").Group().By("lang").By(__.Count())}}, + {"g_V_group_byXoutE_countX_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Order().By("name").Group().By(__.OutE().Count()).By("name")}}, + {"g_V_repeatXbothXfollowedByXX_timesX2X_group_byXsongTypeX_byXcountX", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Both("followedBy")).Times(2).Group().By("songType").By(__.Count())}}, + {"g_V_group_byXvaluesXnameX_substringX1XX_byXconstantX1XX", new List, ITraversal>> {(g,p) =>g.V().Group().By(__.Values("name").Substring(0, 1)).By(__.Constant(1))}}, + {"g_V_out_group_byXlabelX_selectXpersonX_unfold_outXcreatedX_name_limitX2X", new List, ITraversal>> {(g,p) =>g.V().Out().Group().By(T.Label).Select("person").Unfold().Out("created").Values("name").Limit(2)}}, + {"g_V_hasLabelXsongX_group_byXnameX_byXproperties_groupCount_byXlabelXX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("song").Group().By("name").By(__.Properties().GroupCount().By(T.Label))}}, + {"g_V_outXfollowedByX_group_byXsongTypeX_byXbothE_group_byXlabelX_byXweight_sumXX", new List, ITraversal>> {(g,p) =>g.V().Out("followedBy").Group().By("songType").By(__.BothE().Group().By(T.Label).By(__.Values("weight").Sum()))}}, + {"g_V_group_byXlabelX_byXbothE_groupXaX_byXlabelX_byXweight_sumX_weight_sumX", new List, ITraversal>> {(g,p) =>g.V().Group().By(T.Label).By(__.BothE().Group("a").By(T.Label).By(__.Values("weight").Sum()).Values("weight").Sum())}}, + {"g_withSideEffectXa__marko_666_noone_blahX_V_groupXaX_byXnameX_byXoutE_label_foldX_capXaX", new List, ITraversal>> {(g,p) =>g.WithSideEffect("a", new Dictionary {{ "marko", new List { "666" } }, { "noone", new List { "blah" } }}).V().Group("a").By("name").By(__.OutE().Label().Fold()).Cap("a").Unfold().Group().By(Column.Keys).By(__.Select(Column.Values).Order(Scope.Local).By(Order.Asc))}}, + {"g_V_hasLabelXpersonX_asXpX_outXcreatedX_group_byXnameX_byXselectXpX_valuesXageX_sumX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").As("p").Out("created").Group().By("name").By(__.Select("p").Values("age").Sum())}}, + {"g_V_group_byXlabelX_byXlabel_countX", new List, ITraversal>> {(g,p) =>g.V().Group().By(__.Label()).By(__.Label().Count())}}, + {"g_V_hasXperson_name_withinXvadas_peterXX_group_by_byXout_order_foldX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", P.Within("vadas", "peter")).Group().By().By(__.Out().Order().Fold())}}, + {"g_V_hasXperson_name_withinXvadas_peterXX_group_by_byXout_foldX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", P.Within("vadas", "peter")).Group().By().By(__.Out().Fold())}}, + {"g_V_hasXperson_name_withinXvadas_peterXX_group_by_byXout_orderX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", P.Within("vadas", "peter")).Group().By().By(__.Out().Order())}}, + {"g_V_hasXperson_name_withinXvadas_peterXX_group_by_byXout_order_countX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", P.Within("vadas", "peter")).Group().By().By(__.Out().Order().Count())}}, + {"g_V_hasXperson_name_withinXvadas_peterXX_group_by_byXout_order_fold_countXlocalXX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", P.Within("vadas", "peter")).Group().By().By(__.Out().Order().Fold().Count(Scope.Local))}}, + {"g_V_group_by_byXout_label_foldX_selectXvaluesX_unfold_orderXlocalX", new List, ITraversal>> {(g,p) =>g.V().Group().By().By(__.Out().Label().Fold()).Select(Column.Values).Unfold().Order(Scope.Local)}}, + {"g_V_group_by_byXout_label_dedup_foldX_selectXvaluesX_unfold_orderXlocalX", new List, ITraversal>> {(g,p) =>g.V().Group().By().By(__.Out().Label().Dedup().Fold()).Select(Column.Values).Unfold().Order(Scope.Local)}}, + {"g_V_group_by_byXout_label_limitX0X_foldX_selectXvaluesX_unfold", new List, ITraversal>> {(g,p) =>g.V().Group().By().By(__.Out().Label().Limit(0).Fold()).Select(Column.Values).Unfold()}}, + {"g_V_group_by_byXout_label_limitX10X_foldX_selectXvaluesX_unfold_orderXlocalX", new List, ITraversal>> {(g,p) =>g.V().Group().By().By(__.Out().Label().Limit(10).Fold()).Select(Column.Values).Unfold().Order(Scope.Local)}}, + {"g_V_group_by_byXout_label_tailX10X_foldX_selectXvaluesX_unfold_orderXlocalX", new List, ITraversal>> {(g,p) =>g.V().Group().By().By(__.Out().Label().Tail(10).Fold()).Select(Column.Values).Unfold().Order(Scope.Local)}}, + {"g_V_groupXaX_byXnameX_by_selectXaX_countXlocalX", new List, ITraversal>> {(g,p) =>g.V().Group("a").By("name").By().Select("a").Count(Scope.Local)}}, + {"g_V_localXgroupXaX_byXnameX_by_selectXaX_countXlocalXX", new List, ITraversal>> {(g,p) =>g.V().Local(__.Group("a").By("name").By().Select("a").Count(Scope.Local))}}, + {"g_V_group_byXvaluesXnameXX_byXboth_countX", new List, ITraversal>> {(g,p) =>g.V().Group().By(__.Values("name")).By(__.Both().Count())}}, + {"g_V_outXcreatedX_groupCount_byXnameX", new List, ITraversal>> {(g,p) =>g.V().Out("created").GroupCount().By("name")}}, + {"g_V_groupCount_byXageX", new List, ITraversal>> {(g,p) =>g.V().GroupCount().By("age")}}, + {"g_withStrategiesXProductiveByStrategyX_V_groupCount_byXageX", new List, ITraversal>> {(g,p) =>g.WithStrategies(new ProductiveByStrategy()).V().GroupCount().By("age")}}, + {"g_V_outXcreatedX_name_groupCount", new List, ITraversal>> {(g,p) =>g.V().Out("created").Values("name").GroupCount()}}, + {"g_V_outXcreatedX_groupCountXaX_byXnameX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Out("created").GroupCount("a").By("name").Cap("a")}}, + {"g_V_outXcreatedX_name_groupCountXaX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Out("created").Values("name").GroupCount("a").Cap("a")}}, + {"g_V_repeatXout_groupCountXaX_byXnameXX_timesX2X_capXaX", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out().GroupCount("a").By("name")).Times(2).Cap("a")}}, + {"g_V_both_groupCountXaX_byXlabelX_asXbX_barrier_whereXselectXaX_selectXsoftwareX_isXgtX2XXX_selectXbX_name", new List, ITraversal>> {(g,p) =>g.V().Both().GroupCount("a").By(T.Label).As("b").Barrier().Where(__.Select("a").Select("software").Is(P.Gt(2))).Select("b").Values("name")}}, + {"g_V_unionXoutXknowsX__outXcreatedX_inXcreatedXX_groupCount_selectXvaluesX_unfold_sum", new List, ITraversal>> {(g,p) =>g.V().Union(__.Out("knows"), __.Out("created").In("created")).GroupCount().Select(Column.Values).Unfold().Sum()}}, + {"g_V_hasXnoX_groupCount", new List, ITraversal>> {(g,p) =>g.V().Has("no").GroupCount()}}, + {"g_V_hasXnoX_groupCountXaX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Has("no").GroupCount("a").Cap("a")}}, + {"g_V_unionXrepeatXoutX_timesX2X_groupCountXmX_byXlangXX__repeatXinX_timesX2X_groupCountXmX_byXnameXX_capXmX", new List, ITraversal>> {(g,p) =>g.V().Union(__.Repeat(__.Out()).Times(2).GroupCount("m").By("lang"), __.Repeat(__.In()).Times(2).GroupCount("m").By("name")).Cap("m")}}, + {"g_V_outXcreatedX_groupCountXxX_capXxX", new List, ITraversal>> {(g,p) =>g.V().Out("created").GroupCount("x").Cap("x")}}, + {"g_V_groupCount_byXbothE_countX", new List, ITraversal>> {(g,p) =>g.V().GroupCount().By(__.BothE().Count())}}, + {"g_V_both_localXgroupCountXaXX_out_capXaX_selectXkeysX_unfold_both_localXgroupCountXaXX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Both().Local(__.GroupCount("a")).Out().Cap("a").Select(Column.Keys).Unfold().Both().Local(__.GroupCount("a")).Cap("a")}}, + {"g_V_hasXperson_name_markoX_bothXknowsX_groupCount_byXvaluesXnameX_foldX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", "marko").Both("knows").GroupCount().By(__.Values("name").Fold())}}, + {"g_V_outXcreatedX_groupCount_byXnameX_byXageX", new List, ITraversal>> {(g,p) =>g.V().Out("created").GroupCount().By("name").By("age")}}, + {"g_V_outXcreatedX_groupCountXxX_byXnameX_byXageX", new List, ITraversal>> {(g,p) =>g.V().Out("created").GroupCount("x").By("name").By("age")}}, + {"g_V_groupCountXaX_selectXaX_countXlocalX", new List, ITraversal>> {(g,p) =>g.V().GroupCount("a").Select("a").Count(Scope.Local)}}, + {"g_V_localXgroupCountXaX_selectXaX_countXlocalXX", new List, ITraversal>> {(g,p) =>g.V().Local(__.GroupCount("a").Select("a").Count(Scope.Local))}}, + {"g_VX1X_out_name_injectXdanielX_asXaX_mapXlengthX_path", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Values("name").Inject("daniel").As("a").Map(__.Length()).Path()}}, + {"g_injectXnull_1_3_nullX", new List, ITraversal>> {(g,p) =>g.Inject(null, 1, 3, null)}}, + {"g_injectX10_20_null_20_10_10X_groupCountXxX_dedup_asXyX_projectXa_bX_by_byXselectXxX_selectXselectXyXXX", new List, ITraversal>> {(g,p) =>g.Inject(10, 20, null, 20, 10, 10).GroupCount("x").Dedup().As("y").Project("a", "b").By().By(__.Select("x").Select(__.Select("y")))}}, + {"g_injectXname_marko_age_nullX_selectXname_ageX", new List, ITraversal>> {(g,p) =>g.Inject(new Dictionary {{ "name", "marko" }, { "age", null }}).Select("name", "age")}}, + {"g_injectXnull_nullX", new List, ITraversal>> {(g,p) =>g.Inject(null, null)}}, + {"g_injectXnullX", new List, ITraversal>> {(g,p) =>g.Inject(null)}}, + {"g_inject", new List, ITraversal>> {(g,p) =>g.Inject()}}, + {"g_VX1X_valuesXageX_injectXnull_nullX", new List, ITraversal>> {(g,p) =>g.V(p["xx1"]).Values("age").Inject(null, null)}}, + {"g_VX1X_valuesXageX_injectXnullX", new List, ITraversal>> {(g,p) =>g.V(p["xx1"]).Values("age").Inject(null)}}, + {"g_VX1X_valuesXageX_inject", new List, ITraversal>> {(g,p) =>g.V(p["xx1"]).Values("age").Inject()}}, + {"g_injectXnull_1_3_nullX_asXaX_selectXaX", new List, ITraversal>> {(g,p) =>g.Inject(null, 1, 3, null).As("a").Select("a")}}, + {"g_injectX1_3X_injectX100_300X", new List, ITraversal>> {(g,p) =>g.Inject(1, 3).Inject(100, 300)}}, + {"g_injectX1_3_100_300X_list", new List, ITraversal>> {(g,p) =>g.Inject(new List { 1, 3, 100, 300 })}}, + {"g_injectX1_3_100_300X_set", new List, ITraversal>> {(g,p) =>g.Inject(new HashSet { 1, 3, 100, 300 })}}, + {"g_injectX1_1X_set", new List, ITraversal>> {(g,p) =>g.Inject(new HashSet { 1, 1 })}}, + {"g_io_readXkryoX", new List, ITraversal>> {(g,p) =>g.Io("data/tinkerpop-modern.kryo").Read(), (g,p) =>g.V(), (g,p) =>g.E()}}, + {"g_io_read_withXreader_gryoX", new List, ITraversal>> {(g,p) =>g.Io("data/tinkerpop-modern.kryo").With(IO.Reader, IO.Gryo).Read(), (g,p) =>g.V(), (g,p) =>g.E()}}, + {"g_io_readXgraphsonX", new List, ITraversal>> {(g,p) =>g.Io("data/tinkerpop-modern.json").Read(), (g,p) =>g.V(), (g,p) =>g.E()}}, + {"g_io_read_withXreader_graphsonX", new List, ITraversal>> {(g,p) =>g.Io("data/tinkerpop-modern.json").With(IO.Reader, IO.GraphSON).Read(), (g,p) =>g.V(), (g,p) =>g.E()}}, + {"g_io_readXgraphmlX", new List, ITraversal>> {(g,p) =>g.Io("data/tinkerpop-modern.xml").Read(), (g,p) =>g.V(), (g,p) =>g.E()}}, + {"g_io_read_withXreader_graphmlX", new List, ITraversal>> {(g,p) =>g.Io("data/tinkerpop-modern.xml").With(IO.Reader, IO.GraphML).Read(), (g,p) =>g.V(), (g,p) =>g.E()}}, + {"g_withSackX127bX_injectX1bX_sackXsumX_sack", new List, ITraversal>> {(g,p) =>g.WithSack((sbyte) 127).Inject((sbyte) 1).Sack(Operator.Sum).Sack()}}, + {"g_withSackX32767sX_injectX1sX_sackXsumX_sack", new List, ITraversal>> {(g,p) =>g.WithSack((short) 32767).Inject((short) 1).Sack(Operator.Sum).Sack()}}, + {"g_withSackX2147483647iX_injectX1iX_sackXsumX_sack", new List, ITraversal>> {(g,p) =>g.WithSack(2147483647).Inject(1).Sack(Operator.Sum).Sack()}}, + {"g_withSackX1_7976931348623157E_308dX_injectX1_7976931348623157E_308dX_sackXsumX_sack", new List, ITraversal>> {(g,p) =>g.WithSack(1.7976931348623157e+308d).Inject(1.7976931348623157e+308d).Sack(Operator.Sum).Sack()}}, + {"g_withSackX_128bX_injectX1bX_sackXminusX_sack", new List, ITraversal>> {(g,p) =>g.WithSack((short) -128).Inject((short) 1).Sack(Operator.Minus).Sack()}}, + {"g_withSackX_32768sX_injectX1sX_sackXminusX_sack", new List, ITraversal>> {(g,p) =>g.WithSack((short) -32768).Inject((short) 1).Sack(Operator.Minus).Sack()}}, + {"g_withSackX_2147483648iX_injectX1iX_sackXminusX_sack", new List, ITraversal>> {(g,p) =>g.WithSack(-2147483648).Inject(1).Sack(Operator.Minus).Sack()}}, + {"g_withSackX_1_7976931348623157E_308dX_injectX1_7976931348623157E_308dX_sackXminusX_sack", new List, ITraversal>> {(g,p) =>g.WithSack(-1.7976931348623157e+308d).Inject(1.7976931348623157e+308d).Sack(Operator.Minus).Sack()}}, + {"g_withSackX127bX_injectX2bX_sackXmultX_sack", new List, ITraversal>> {(g,p) =>g.WithSack((sbyte) 127).Inject((sbyte) 2).Sack(Operator.Mult).Sack()}}, + {"g_withSackX32767sX_injectX2sX_sackXmultX_sack", new List, ITraversal>> {(g,p) =>g.WithSack((short) 32767).Inject((short) 2).Sack(Operator.Mult).Sack()}}, + {"g_withSackX2147483647iX_injectX2iX_sackXmultX_sack", new List, ITraversal>> {(g,p) =>g.WithSack(2147483647).Inject(2).Sack(Operator.Mult).Sack()}}, + {"g_withSackX1_7976931348623157E_308dX_injectX2dX_sackXmultX_sack", new List, ITraversal>> {(g,p) =>g.WithSack(1.7976931348623157e+308d).Inject(2d).Sack(Operator.Mult).Sack()}}, + {"g_withSackX127bX_injectX0_5fX_sackXdivX_sack", new List, ITraversal>> {(g,p) =>g.WithSack((sbyte) 127).Inject(0.5f).Sack(Operator.Div).Sack()}}, + {"g_withSackX32767sX_injectX0_5fX_sackXdivX_sack", new List, ITraversal>> {(g,p) =>g.WithSack((short) 32767).Inject(0.5f).Sack(Operator.Div).Sack()}}, + {"g_withSackX2147483647iX_injectX0_5fX_sackXdivX_sack", new List, ITraversal>> {(g,p) =>g.WithSack(2147483647).Inject(0.5f).Sack(Operator.Div).Sack()}}, + {"g_withSackX1_7976931348623157E_308dX_injectX0_5dX_sackXdivX_sack", new List, ITraversal>> {(g,p) =>g.WithSack(1.7976931348623157e+308d).Inject(0.5d).Sack(Operator.Div).Sack()}}, + {"g_withSackX_128bX_injectX_1bX_sackXdivX_sack", new List, ITraversal>> {(g,p) =>g.WithSack((short) -128).Inject((short) -1).Sack(Operator.Div).Sack()}}, + {"g_withSackX_32768sX_injectX_1sX_sackXdivX_sack", new List, ITraversal>> {(g,p) =>g.WithSack((short) -32768).Inject((short) -1).Sack(Operator.Div).Sack()}}, + {"g_withSackX_2147483648iX_injectX_1iX_sackXdivX_sack", new List, ITraversal>> {(g,p) =>g.WithSack(-2147483648).Inject(-1).Sack(Operator.Div).Sack()}}, + {"g_withSackXhelloX_V_outE_sackXassignX_byXlabelX_inV_sack", new List, ITraversal>> {(g,p) =>g.WithSack("hello").V().OutE().Sack(Operator.Assign).By(T.Label).InV().Sack()}}, + {"g_withSackX0X_V_outE_sackXsumX_byXweightX_inV_sack_sum", new List, ITraversal>> {(g,p) =>g.WithSack(0.0d).V().OutE().Sack(Operator.Sum).By("weight").InV().Sack().Sum()}}, + {"g_withSackX0X_V_repeatXoutE_sackXsumX_byXweightX_inVX_timesX2X_sack", new List, ITraversal>> {(g,p) =>g.WithSack(0.0d).V().Repeat(__.OutE().Sack(Operator.Sum).By("weight").InV()).Times(2).Sack()}}, + {"g_withBulkXfalseX_withSackX1_sumX_VX1X_localXoutEXknowsX_barrierXnormSackX_inVX_inXknowsX_barrier_sack", new List, ITraversal>> {(g,p) =>g.WithBulk(false).WithSack(1.0d, Operator.Sum).V(p["vid1"]).Local(__.OutE("knows").Barrier(Barrier.NormSack).InV()).In("knows").Barrier().Sack()}}, + {"g_withBulkXfalseX_withSackX1_sumX_V_out_barrier_sack", new List, ITraversal>> {(g,p) =>g.WithBulk(false).WithSack(1, Operator.Sum).V().Out().Barrier().Sack()}}, + {"g_withSackX1_sumX_VX1X_localXoutXknowsX_barrierXnormSackXX_inXknowsX_barrier_sack", new List, ITraversal>> {(g,p) =>g.WithSack(1.0d, Operator.Sum).V(p["vid1"]).Local(__.Out("knows").Barrier(Barrier.NormSack)).In("knows").Barrier().Sack()}}, + {"g_V_sackXassignX_byXageX_sack", new List, ITraversal>> {(g,p) =>g.V().Sack(Operator.Assign).By("age").Sack()}}, + {"g_withSackXBigInteger_TEN_powX1000X_assignX_V_localXoutXknowsX_barrierXnormSackXX_inXknowsX_barrier_sack", new List, ITraversal>> {(g,p) =>g.WithSack(BigInteger.Parse("10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"), Operator.Assign).V().Local(__.Out("knows").Barrier(Barrier.NormSack)).In("knows").Barrier().Sack()}}, + {"g_withSackX2X_V_sackXdivX_byXconstantX4_0XX_sack", new List, ITraversal>> {(g,p) =>g.WithSack(2).V().Sack(Operator.Div).By(__.Constant(4.0d)).Sack()}}, + {"g_V_sackXassignX_byXageX_byXnameX_sack", new List, ITraversal>> {(g,p) =>g.V().Sack(Operator.Assign).By("age").By("name").Sack()}}, + {"g_V_sideEffectXidentityX", new List, ITraversal>> {(g,p) =>g.V().SideEffect(__.Identity())}}, + {"g_V_sideEffectXidentity_valuesXnameXX", new List, ITraversal>> {(g,p) =>g.V().SideEffect(__.Identity().Values("name"))}}, + {"g_V_sideEffectXpropertyXsingle_age_22X", new List, ITraversal>> {(g,p) =>g.AddV((string) "person").Property(Cardinality.Single, "age", 21), (g,p) =>g.V().SideEffect(__.Property(Cardinality.Single, "age", 22)), (g,p) =>g.V().Has("age", 21), (g,p) =>g.V().Has("age", 22)}}, + {"g_V_group_byXvaluesXnameX_sideEffectXconstantXzyxXX_substringX1XX_byXconstantX1X_sideEffectXconstantXxyzXXX", new List, ITraversal>> {(g,p) =>g.V().Group().By(__.Values("name").SideEffect(__.Constant("zyx")).Substring(0, 1)).By(__.Constant(1).SideEffect(__.Constant("xyz")))}}, + {"g_withSideEffectXx_setX_V_both_both_sideEffectXlocalXaggregateXxX_byXnameXX_capXxX_unfold", new List, ITraversal>> {(g,p) =>g.WithSideEffect("x", new HashSet { }).V().Both().Both().SideEffect(__.Local(__.Aggregate("x").By("name"))).Cap("x").Unfold()}}, + {"g_V_hasXageX_groupCountXaX_byXnameX_out_capXaX", new List, ITraversal>> {(g,p) =>g.V().Has("age").GroupCount("a").By("name").Out().Cap("a")}}, + {"g_V_groupXaX_byXageX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Group("a").By("age").Cap("a")}}, + {"g_V_groupXaX_byXnameX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Group("a").By("name").Cap("a")}}, + {"g_V_hasXlangX_groupXaX_byXlangX_byXnameX_out_capXaX", new List, ITraversal>> {(g,p) =>g.V().Has("lang").Group("a").By("lang").By("name").Out().Cap("a")}}, + {"g_V_repeatXout_groupXaX_byXnameX_byXcountX_timesX2X_capXaX", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Out().Group("a").By("name").By(__.Count())).Times(2).Cap("a")}}, + {"g_V_groupXaX_byXlabelX_byXoutE_weight_sumX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Group("a").By(T.Label).By(__.OutE().Values("weight").Sum()).Cap("a")}}, + {"g_V_repeatXbothXfollowedByXX_timesX2X_groupXaX_byXsongTypeX_byXcountX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.Both("followedBy")).Times(2).Group("a").By("songType").By(__.Count()).Cap("a")}}, + {"g_V_groupXaX_byXvaluesXnameX_substringX1XX_byXconstantX1XX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Group("a").By(__.Values("name").Substring(0, 1)).By(__.Constant(1)).Cap("a")}}, + {"g_V_hasLabelXsongX_groupXaX_byXnameX_byXproperties_groupCount_byXlabelXX_out_capXaX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("song").Group("a").By("name").By(__.Properties().GroupCount().By(T.Label)).Out().Cap("a")}}, + {"g_V_hasLabelXpersonX_asXpX_outXcreatedX_groupXaX_byXnameX_byXselectXpX_valuesXageX_sumX_capXaX", new List, ITraversal>> {(g,p) =>g.V().HasLabel("person").As("p").Out("created").Group("a").By("name").By(__.Select("p").Values("age").Sum()).Cap("a")}}, + {"g_V_groupXmX_byXnameX_byXinXknowsX_nameX_capXmX", new List, ITraversal>> {(g,p) =>g.V().Group("m").By("name").By(__.In("knows").Values("name")).Cap("m")}}, + {"g_V_groupXmX_byXlabelX_byXlabel_countX_capXmX", new List, ITraversal>> {(g,p) =>g.V().Group("m").By(__.Label()).By(__.Label().Count()).Cap("m")}}, + {"g_V_chooseXlabel_person__age_groupCountXaX__name_groupCountXbXX_capXa_bX_unfold", new List, ITraversal>> {(g,p) =>g.V().Choose(__.Has(T.Label, "person"), __.Values("age").GroupCount("a"), __.Values("name").GroupCount("b")).Cap("a", "b").Unfold()}}, + {"g_V_hasXperson_name_withinXvadas_peterXX_groupXaX_by_byXout_orderX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", P.Within("vadas", "peter")).Group("a").By().By(__.Out().Order()).Cap("a")}}, + {"g_V_hasXperson_name_withinXvadas_peterXX_groupXaX_by_byXout_order_countX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", P.Within("vadas", "peter")).Group("a").By().By(__.Out().Order().Count()).Cap("a")}}, + {"g_V_hasXperson_name_withinXvadas_peterXX_groupXaX_by_byXout_order_fold_countXlocalXX_capXaX", new List, ITraversal>> {(g,p) =>g.V().Has("person", "name", P.Within("vadas", "peter")).Group("a").By().By(__.Out().Order().Fold().Count(Scope.Local)).Cap("a")}}, + {"g_V_groupXaX_by_byXout_label_foldX_capXaX_selectXvaluesX_unfold_orderXlocalX", new List, ITraversal>> {(g,p) =>g.V().Group("a").By().By(__.Out().Label().Fold()).Cap("a").Select(Column.Values).Unfold().Order(Scope.Local)}}, + {"g_V_groupXaX_by_byXout_label_dedup_foldX_capXaX_selectXvaluesX_unfold_orderXlocalX", new List, ITraversal>> {(g,p) =>g.V().Group("a").By().By(__.Out().Label().Dedup().Fold()).Cap("a").Select(Column.Values).Unfold().Order(Scope.Local)}}, + {"g_V_groupXaX_by_byXout_label_limitX0X_foldX_capXaX_selectXvaluesX_unfold", new List, ITraversal>> {(g,p) =>g.V().Group("a").By().By(__.Out().Label().Limit(0).Fold()).Cap("a").Select(Column.Values).Unfold()}}, + {"g_V_groupXaX_by_byXout_label_limitX10X_foldX_capXaX_selectXvaluesX_unfold_orderXlocalX", new List, ITraversal>> {(g,p) =>g.V().Group("a").By().By(__.Out().Label().Limit(10).Fold()).Cap("a").Select(Column.Values).Unfold().Order(Scope.Local)}}, + {"g_V_groupXaX_by_byXout_label_tailX10X_foldX_capXaX_selectXvaluesX_unfold_orderXlocalX", new List, ITraversal>> {(g,p) =>g.V().Group("a").By().By(__.Out().Label().Tail(10).Fold()).Cap("a").Select(Column.Values).Unfold().Order(Scope.Local)}}, + {"g_VX1X_outEXknowsX_subgraphXsgX_name_capXsgX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE("knows").Subgraph("sg").Values("name").Cap("sg")}}, + {"g_V_repeatXbothEXcreatedX_subgraphXsgX_outVX_timesX5X_name_dedup_capXsgX", new List, ITraversal>> {(g,p) =>g.V().Repeat(__.BothE("created").Subgraph("sg").OutV()).Times(5).Values("name").Dedup().Cap("sg")}}, + {"g_V_outEXnoexistX_subgraphXsgXcapXsgX", new List, ITraversal>> {(g,p) =>g.V().OutE("noexist").Subgraph("sg").Cap("sg")}}, + {"g_E_hasXweight_0_5X_subgraphXaX_selectXaX", new List, ITraversal>> {(g,p) =>g.E().Has("weight", 0.4).Subgraph("a").Select("a")}}, + {"g_VX1X_out_out_tree_byXnameX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Out().Tree().By("name")}}, + {"g_VX1X_out_out_tree", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Out().Tree()}}, + {"g_V_out_tree_byXageX", new List, ITraversal>> {(g,p) =>g.V().Out().Tree().By("age")}}, + {"g_VX1X_out_out_treeXaX_byXnameX_both_both_capXaX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Out().Tree("a").By("name").Both().Both().Cap("a")}}, + {"g_VX1X_out_out_treeXaX_both_both_capXaX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Out().Tree("a").Both().Both().Cap("a")}}, + {"g_VX1X_out_out_tree_byXlabelX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Out().Tree().By(T.Label)}}, + {"g_VX1X_out_out_treeXaX_byXlabelX_both_both_capXaX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).Out().Out().Tree("a").By(T.Label).Both().Both().Cap("a")}}, + {"g_VX1X_out_out_out_tree", new List, ITraversal>> {(g,p) =>g.V().Out().Out().Out().Tree()}}, + {"g_VX1X_outE_inV_bothE_otherV_tree", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE().InV().BothE().OtherV().Tree()}}, + {"g_VX1X_outE_inV_bothE_otherV_tree_byXnameX_byXlabelX", new List, ITraversal>> {(g,p) =>g.V(p["vid1"]).OutE().InV().BothE().OtherV().Tree().By("name").By(T.Label)}}, + {"g_V_out_treeXaX_selectXaX_countXlocalX", new List, ITraversal>> {(g,p) =>g.V().Out().Tree("a").Select("a").Count(Scope.Local)}}, + {"g_V_out_order_byXnameX_localXtreeXaX_selectXaX_countXlocalXX", new List, ITraversal>> {(g,p) =>g.V().Out().Local(__.Tree("a").Select("a").Count(Scope.Local))}}, + {"g_io_writeXkryoX", new List, ITraversal>> {(g,p) =>g.Io("tinkerpop-modern-v3.kryo").Write()}}, + {"g_io_write_withXwriter_gryoX", new List, ITraversal>> {(g,p) =>g.Io("tinkerpop-modern-v3.kryo").With(IO.Writer, IO.Gryo).Write()}}, + {"g_io_writeXgraphsonX", new List, ITraversal>> {(g,p) =>g.Io("tinkerpop-modern-v3.json").Write()}}, + {"g_io_write_withXwriter_graphsonX", new List, ITraversal>> {(g,p) =>g.Io("tinkerpop-modern-v3.json").With(IO.Writer, IO.GraphSON).Write()}}, + {"g_io_writeXgraphmlX", new List, ITraversal>> {(g,p) =>g.Io("tinkerpop-modern.xml").Write()}}, + {"g_io_write_withXwriter_graphmlX", new List, ITraversal>> {(g,p) =>g.Io("tinkerpop-modern.xml").With(IO.Writer, IO.GraphML).Write()}}, + }; + + public static ITraversal UseTraversal(string scenarioName, GraphTraversalSource g, IDictionary parameters, IDictionary sideEffects) + { + List, ITraversal>> list = _translationsForTestRun[scenarioName]; + Func, ITraversal> f = list[0]; + list.RemoveAt(0); + ITraversal traversal = f.Invoke(g, parameters); + // Side effects need to be prepended as source steps (before traversal steps). + // Build them in a temporary GremlinLang and prepend to the traversal's gremlin string. + if (sideEffects.Count > 0) + { + var sideEffectLang = new GremlinLang(); + foreach (var sideEffect in sideEffects) + { + sideEffectLang.AddSource("withSideEffect", sideEffect.Key, sideEffect.Value); + } + traversal.GremlinLang.Gremlin = sideEffectLang.Gremlin + traversal.GremlinLang.Gremlin; + } + return traversal; + } + + public static ITraversal UseParameterizedTraversal(string scenarioName, GraphTraversalSource g, IDictionary parameters, IDictionary sideEffects) + { + List, ITraversal>> list = _parameterizedTranslationsForTestRun[scenarioName]; + Func, ITraversal> f = list[0]; + list.RemoveAt(0); + ITraversal traversal = f.Invoke(g, parameters); if (sideEffects.Count > 0) { var sideEffectLang = new GremlinLang(); diff --git a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Process/Traversal/GremlinLangGeneration/GremlinLangGenerationTests.cs b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Process/Traversal/GremlinLangGeneration/GremlinLangGenerationTests.cs index e1c01a9ef29..7107f33ef42 100644 --- a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Process/Traversal/GremlinLangGeneration/GremlinLangGenerationTests.cs +++ b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Process/Traversal/GremlinLangGeneration/GremlinLangGenerationTests.cs @@ -88,7 +88,7 @@ public void AnonymousTraversal_VXnullX() [Fact] public void AnonymousTraversal_OutXnullX() { - Assert.Throws(() => __.Out(null!)); + Assert.Throws(() => __.Out((string?[])null!)); } } } diff --git a/gremlin-dotnet/test/Gremlin.Net.UnitTest/Process/Traversal/GremlinLangTests.cs b/gremlin-dotnet/test/Gremlin.Net.UnitTest/Process/Traversal/GremlinLangTests.cs index b4eeade1680..66a62455ac7 100644 --- a/gremlin-dotnet/test/Gremlin.Net.UnitTest/Process/Traversal/GremlinLangTests.cs +++ b/gremlin-dotnet/test/Gremlin.Net.UnitTest/Process/Traversal/GremlinLangTests.cs @@ -953,27 +953,36 @@ public void GValue_null_name_throws_ArgumentNullException() } [Fact] - public void GValue_special_char_name_throws_ArgumentException() + public void GValue_special_char_name_accepted() { - Assert.Throws(() => new GValue("\"", 1)); + var gval = new GValue("\"", 1); + Assert.Equal("\"", gval.Name); } [Fact] - public void GValue_numeric_name_throws_ArgumentException() + public void GValue_numeric_name_accepted() { - Assert.Throws(() => new GValue("1", 1)); + var gval = new GValue("1", 1); + Assert.Equal("1", gval.Name); } [Fact] - public void GValue_invalid_identifier_name_throws_ArgumentException() + public void GValue_digit_start_name_accepted() { - Assert.Throws(() => new GValue("1a", 1)); + var gval = new GValue("1a", 1); + Assert.Equal("1a", gval.Name); } [Fact] - public void GValue_underscore_name_throws_ArgumentException() + public void GValue_underscore_name_accepted() { - Assert.Throws(() => new GValue("_1", 1)); + Assert.Equal("_1", new GValue("_1", 1).Name); + } + + [Fact] + public void GValue_nested_throws_ArgumentException() + { + Assert.Throws(() => new GValue("x", new GValue("y", 1))); } [Fact] @@ -993,6 +1002,83 @@ public void GValue_reuse_same_instance() Assert.True(result.Parameters.ContainsKey("ids")); } + [Fact] + public void GValue_mid_underscore_name_accepted() + { + var gval = new GValue("a_b", 42); + var result = _g.Inject((object)gval).GremlinLang; + Assert.Equal("g.inject(a_b)", result.GetGremlin()); + } + + [Fact] + public void GValue_empty_name_accepted() + { + var gval = new GValue("", 1); + Assert.Equal("", gval.Name); + } + + [Fact] + public void GValue_mid_dollar_name_accepted() + { + var gval = new GValue("a$b", 1); + Assert.Equal("a$b", gval.Name); + } + + [Fact] + public void GValue_unicode_letter_name_accepted() + { + var gval = new GValue("caf\u00e9", 7); + var result = _g.Inject((object)gval).GremlinLang; + Assert.Equal("g.inject(caf\u00e9)", result.GetGremlin()); + } + + [Fact] + public void GValue_construction_and_accessors() + { + var gval = new GValue("myName", "hello"); + Assert.Equal("myName", gval.Name); + Assert.Equal("hello", gval.Value); + Assert.Equal("hello", gval.ObjectValue); + } + + [Fact] + public void GValue_IsNull_true_when_null_value() + { + var gval = new GValue("x", null); + Assert.True(gval.IsNull); + } + + [Fact] + public void GValue_IsNull_false_when_non_null_value() + { + var gval = new GValue("x", 5); + Assert.False(gval.IsNull); + } + + [Fact] + public void GValue_ToString_format() + { + var gval = new GValue("myVar", 42); + Assert.Equal("myVar=42", gval.ToString()); + } + + [Fact] + public void GValue_duplicate_name_equal_list_values_allowed() + { + var gval1 = new GValue>("ids", new List { 1, 2, 3 }); + var gval2 = new GValue>("ids", new List { 1, 2, 3 }); + var result = _g.Inject((object)gval1).V(gval2).GremlinLang; + Assert.Equal("g.inject(ids).V(ids)", result.GetGremlin()); + } + + [Fact] + public void GValue_duplicate_name_different_list_values_throws() + { + var gval1 = new GValue>("ids", new List { 1, 2, 3 }); + var gval2 = new GValue>("ids", new List { 4, 5, 6 }); + Assert.Throws(() => _g.Inject((object)gval1).V(gval2)); + } + // --- Cardinality with Map Tests --- [Fact] @@ -1088,5 +1174,49 @@ public void ConvertParametersToString_escaped_string_value() var result = GremlinLang.ConvertParametersToString(parameters); Assert.Contains("\"name\":", result); } + + [Fact] + public void GValue_duplicate_name_equal_dictionary_values_allowed() + { + var gval1 = new GValue>("m", new Dictionary { { "a", 1 }, { "b", 2 } }); + var gval2 = new GValue>("m", new Dictionary { { "a", 1 }, { "b", 2 } }); + var result = _g.Inject((object)gval1).V(gval2).GremlinLang; + Assert.Equal("g.inject(m).V(m)", result.GetGremlin()); + } + + [Fact] + public void GValue_duplicate_name_equal_nested_collection_values_allowed() + { + var gval1 = new GValue>>("n", new List> { new List { 1, 2 }, new List { 3, 4 } }); + var gval2 = new GValue>>("n", new List> { new List { 1, 2 }, new List { 3, 4 } }); + var result = _g.Inject((object)gval1).V(gval2).GremlinLang; + Assert.Equal("g.inject(n).V(n)", result.GetGremlin()); + } + + [Fact] + public void GValue_underscore_start_name_accepted_in_traversal() + { + var gval = new GValue("_1", new[] { 1, 2, 3 }); + var result = _g.V(gval).GremlinLang; + Assert.Equal("g.V(_1)", result.GetGremlin()); + Assert.True(result.Parameters.ContainsKey("_1")); + } + + [Fact] + public void GValue_dollar_sign_name_accepted_in_traversal() + { + var gval = new GValue("a$b", 42); + var result = _g.Inject((object)gval).GremlinLang; + Assert.Equal("g.inject(a$b)", result.GetGremlin()); + Assert.True(result.Parameters.ContainsKey("a$b")); + } + + [Fact] + public void GValue_invalid_identifier_throws_in_traversal() + { + var gval = new GValue("1a", 1); + var ex = Assert.Throws(() => _g.V(gval).GremlinLang.GetGremlin()); + Assert.Contains("Invalid parameter name", ex.Message); + } } } diff --git a/gremlin-go/docker-compose.yml b/gremlin-go/docker-compose.yml index 5df15618269..1f32498cb6a 100644 --- a/gremlin-go/docker-compose.yml +++ b/gremlin-go/docker-compose.yml @@ -73,6 +73,7 @@ services: command: > bash -c "go install github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest && go test -v -json ./... -race -covermode=atomic -coverprofile=\"coverage.out\" -coverpkg=./... | gotestfmt + && PARAMETERIZE=true go test -v ./driver/cucumber/... -run TestCucumberFeatures && echo 'Running examples...' && go run examples/basic_gremlin.go && go run examples/connections.go diff --git a/gremlin-go/driver/cucumber/cucumberSteps_test.go b/gremlin-go/driver/cucumber/cucumberSteps_test.go index 495d56fd408..35d1468874c 100644 --- a/gremlin-go/driver/cucumber/cucumberSteps_test.go +++ b/gremlin-go/driver/cucumber/cucumberSteps_test.go @@ -46,6 +46,7 @@ type tinkerPopGraph struct { } var parsers map[*regexp.Regexp]func(string, string) interface{} +var parameterize = getEnvOrDefaultBool("PARAMETERIZE", false) func init() { parsers = map[*regexp.Regexp]func(string, string) interface{}{ @@ -998,7 +999,12 @@ func (tg *tinkerPopGraph) usingTheParameterDefined(name string, params string) e if tg.graphName == "empty" { tg.reloadEmptyData() } - tg.parameters[name] = parseValue(strings.Replace(params, "\\\"", "\"", -1), tg.graphName) + val := parseValue(strings.Replace(params, "\\\"", "\"", -1), tg.graphName) + if parameterize { + tg.parameters[name] = gremlingo.GValue{Name: name, Value: val} + } else { + tg.parameters[name] = val + } return nil } diff --git a/gremlin-go/driver/gValue.go b/gremlin-go/driver/gValue.go index f69ec2599c8..3fece49b1fa 100644 --- a/gremlin-go/driver/gValue.go +++ b/gremlin-go/driver/gValue.go @@ -21,35 +21,23 @@ package gremlingo import ( "fmt" - "strings" ) -// GValue is a variable or literal value that is used in a Traversal. It is composed of a key-value pair where the key -// is the name given to the variable and the value is the object that the variable resolved to. +// GValue is a variable or literal value that is used in a Traversal. It is composed of a key-value +// pair where Name is the name given to the variable and Value is the object that the variable +// resolves to. Construct one directly with a struct literal, e.g. GValue{Name: "x", Value: 1}. +// A GValue's Value must not itself be a GValue (GValues cannot be nested). type GValue struct { - name string - value interface{} -} - -// NewGValue creates a new GValue to be used in traversals. The GValue name cannot begin with "_". -func NewGValue(name string, value interface{}) GValue { - if strings.HasPrefix(name, "_") { - panic(fmt.Sprintf("invalid GValue name '%v'. Should not start with _.", name)) - } - return GValue{name, value} -} - -// Name returns the name of the GValue. -func (gv GValue) Name() string { - return gv.name + Name string + Value interface{} } // IsNil determines if the value held is of a nil value. func (gv GValue) IsNil() bool { - return gv.value == nil + return gv.Value == nil } -// Value returns the value held by the GValue. -func (gv GValue) Value() interface{} { - return gv.value +// String returns the string representation of the GValue in the format "name=value". +func (gv GValue) String() string { + return fmt.Sprintf("%v=%v", gv.Name, gv.Value) } diff --git a/gremlin-go/driver/gValue_test.go b/gremlin-go/driver/gValue_test.go index 45b365262f2..bd53b0beaba 100644 --- a/gremlin-go/driver/gValue_test.go +++ b/gremlin-go/driver/gValue_test.go @@ -27,16 +27,16 @@ import ( func TestGValue(t *testing.T) { t.Run("test simple gValue", func(t *testing.T) { - gVal := NewGValue("intVal", 2) - assert.Equal(t, "intVal", gVal.Name()) - assert.Equal(t, 2, gVal.Value()) + gVal := GValue{Name: "intVal", Value: 2} + assert.Equal(t, "intVal", gVal.Name) + assert.Equal(t, 2, gVal.Value) assert.False(t, gVal.IsNil()) }) t.Run("test gValue allow parameter reuse with arrays", func(t *testing.T) { g := NewGraphTraversalSource(nil, nil) val := [3]int{1, 2, 3} - param := NewGValue("ids", val) + param := GValue{Name: "ids", Value: val} gl := g.Inject(param).V(param).GremlinLang assert.Equal(t, "g.inject(ids).V(ids)", gl.GetGremlin()) assert.Equal(t, val, gl.parameters["ids"]) @@ -45,7 +45,7 @@ func TestGValue(t *testing.T) { t.Run("test gValue allow parameter reuse with slices", func(t *testing.T) { g := NewGraphTraversalSource(nil, nil) val := []int{1, 2, 3} - param := NewGValue("ids", val) + param := GValue{Name: "ids", Value: val} gl := g.Inject(param).V(param).GremlinLang assert.Equal(t, "g.inject(ids).V(ids)", gl.GetGremlin()) assert.Equal(t, val, gl.parameters["ids"]) @@ -54,7 +54,7 @@ func TestGValue(t *testing.T) { t.Run("test gValue allow parameter reuse with maps", func(t *testing.T) { g := NewGraphTraversalSource(nil, nil) val := map[string]int{"foo": 1, "bar": 2} - param := NewGValue("ids", val) + param := GValue{Name: "ids", Value: val} gl := g.Inject(param).V(param).GremlinLang assert.Equal(t, "g.inject(ids).V(ids)", gl.GetGremlin()) assert.Equal(t, val, gl.parameters["ids"]) @@ -62,26 +62,57 @@ func TestGValue(t *testing.T) { t.Run("test gValue name not duplicated", func(t *testing.T) { g := NewGraphTraversalSource(nil, nil) - param1 := NewGValue("ids", [2]int{1, 2}) - param2 := NewGValue("ids", [2]int{2, 3}) + param1 := GValue{Name: "ids", Value: [2]int{1, 2}} + param2 := GValue{Name: "ids", Value: [2]int{2, 3}} assert.Panics(t, func() { g.Inject(param1).V(param2) }, "parameter with name ids already exists.") }) - t.Run("test invalid name that starts with _", func(t *testing.T) { + t.Run("test IsNil returns true for nil value", func(t *testing.T) { + gv := GValue{Name: "x", Value: nil} + assert.True(t, gv.IsNil()) + }) + + t.Run("test String representation", func(t *testing.T) { + gv := GValue{Name: "x", Value: 1} + assert.Equal(t, "x=1", gv.String()) + }) + + t.Run("test distinct but equal slices allowed under same name", func(t *testing.T) { + g := NewGraphTraversalSource(nil, nil) + param1 := GValue{Name: "ids", Value: []int{1, 2, 3}} + param2 := GValue{Name: "ids", Value: []int{1, 2, 3}} + assert.NotPanics(t, func() { g.Inject(param1).V(param2) }) + }) + + t.Run("test gValue nested in child traversal merges bindings", func(t *testing.T) { + g := NewGraphTraversalSource(nil, nil) + gl := g.V().Where(T__.Is(GValue{Name: "xx1", Value: 1})).GremlinLang + assert.Equal(t, "g.V().where(__.is(xx1))", gl.GetGremlin()) + assert.Equal(t, 1, gl.parameters["xx1"]) + }) + + t.Run("test gValue nested across multiple child traversals merges bindings", func(t *testing.T) { + g := NewGraphTraversalSource(nil, nil) + gl := g.V().Union(T__.V(GValue{Name: "vid1", Value: 1}), T__.V(GValue{Name: "vid4", Value: 4})).GremlinLang + assert.Equal(t, "g.V().union(__.V(vid1),__.V(vid4))", gl.GetGremlin()) + assert.Equal(t, 1, gl.parameters["vid1"]) + assert.Equal(t, 4, gl.parameters["vid4"]) + }) + + t.Run("test gValue underscore name works", func(t *testing.T) { g := NewGraphTraversalSource(nil, nil) - assert.Panics(t, func() { g.Inject(NewGValue("_ids", [2]int{1, 2})) }, - "invalid GValue name _1. Should not start with _.") + gl := g.V(GValue{Name: "_1", Value: []int{1, 2, 3}}).GremlinLang + assert.Equal(t, "g.V(_1)", gl.GetGremlin()) }) - t.Run("test name is valid identifier", func(t *testing.T) { + t.Run("test gValue dollar sign name works", func(t *testing.T) { g := NewGraphTraversalSource(nil, nil) - assert.Panics(t, func() { g.Inject(NewGValue("1a", [2]int{1, 2})) }, - "invalid parameter name '1a'") + gl := g.V(GValue{Name: "a$b", Value: 1}).GremlinLang + assert.Equal(t, "g.V(a$b)", gl.GetGremlin()) }) - t.Run("test name is not a number", func(t *testing.T) { + t.Run("test gValue invalid identifier panics", func(t *testing.T) { g := NewGraphTraversalSource(nil, nil) - assert.Panics(t, func() { g.Inject(NewGValue("1", [2]int{1, 2})) }, - "invalid parameter name '1'") + assert.Panics(t, func() { g.V(GValue{Name: "1a", Value: 1}) }) }) } diff --git a/gremlin-go/driver/gremlinlang.go b/gremlin-go/driver/gremlinlang.go index 2625cb10e6b..abe2675c704 100644 --- a/gremlin-go/driver/gremlinlang.go +++ b/gremlin-go/driver/gremlinlang.go @@ -22,13 +22,13 @@ package gremlingo import ( "encoding/base64" "fmt" - "go/token" "math" "math/big" "reflect" "strconv" "strings" "time" + "unicode" "github.com/google/uuid" ) @@ -132,6 +132,22 @@ func escapeString(s string) string { } +func isValidParameterName(name string) bool { + runes := []rune(name) + if len(runes) == 0 { + return false + } + if !unicode.IsLetter(runes[0]) && runes[0] != '_' && runes[0] != '$' { + return false + } + for _, r := range runes[1:] { + if !unicode.IsLetter(r) && !unicode.IsDigit(r) && r != '_' && r != '$' { + return false + } + } + return true +} + func (gl *GremlinLang) argAsString(arg interface{}) (string, error) { if arg == nil { return "null", nil @@ -245,22 +261,17 @@ func (gl *GremlinLang) argAsString(arg interface{}) (string, error) { } return v.GetGremlin("__"), nil case GValue: - key := v.Name() - if !token.IsIdentifier(key) { - panic(fmt.Sprintf("invalid parameter name '%v'.", key)) + key := v.Name + if !isValidParameterName(key) { + panic(fmt.Sprintf("invalid parameter name [%v]", key)) } - value := v.Value() + value := v.Value if val, ok := gl.parameters[key]; ok { - if reflect.TypeOf(val).Kind() == reflect.Slice || reflect.TypeOf(value).Kind() == reflect.Slice || - reflect.TypeOf(val).Kind() == reflect.Map || reflect.TypeOf(value).Kind() == reflect.Map { - if !reflect.DeepEqual(val, value) { - panic(fmt.Sprintf("parameter with name '%v' already exists.", key)) - } - } else if val != value { + if !reflect.DeepEqual(val, value) { panic(fmt.Sprintf("parameter with name '%v' already exists.", key)) } } else { - gl.parameters[key] = v.Value() + gl.parameters[key] = v.Value } return key, nil case uuid.UUID: diff --git a/gremlin-js/gremlin-javascript/lib/index.ts b/gremlin-js/gremlin-javascript/lib/index.ts index f79c31e948b..b7fa87ea8e3 100644 --- a/gremlin-js/gremlin-javascript/lib/index.ts +++ b/gremlin-js/gremlin-javascript/lib/index.ts @@ -27,6 +27,7 @@ import * as strategiesModule from './process/traversal-strategy.js'; import * as graph from './structure/graph.js'; import * as rc from './driver/remote-connection.js'; import GremlinLang from './process/gremlin-lang.js'; +import { GValue } from './process/gvalue.js'; import * as utils from './utils.js'; import DriverRemoteConnection from './driver/driver-remote-connection.js'; import ResponseError from './driver/response-error.js'; @@ -74,6 +75,7 @@ export const process = { GraphTraversalSource: gt.GraphTraversalSource, statics: gt.statics, GremlinLang, + GValue, traversal: AnonymousTraversalSource.traversal, AnonymousTraversalSource, withOptions: t.withOptions, diff --git a/gremlin-js/gremlin-javascript/lib/process/gremlin-lang.ts b/gremlin-js/gremlin-javascript/lib/process/gremlin-lang.ts index 2a07ad8dec4..af9c00e6d7c 100644 --- a/gremlin-js/gremlin-javascript/lib/process/gremlin-lang.ts +++ b/gremlin-js/gremlin-javascript/lib/process/gremlin-lang.ts @@ -21,8 +21,12 @@ import { P, TextP, EnumValue } from './traversal.js'; import { OptionsStrategy, TraversalStrategy } from './traversal-strategy.js'; import { Long, Int, Float, Double, Short, Byte, INT32_MIN, INT32_MAX } from '../utils.js'; import { Vertex } from '../structure/graph.js'; +import { GValue } from './gvalue.js'; +import { isDeepStrictEqual } from 'node:util'; import { Buffer } from 'buffer'; +const PARAM_NAME_PATTERN = /^[\p{L}_$][\p{L}\p{Nd}_$]*$/u; + export default class GremlinLang { private gremlin: string = ''; private optionsStrategies: OptionsStrategy[] = []; @@ -110,6 +114,20 @@ export default class GremlinLang { const escaped = JSON.stringify(arg).slice(1, -1).replace(/'/g, "\\'"); return `'${escaped}'`; } + if (arg instanceof GValue) { + const key = arg.name; + if (!PARAM_NAME_PATTERN.test(key)) { + throw new Error(`Invalid parameter name [${key}].`); + } + if (this.parameters.has(key)) { + if (!isDeepStrictEqual(this.parameters.get(key), arg.value)) { + throw new Error(`Parameter with name ${key} already exists.`); + } + } else { + this.parameters.set(key, arg.value); + } + return key; + } if (arg instanceof P || arg instanceof TextP) { return this._predicateAsString(arg); } @@ -132,6 +150,9 @@ export default class GremlinLang { return this._argAsString(arg.id); } if (arg instanceof GremlinLang) { + // Merge the child's parameters so GValue bindings nested inside a child + // traversal are still sent to the server alongside the rendered query. + arg.parameters.forEach((v, k) => this.parameters.set(k, v)); return arg.getGremlin('__'); } if (typeof arg.getGremlinLang === 'function') { @@ -139,7 +160,11 @@ export default class GremlinLang { if (arg.graph != null) { throw new Error('Child traversal must be anonymous - use __ not g'); } - return arg.getGremlinLang().getGremlin('__'); + const childLang = arg.getGremlinLang(); + // Merge the child's parameters so GValue bindings nested inside a child + // traversal are still sent to the server alongside the rendered query. + childLang.parameters.forEach((v: any, k: string) => this.parameters.set(k, v)); + return childLang.getGremlin('__'); } if (arg instanceof Uint8Array) { return `Binary("${Buffer.from(arg.buffer, arg.byteOffset, arg.byteLength).toString('base64')}")`; diff --git a/gremlin-js/gremlin-javascript/lib/process/gvalue.ts b/gremlin-js/gremlin-javascript/lib/process/gvalue.ts new file mode 100644 index 00000000000..b7e9041c3fa --- /dev/null +++ b/gremlin-js/gremlin-javascript/lib/process/gvalue.ts @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +export class GValue { + readonly name: string; + readonly value: T; + + constructor(name: string, value: T) { + if (value instanceof GValue) { + throw new Error('GValues cannot be nested'); + } + if (name == null) { + throw new Error('GValue name cannot be null.'); + } + this.name = name; + this.value = value; + } + + isNull(): boolean { + return this.value == null; + } + + toString(): string { + return `${this.name}=${this.value}`; + } +} diff --git a/gremlin-js/gremlin-javascript/package.json b/gremlin-js/gremlin-javascript/package.json index 5ec1746c926..6de05ae6831 100644 --- a/gremlin-js/gremlin-javascript/package.json +++ b/gremlin-js/gremlin-javascript/package.json @@ -91,10 +91,12 @@ "integration-test": "npm run integration-test-graphbinary", "integration-test-graphbinary": "cross-env TS_NODE_PROJECT='tsconfig.test.json' CLIENT_MIMETYPE='application/vnd.graphbinary-v4.0' mocha test/integration -t 5000", "TODO": "# test other mime types like graphbinary stringd", - "features": "npm run features-graphbinary", + "features": "npm run features-graphbinary && npm run features-graphbinary-params", "features-graphbinary": "cross-env NODE_OPTIONS='--loader ts-node/esm' TS_NODE_PROJECT='tsconfig.test.json' CLIENT_MIMETYPE='application/vnd.graphbinary-v4.0' cucumber-js --tags \"not @DataBigDecimal and not @DataBigInt and not @DataUUID and not @DataLong and not @StepWrite\" --import test/cucumber ../../gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/", - "features-docker": "npm run features-graphbinary-docker", - "features-graphbinary-docker": "cross-env NODE_OPTIONS='--loader ts-node/esm' TS_NODE_PROJECT='tsconfig.test.json' CLIENT_MIMETYPE='application/vnd.graphbinary-v4.0' cucumber-js --tags \"not @DataBigDecimal and not @DataBigInt and not @DataUUID and not @DataLong and not @StepWrite\" --import test/cucumber ../gremlin-test/", + "features-graphbinary-params": "cross-env NODE_OPTIONS='--loader ts-node/esm' TS_NODE_PROJECT='tsconfig.test.json' CLIENT_MIMETYPE='application/vnd.graphbinary-v4.0' PARAMETERIZE=true cucumber-js --tags \"not @DataBigDecimal and not @DataBigInt and not @DataUUID and not @DataLong and not @StepWrite\" --import test/cucumber ../../gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/", + "features-docker": "npm run features-graphbinary-docker && npm run features-graphbinary-params-docker", + "features-graphbinary-docker": "cross-env NODE_OPTIONS='--loader ts-node/esm' TS_NODE_PROJECT='tsconfig.test.json' CLIENT_MIMETYPE='application/vnd.graphbinary-v4.0' cucumber-js --tags \"not @DataBigDecimal and not @DataBigInt and not @DataUUID and not @DataLong and not @StepWrite\" --import test/cucumber /gremlin-test/", + "features-graphbinary-params-docker": "cross-env NODE_OPTIONS='--loader ts-node/esm' TS_NODE_PROJECT='tsconfig.test.json' CLIENT_MIMETYPE='application/vnd.graphbinary-v4.0' PARAMETERIZE=true cucumber-js --tags \"not @DataBigDecimal and not @DataBigInt and not @DataUUID and not @DataLong and not @StepWrite\" --import test/cucumber /gremlin-test/", "lint": "eslint --ext .js .", "doc": "typedoc --out doc --readme README.md --entryPointStrategy expand --entryPoints 'lib/**/*.ts' --tsconfig tsconfig.json --exclude 'lib/language/grammar/**'" }, diff --git a/gremlin-js/gremlin-javascript/test/cucumber/feature-steps.js b/gremlin-js/gremlin-javascript/test/cucumber/feature-steps.js index bb956a2538d..7982d31c3dd 100644 --- a/gremlin-js/gremlin-javascript/test/cucumber/feature-steps.js +++ b/gremlin-js/gremlin-javascript/test/cucumber/feature-steps.js @@ -33,8 +33,10 @@ import { Path, Vertex, Edge, Property, Graph } from '../../lib/structure/graph.j import { statics } from '../../lib/process/graph-traversal.js'; import { t, P, direction, merge, barrier, cardinality, column, order, TextP, IO, pick, pop, scope, operator, withOptions } from '../../lib/process/traversal.js'; import { toLong } from '../../lib/utils.js'; +import { GValue } from '../../lib/process/gvalue.js'; import anon from '../../lib/process/anonymous-traversal.js'; const __ = statics; +const parameterize = process.env.PARAMETERIZE === 'true'; import { deepMembersById } from './element-comparison.js'; import { Buffer } from 'buffer'; import GremlinLang from "../../lib/process/gremlin-lang.js"; @@ -135,6 +137,11 @@ Given('an unsupported test', () => {}); Given('the traversal of', function (traversalText) { const p = Object.assign({}, this.parameters); + if (parameterize) { + for (const k of Object.keys(p)) { + p[k] = new GValue(k, p[k]); + } + } p.g = this.g; this.traversal = gremlin[this.scenario].shift()(p); const sideEffectLang = new GremlinLang(); diff --git a/gremlin-js/gremlin-javascript/test/unit/exports-test.js b/gremlin-js/gremlin-javascript/test/unit/exports-test.js index f009c7074d6..24cdb3d7f14 100644 --- a/gremlin-js/gremlin-javascript/test/unit/exports-test.js +++ b/gremlin-js/gremlin-javascript/test/unit/exports-test.js @@ -29,6 +29,7 @@ describe('API', function () { assert.ok(glvModule); assert.ok(glvModule.process); assert.strictEqual(typeof glvModule.process.GremlinLang, 'function'); + assert.strictEqual(typeof glvModule.process.GValue, 'function'); assert.strictEqual(typeof glvModule.process.EnumValue, 'function'); assert.strictEqual(typeof glvModule.process.P, 'function'); assert.strictEqual(typeof glvModule.process.Traversal, 'function'); diff --git a/gremlin-js/gremlin-javascript/test/unit/gremlin-lang-test.js b/gremlin-js/gremlin-javascript/test/unit/gremlin-lang-test.js index a8c4e9add02..1d2c9eb9a95 100644 --- a/gremlin-js/gremlin-javascript/test/unit/gremlin-lang-test.js +++ b/gremlin-js/gremlin-javascript/test/unit/gremlin-lang-test.js @@ -29,6 +29,7 @@ import { Graph, Vertex } from '../../lib/structure/graph.js'; import { TraversalStrategies } from '../../lib/process/traversal-strategy.js'; import { Long, toFloat, toDouble, toShort, toByte, toInt, toLong } from '../../lib/utils.js'; import GremlinLang from '../../lib/process/gremlin-lang.js'; +import { GValue } from '../../lib/process/gvalue.js'; const g = new GraphTraversalSource(new Graph(), new TraversalStrategies()); @@ -626,4 +627,110 @@ describe('GremlinLang', function () { assert.ok(result.includes("'name':'marko'")); }); }); -}); \ No newline at end of file + + describe('GValue', function () { + it('should construct with name and value accessors', function () { + const gv = new GValue('myName', 42); + assert.strictEqual(gv.name, 'myName'); + assert.strictEqual(gv.value, 42); + }); + + it('should return true for isNull() with null value', function () { + assert.strictEqual(new GValue('x', null).isNull(), true); + }); + + it('should return true for isNull() with undefined value', function () { + assert.strictEqual(new GValue('x', undefined).isNull(), true); + }); + + it('should return false for isNull() with non-null value', function () { + assert.strictEqual(new GValue('x', 0).isNull(), false); + }); + + it('should accept name starting with underscore', function () { + const gv = new GValue('_x', 1); + assert.strictEqual(gv.name, '_x'); + }); + + it('should accept name with $ character', function () { + const gv = new GValue('$x', 1); + assert.strictEqual(gv.name, '$x'); + }); + + it('should accept name with mid-string underscore', function () { + const gv = new GValue('a_b', 1); + assert.strictEqual(gv.name, 'a_b'); + }); + + it('should accept Unicode letter name', function () { + const gv = new GValue('café', 1); + assert.strictEqual(gv.name, 'café'); + }); + + it('should accept language keyword as name', function () { + const gv = new GValue('for', 1); + assert.strictEqual(gv.name, 'for'); + }); + + it('should reject nested GValue', function () { + assert.throws(() => new GValue('x', new GValue('y', 1)), /GValues cannot be nested/); + }); + + it('should return name=value from toString()', function () { + const gv = new GValue('ids', 'hello'); + assert.strictEqual(gv.toString(), 'ids=hello'); + }); + + it('should render name in gremlin string and store value in parameters', function () { + const traversal = g.V(new GValue('ids', [1, 2, 3])); + const gl = traversal.getGremlinLang(); + assert.strictEqual(gl.getGremlin(), 'g.V(ids)'); + assert.deepStrictEqual(gl.getParameters().get('ids'), [1, 2, 3]); + }); + + it('should throw when duplicate name has different value', function () { + assert.throws(() => { + g.V(new GValue('x', 1)).has('name', new GValue('x', 2)); + }, /Parameter with name x already exists/); + }); + + it('should allow reuse of same name with equal value', function () { + const traversal = g.V(new GValue('ids', [1, 2, 3])).has('name', new GValue('ids', [1, 2, 3])); + const gl = traversal.getGremlinLang(); + assert.strictEqual(gl.getGremlin(), "g.V(ids).has('name',ids)"); + assert.deepStrictEqual(gl.getParameters().get('ids'), [1, 2, 3]); + }); + + it('should merge bindings from a GValue nested in a child traversal', function () { + const traversal = g.V().where(__.is(new GValue('xx1', 1))); + const gl = traversal.getGremlinLang(); + assert.strictEqual(gl.getGremlin(), 'g.V().where(__.is(xx1))'); + assert.deepStrictEqual(gl.getParameters().get('xx1'), 1); + }); + + it('should merge bindings from GValues nested across multiple child traversals', function () { + const traversal = g.union(__.V(new GValue('vid1', 1)), __.V(new GValue('vid4', 4))).values('name'); + const gl = traversal.getGremlinLang(); + assert.strictEqual(gl.getGremlin(), "g.union(__.V(vid1),__.V(vid4)).values('name')"); + assert.deepStrictEqual(gl.getParameters().get('vid1'), 1); + assert.deepStrictEqual(gl.getParameters().get('vid4'), 4); + }); + + it('should reject null name', function () { + assert.throws(() => new GValue(null, 'v'), /GValue name cannot be null/); + }); + + it('should validate name starting with underscore in traversal', function () { + const traversal = g.V(new GValue('_1', [1, 2, 3])); + const gl = traversal.getGremlinLang(); + assert.strictEqual(gl.getGremlin(), 'g.V(_1)'); + assert.deepStrictEqual(gl.getParameters().get('_1'), [1, 2, 3]); + }); + + it('should throw for invalid identifier name when used in traversal', function () { + assert.throws(() => { + g.V(new GValue('1a', 1)); + }, /Invalid parameter name/); + }); + }); +}); diff --git a/gremlin-python/src/main/python/gremlin_python/process/traversal.py b/gremlin-python/src/main/python/gremlin_python/process/traversal.py index de2ce44f2eb..1efa3284579 100644 --- a/gremlin-python/src/main/python/gremlin_python/process/traversal.py +++ b/gremlin-python/src/main/python/gremlin_python/process/traversal.py @@ -19,6 +19,7 @@ import copy import math +import re import threading import uuid import warnings @@ -917,9 +918,8 @@ def _arg_as_string(self, arg): if isinstance(arg, GValue): key = arg.get_name() - - if not key.isidentifier(): - raise Exception(f'invalid parameter name {key}.') + if not re.fullmatch(r'(?:[^\W\d]|\$)(?:\w|\$)*', key): + raise Exception(f'Invalid parameter name [{key}].') if key in self.parameters: if self.parameters[key] != arg.value: @@ -1145,10 +1145,10 @@ def __repr__(self): class GValue: def __init__(self, name, value): + if isinstance(value, GValue): + raise Exception('GValues cannot be nested') if name is None: - raise Exception("The parameter name cannot be None.") - if name.startswith('_'): - raise Exception(f'invalid GValue name {name}. Should not start with _.') + raise Exception('GValue name cannot be null.') self.name = name self.value = value @@ -1161,6 +1161,12 @@ def is_null(self): def get(self): return self.value + def __repr__(self): + return f'{self.name}={self.value}' + + def __str__(self): + return f'{self.name}={self.value}' + class CardinalityValue(GremlinLang): def __init__(self, cardinality, val): diff --git a/gremlin-python/src/main/python/tests/integration/driver/test_driver_remote_connection.py b/gremlin-python/src/main/python/tests/integration/driver/test_driver_remote_connection.py index 604190b0c65..2891851148d 100644 --- a/gremlin-python/src/main/python/tests/integration/driver/test_driver_remote_connection.py +++ b/gremlin-python/src/main/python/tests/integration/driver/test_driver_remote_connection.py @@ -52,7 +52,7 @@ def test_extract_request_options(self, remote_connection): 'bulkResults': True} assert 6 == t.to_list()[0] - @pytest.mark.skip(reason="investigate why 'ids' parameter name fails to parse in gremlin-lang") + @pytest.mark.skip(reason="TINKERPOP-3126: g.V() with a variable/parameter argument fails to parse in gremlin-lang") def test_extract_request_options_with_params(self, remote_connection): g = traversal().with_(remote_connection) t = g.with_("evaluationTimeout", @@ -62,7 +62,7 @@ def test_extract_request_options_with_params(self, remote_connection): 'evaluationTimeout': 1000, 'userAgent': 'test', 'bulkResults': True, - 'params': {'ids': [1, 2, 3]}} + 'bindings': "['ids':[1,2,3]]"} assert 3 == t.to_list()[0] def test_traversals(self, remote_connection): diff --git a/gremlin-python/src/main/python/tests/unit/process/test_gremlin_lang.py b/gremlin-python/src/main/python/tests/unit/process/test_gremlin_lang.py index edf0515317b..aa82e2992b1 100644 --- a/gremlin-python/src/main/python/tests/unit/process/test_gremlin_lang.py +++ b/gremlin-python/src/main/python/tests/unit/process/test_gremlin_lang.py @@ -483,39 +483,24 @@ class SuperStr(str): assert gremlin_lang == tests[t][1] def test_gvalue_name_cannot_be_null(self): - g = traversal().with_(None) try: - g.V(GValue(None, [1, 2, 3])) + GValue(None, [1, 2, 3]) + assert False, 'expected exception for null name' except Exception as ex: - assert str(ex) == 'The parameter name cannot be None.' + assert str(ex) == 'GValue name cannot be null.' - def test_gvalue_name_dont_need_escaping(self): - g = traversal().with_(None) - try: - g.V(GValue('\"', [1, 2, 3])) - except Exception as ex: - assert str(ex) == 'invalid parameter name ".' - - def test_gvalue_is_not_number(self): - g = traversal().with_(None) - try: - g.V(GValue('1', [1, 2, 3])) - except Exception as ex: - assert str(ex) == 'invalid parameter name 1.' + def test_gvalue_name_mid_string_dollar_accepted(self): + assert GValue('a$b', [1, 2, 3]).get_name() == 'a$b' - def test_gvalue_is_valid_identifier(self): + def test_gvalue_name_unicode_letter_accepted(self): g = traversal().with_(None) - try: - g.V(GValue('1a', [1, 2, 3])) - except Exception as ex: - assert str(ex) == 'invalid parameter name 1a.' + p = GValue('café', 42) + gremlin = g.V(p).gremlin_lang + assert 'g.V(café)' == gremlin.get_gremlin() + assert 42 == gremlin.get_parameters().get('café') - def test_gvalue_is_not_reserved(self): - g = traversal().with_(None) - try: - g.V(GValue('_1', [1, 2, 3])) - except Exception as ex: - assert str(ex) == 'invalid GValue name _1. Should not start with _.' + def test_gvalue_underscore_name_accepted(self): + assert GValue('_1', [1, 2, 3]).get_name() == '_1' def test_gvalue_is_not_duplicate(self): g = traversal().with_(None) @@ -532,6 +517,67 @@ def test_gvalue_allow_parameter_reuse(self): assert 'g.inject(ids).V(ids)' == gremlin.get_gremlin() assert val == gremlin.get_parameters().get('ids') + def test_gvalue_nested_in_child_traversal(self): + g = traversal().with_(None) + gremlin = g.V().where(__.is_(GValue('xx1', 1))).gremlin_lang + assert 'g.V().where(__.is(xx1))' == gremlin.get_gremlin() + assert 1 == gremlin.get_parameters().get('xx1') + + def test_gvalue_nested_across_multiple_child_traversals(self): + g = traversal().with_(None) + gremlin = g.V().union(__.V(GValue('vid1', 1)), __.V(GValue('vid4', 4))).gremlin_lang + assert 'g.V().union(__.V(vid1),__.V(vid4))' == gremlin.get_gremlin() + assert 1 == gremlin.get_parameters().get('vid1') + assert 4 == gremlin.get_parameters().get('vid4') + + def test_gvalue_mid_string_underscore_accepted(self): + g = traversal().with_(None) + p = GValue('a_b', 42) + gremlin = g.V(p).gremlin_lang + assert 'g.V(a_b)' == gremlin.get_gremlin() + assert 42 == gremlin.get_parameters().get('a_b') + + def test_gvalue_underscore_start_name_in_traversal(self): + g = traversal().with_(None) + gremlin = g.V(GValue('_1', [1, 2, 3])).gremlin_lang + assert 'g.V(_1)' == gremlin.get_gremlin() + assert [1, 2, 3] == gremlin.get_parameters().get('_1') + + def test_gvalue_dollar_name_in_traversal(self): + g = traversal().with_(None) + gremlin = g.V(GValue('a$b', 1)).gremlin_lang + assert 'g.V(a$b)' == gremlin.get_gremlin() + assert 1 == gremlin.get_parameters().get('a$b') + + def test_gvalue_invalid_name_raises_in_traversal(self): + import pytest + g = traversal().with_(None) + with pytest.raises(Exception, match='Invalid parameter name'): + g.V(GValue('1a', 1)).gremlin_lang.get_gremlin() + + def test_gvalue_construction_and_accessors(self): + p = GValue('x', 1) + assert 'x' == p.get_name() + assert 1 == p.get() + assert p.is_null() is False + + def test_gvalue_is_null(self): + p = GValue('n', None) + assert p.is_null() is True + q = GValue('m', 0) + assert q.is_null() is False + + def test_gvalue_string_representation(self): + p = GValue('x', 1) + assert repr(p) == 'x=1' + assert str(p) == 'x=1' + + def test_gvalue_cannot_be_nested(self): + try: + GValue('x', GValue('y', 1)) + except Exception as ex: + assert str(ex) == 'GValues cannot be nested' + def test_unsupported_type_throws(self): g = traversal().with_(None) import pytest diff --git a/gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/language/translator/translations.json b/gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/language/translator/translations.json index 3c9c17c495a..ba8cff069fa 100644 --- a/gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/language/translator/translations.json +++ b/gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/language/translator/translations.json @@ -8,6 +8,7 @@ "canonical": "g.V().branch(__.label().is(\"person\").count()).option(xx1, __.values(\"age\")).option(xx2, __.values(\"lang\")).option(xx2, __.values(\"name\"))", "anonymized": "g.V().branch(__.label().is(string0).count()).option(xx1, __.values(string1)).option(xx2, __.values(string2)).option(xx2, __.values(string3))", "dotnet": "g.V().Branch(__.Label().Is(\"person\").Count()).Option(xx1, __.Values(\"age\")).Option(xx2, __.Values(\"lang\")).Option(xx2, __.Values(\"name\"))", + "dotnet_parameterize": "g.V().Branch(__.Label().Is(\"person\").Count()).Option(xx1, __.Values(\"age\")).Option(xx2, __.Values(\"lang\")).Option(xx2, __.Values(\"name\"))", "go": "g.V().Branch(gremlingo.T__.Label().Is(\"person\").Count()).Option(xx1, gremlingo.T__.Values(\"age\")).Option(xx2, gremlingo.T__.Values(\"lang\")).Option(xx2, gremlingo.T__.Values(\"name\"))", "groovy": "g.V().branch(__.label().is(\"person\").count()).option(xx1, __.values(\"age\")).option(xx2, __.values(\"lang\")).option(xx2, __.values(\"name\"))", "java": "g.V().branch(__.label().is(\"person\").count()).option(xx1, __.values(\"age\")).option(xx2, __.values(\"lang\")).option(xx2, __.values(\"name\"))", @@ -25,6 +26,7 @@ "canonical": "g.V().branch(__.label().is(\"person\").count()).option(xx1, __.values(\"age\")).option(xx2, __.values(\"lang\")).option(xx2, __.values(\"name\")).option(Pick.any, __.label())", "anonymized": "g.V().branch(__.label().is(string0).count()).option(xx1, __.values(string1)).option(xx2, __.values(string2)).option(xx2, __.values(string3)).option(Pick.any, __.label())", "dotnet": "g.V().Branch(__.Label().Is(\"person\").Count()).Option(xx1, __.Values(\"age\")).Option(xx2, __.Values(\"lang\")).Option(xx2, __.Values(\"name\")).Option(Pick.Any, __.Label())", + "dotnet_parameterize": "g.V().Branch(__.Label().Is(\"person\").Count()).Option(xx1, __.Values(\"age\")).Option(xx2, __.Values(\"lang\")).Option(xx2, __.Values(\"name\")).Option(Pick.Any, __.Label())", "go": "g.V().Branch(gremlingo.T__.Label().Is(\"person\").Count()).Option(xx1, gremlingo.T__.Values(\"age\")).Option(xx2, gremlingo.T__.Values(\"lang\")).Option(xx2, gremlingo.T__.Values(\"name\")).Option(gremlingo.Pick.Any, gremlingo.T__.Label())", "groovy": "g.V().branch(__.label().is(\"person\").count()).option(xx1, __.values(\"age\")).option(xx2, __.values(\"lang\")).option(xx2, __.values(\"name\")).option(Pick.any, __.label())", "java": "g.V().branch(__.label().is(\"person\").count()).option(xx1, __.values(\"age\")).option(xx2, __.values(\"lang\")).option(xx2, __.values(\"name\")).option(Pick.any, __.label())", @@ -42,6 +44,7 @@ "canonical": "g.V().hasLabel(\"person\").branch(__.values(\"age\")).option(P.lt(30), __.constant(\"young\")).option(P.gt(30), __.constant(\"old\")).option(Pick.none, __.constant(\"on the edge\"))", "anonymized": "g.V().hasLabel(string0).branch(__.values(string1)).option(P.lt(number0), __.constant(string2)).option(P.gt(number0), __.constant(string3)).option(Pick.none, __.constant(string4))", "dotnet": "g.V().HasLabel(\"person\").Branch(__.Values(\"age\")).Option(P.Lt(30), __.Constant(\"young\")).Option(P.Gt(30), __.Constant(\"old\")).Option(Pick.None, __.Constant(\"on the edge\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Branch(__.Values(\"age\")).Option(P.Lt(30), __.Constant(\"young\")).Option(P.Gt(30), __.Constant(\"old\")).Option(Pick.None, __.Constant(\"on the edge\"))", "go": "g.V().HasLabel(\"person\").Branch(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Lt(30), gremlingo.T__.Constant(\"young\")).Option(gremlingo.P.Gt(30), gremlingo.T__.Constant(\"old\")).Option(gremlingo.Pick.None, gremlingo.T__.Constant(\"on the edge\"))", "groovy": "g.V().hasLabel(\"person\").branch(__.values(\"age\")).option(P.lt(30), __.constant(\"young\")).option(P.gt(30), __.constant(\"old\")).option(Pick.none, __.constant(\"on the edge\"))", "java": "g.V().hasLabel(\"person\").branch(__.values(\"age\")).option(P.lt(30), __.constant(\"young\")).option(P.gt(30), __.constant(\"old\")).option(Pick.none, __.constant(\"on the edge\"))", @@ -59,6 +62,7 @@ "canonical": "g.V().branch(__.identity()).option(__.hasLabel(\"software\"), __.in(\"created\").values(\"name\").order().fold()).option(__.has(\"name\", \"vadas\"), __.values(\"age\")).option(P.neq(123), __.bothE().count())", "anonymized": "g.V().branch(__.identity()).option(__.hasLabel(string0), __.in(string1).values(string2).order().fold()).option(__.has(string2, string3), __.values(string4)).option(P.neq(number0), __.bothE().count())", "dotnet": "g.V().Branch(__.Identity()).Option(__.HasLabel(\"software\"), __.In(\"created\").Values(\"name\").Order().Fold()).Option(__.Has(\"name\", \"vadas\"), __.Values(\"age\")).Option(P.Neq(123), __.BothE().Count())", + "dotnet_parameterize": "g.V().Branch(__.Identity()).Option(__.HasLabel(\"software\"), __.In(\"created\").Values(\"name\").Order().Fold()).Option(__.Has(\"name\", \"vadas\"), __.Values(\"age\")).Option(P.Neq(123), __.BothE().Count())", "go": "g.V().Branch(gremlingo.T__.Identity()).Option(gremlingo.T__.HasLabel(\"software\"), gremlingo.T__.In(\"created\").Values(\"name\").Order().Fold()).Option(gremlingo.T__.Has(\"name\", \"vadas\"), gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Neq(123), gremlingo.T__.BothE().Count())", "groovy": "g.V().branch(__.identity()).option(__.hasLabel(\"software\"), __.in(\"created\").values(\"name\").order().fold()).option(__.has(\"name\", \"vadas\"), __.values(\"age\")).option(P.neq(123), __.bothE().count())", "java": "g.V().branch(__.identity()).option(__.hasLabel(\"software\"), __.in(\"created\").values(\"name\").order().fold()).option(__.has(\"name\", \"vadas\"), __.values(\"age\")).option(P.neq(123), __.bothE().count())", @@ -76,6 +80,7 @@ "canonical": "g.V().choose(__.out().count()).option(xx1, __.values(\"name\")).option(xx2, __.values(\"age\"))", "anonymized": "g.V().choose(__.out().count()).option(xx1, __.values(string0)).option(xx2, __.values(string1))", "dotnet": "g.V().Choose(__.Out().Count()).Option(xx1, __.Values(\"name\")).Option(xx2, __.Values(\"age\"))", + "dotnet_parameterize": "g.V().Choose(__.Out().Count()).Option(xx1, __.Values(\"name\")).Option(xx2, __.Values(\"age\"))", "go": "g.V().Choose(gremlingo.T__.Out().Count()).Option(xx1, gremlingo.T__.Values(\"name\")).Option(xx2, gremlingo.T__.Values(\"age\"))", "groovy": "g.V().choose(__.out().count()).option(xx1, __.values(\"name\")).option(xx2, __.values(\"age\"))", "java": "g.V().choose(__.out().count()).option(xx1, __.values(\"name\")).option(xx2, __.values(\"age\"))", @@ -93,6 +98,7 @@ "canonical": "g.V().choose(__.out().count()).option(xx1, __.values(\"name\")).option(xx2, __.values(\"age\")).option(Pick.none, __.discard())", "anonymized": "g.V().choose(__.out().count()).option(xx1, __.values(string0)).option(xx2, __.values(string1)).option(Pick.none, __.discard())", "dotnet": "g.V().Choose(__.Out().Count()).Option(xx1, __.Values(\"name\")).Option(xx2, __.Values(\"age\")).Option(Pick.None, __.Discard())", + "dotnet_parameterize": "g.V().Choose(__.Out().Count()).Option(xx1, __.Values(\"name\")).Option(xx2, __.Values(\"age\")).Option(Pick.None, __.Discard())", "go": "g.V().Choose(gremlingo.T__.Out().Count()).Option(xx1, gremlingo.T__.Values(\"name\")).Option(xx2, gremlingo.T__.Values(\"age\")).Option(gremlingo.Pick.None, gremlingo.T__.Discard())", "groovy": "g.V().choose(__.out().count()).option(xx1, __.values(\"name\")).option(xx2, __.values(\"age\")).option(Pick.none, __.discard())", "java": "g.V().choose(__.out().count()).option(xx1, __.values(\"name\")).option(xx2, __.values(\"age\")).option(Pick.none, __.discard())", @@ -110,6 +116,7 @@ "canonical": "g.V().choose(__.hasLabel(\"person\").and().out(\"created\"), __.out(\"knows\"), __.identity()).values(\"name\")", "anonymized": "g.V().choose(__.hasLabel(string0).and().out(string1), __.out(string2), __.identity()).values(string3)", "dotnet": "g.V().Choose(__.HasLabel(\"person\").And().Out(\"created\"), __.Out(\"knows\"), __.Identity()).Values(\"name\")", + "dotnet_parameterize": "g.V().Choose(__.HasLabel(\"person\").And().Out(\"created\"), __.Out(\"knows\"), __.Identity()).Values(\"name\")", "go": "g.V().Choose(gremlingo.T__.HasLabel(\"person\").And().Out(\"created\"), gremlingo.T__.Out(\"knows\"), gremlingo.T__.Identity()).Values(\"name\")", "groovy": "g.V().choose(__.hasLabel(\"person\").and().out(\"created\"), __.out(\"knows\"), __.identity()).values(\"name\")", "java": "g.V().choose(__.hasLabel(\"person\").and().out(\"created\"), __.out(\"knows\"), __.identity()).values(\"name\")", @@ -127,6 +134,7 @@ "canonical": "g.V().choose(__.hasLabel(\"person\").and().out(\"created\"), __.out(\"knows\")).values(\"name\")", "anonymized": "g.V().choose(__.hasLabel(string0).and().out(string1), __.out(string2)).values(string3)", "dotnet": "g.V().Choose(__.HasLabel(\"person\").And().Out(\"created\"), __.Out(\"knows\")).Values(\"name\")", + "dotnet_parameterize": "g.V().Choose(__.HasLabel(\"person\").And().Out(\"created\"), __.Out(\"knows\")).Values(\"name\")", "go": "g.V().Choose(gremlingo.T__.HasLabel(\"person\").And().Out(\"created\"), gremlingo.T__.Out(\"knows\")).Values(\"name\")", "groovy": "g.V().choose(__.hasLabel(\"person\").and().out(\"created\"), __.out(\"knows\")).values(\"name\")", "java": "g.V().choose(__.hasLabel(\"person\").and().out(\"created\"), __.out(\"knows\")).values(\"name\")", @@ -144,6 +152,7 @@ "canonical": "g.V().choose(__.label()).option(\"blah\", __.out(\"knows\")).option(\"bleep\", __.out(\"created\")).option(Pick.none, __.identity()).values(\"name\")", "anonymized": "g.V().choose(__.label()).option(string0, __.out(string1)).option(string2, __.out(string3)).option(Pick.none, __.identity()).values(string4)", "dotnet": "g.V().Choose(__.Label()).Option(\"blah\", __.Out(\"knows\")).Option(\"bleep\", __.Out(\"created\")).Option(Pick.None, __.Identity()).Values(\"name\")", + "dotnet_parameterize": "g.V().Choose(__.Label()).Option(\"blah\", __.Out(\"knows\")).Option(\"bleep\", __.Out(\"created\")).Option(Pick.None, __.Identity()).Values(\"name\")", "go": "g.V().Choose(gremlingo.T__.Label()).Option(\"blah\", gremlingo.T__.Out(\"knows\")).Option(\"bleep\", gremlingo.T__.Out(\"created\")).Option(gremlingo.Pick.None, gremlingo.T__.Identity()).Values(\"name\")", "groovy": "g.V().choose(__.label()).option(\"blah\", __.out(\"knows\")).option(\"bleep\", __.out(\"created\")).option(Pick.none, __.identity()).values(\"name\")", "java": "g.V().choose(__.label()).option(\"blah\", __.out(\"knows\")).option(\"bleep\", __.out(\"created\")).option(Pick.none, __.identity()).values(\"name\")", @@ -161,6 +170,7 @@ "canonical": "g.V().choose(T.label).option(\"person\", __.out(\"knows\").values(\"name\")).option(\"bleep\", __.constant(\"bleep\"))", "anonymized": "g.V().choose(T.label).option(string0, __.out(string1).values(string2)).option(string3, __.constant(string3))", "dotnet": "g.V().Choose(T.Label).Option(\"person\", __.Out(\"knows\").Values(\"name\")).Option(\"bleep\", __.Constant(\"bleep\"))", + "dotnet_parameterize": "g.V().Choose(T.Label).Option(\"person\", __.Out(\"knows\").Values(\"name\")).Option(\"bleep\", __.Constant(\"bleep\"))", "go": "g.V().Choose(gremlingo.T.Label).Option(\"person\", gremlingo.T__.Out(\"knows\").Values(\"name\")).Option(\"bleep\", gremlingo.T__.Constant(\"bleep\"))", "groovy": "g.V().choose(T.label).option(\"person\", __.out(\"knows\").values(\"name\")).option(\"bleep\", __.constant(\"bleep\"))", "java": "g.V().choose(T.label).option(\"person\", __.out(\"knows\").values(\"name\")).option(\"bleep\", __.constant(\"bleep\"))", @@ -178,6 +188,7 @@ "canonical": "g.V().choose(T.label).option(\"blah\", __.out(\"knows\")).option(\"bleep\", __.out(\"created\")).option(Pick.none, __.identity()).values(\"name\")", "anonymized": "g.V().choose(T.label).option(string0, __.out(string1)).option(string2, __.out(string3)).option(Pick.none, __.identity()).values(string4)", "dotnet": "g.V().Choose(T.Label).Option(\"blah\", __.Out(\"knows\")).Option(\"bleep\", __.Out(\"created\")).Option(Pick.None, __.Identity()).Values(\"name\")", + "dotnet_parameterize": "g.V().Choose(T.Label).Option(\"blah\", __.Out(\"knows\")).Option(\"bleep\", __.Out(\"created\")).Option(Pick.None, __.Identity()).Values(\"name\")", "go": "g.V().Choose(gremlingo.T.Label).Option(\"blah\", gremlingo.T__.Out(\"knows\")).Option(\"bleep\", gremlingo.T__.Out(\"created\")).Option(gremlingo.Pick.None, gremlingo.T__.Identity()).Values(\"name\")", "groovy": "g.V().choose(T.label).option(\"blah\", __.out(\"knows\")).option(\"bleep\", __.out(\"created\")).option(Pick.none, __.identity()).values(\"name\")", "java": "g.V().choose(T.label).option(\"blah\", __.out(\"knows\")).option(\"bleep\", __.out(\"created\")).option(Pick.none, __.identity()).values(\"name\")", @@ -195,6 +206,7 @@ "canonical": "g.V().choose(T.label).option(\"blah\", __.out(\"knows\")).option(\"bleep\", __.out(\"created\")).option(Pick.none, __.discard()).values(\"name\")", "anonymized": "g.V().choose(T.label).option(string0, __.out(string1)).option(string2, __.out(string3)).option(Pick.none, __.discard()).values(string4)", "dotnet": "g.V().Choose(T.Label).Option(\"blah\", __.Out(\"knows\")).Option(\"bleep\", __.Out(\"created\")).Option(Pick.None, __.Discard()).Values(\"name\")", + "dotnet_parameterize": "g.V().Choose(T.Label).Option(\"blah\", __.Out(\"knows\")).Option(\"bleep\", __.Out(\"created\")).Option(Pick.None, __.Discard()).Values(\"name\")", "go": "g.V().Choose(gremlingo.T.Label).Option(\"blah\", gremlingo.T__.Out(\"knows\")).Option(\"bleep\", gremlingo.T__.Out(\"created\")).Option(gremlingo.Pick.None, gremlingo.T__.Discard()).Values(\"name\")", "groovy": "g.V().choose(T.label).option(\"blah\", __.out(\"knows\")).option(\"bleep\", __.out(\"created\")).option(Pick.none, __.discard()).values(\"name\")", "java": "g.V().choose(T.label).option(\"blah\", __.out(\"knows\")).option(\"bleep\", __.out(\"created\")).option(Pick.none, __.discard()).values(\"name\")", @@ -212,6 +224,7 @@ "canonical": "g.V().choose(__.out(\"knows\").count().is(P.gt(0)), __.out(\"knows\")).values(\"name\")", "anonymized": "g.V().choose(__.out(string0).count().is(P.gt(number0)), __.out(string0)).values(string1)", "dotnet": "g.V().Choose(__.Out(\"knows\").Count().Is(P.Gt(0)), __.Out(\"knows\")).Values(\"name\")", + "dotnet_parameterize": "g.V().Choose(__.Out(\"knows\").Count().Is(P.Gt(0)), __.Out(\"knows\")).Values(\"name\")", "go": "g.V().Choose(gremlingo.T__.Out(\"knows\").Count().Is(gremlingo.P.Gt(0)), gremlingo.T__.Out(\"knows\")).Values(\"name\")", "groovy": "g.V().choose(__.out(\"knows\").count().is(P.gt(0)), __.out(\"knows\")).values(\"name\")", "java": "g.V().choose(__.out(\"knows\").count().is(P.gt(0)), __.out(\"knows\")).values(\"name\")", @@ -229,6 +242,7 @@ "canonical": "g.V().hasLabel(\"person\").as(\"p1\").choose(__.outE(\"knows\"), __.out(\"knows\")).as(\"p2\").select(\"p1\", \"p2\").by(\"name\")", "anonymized": "g.V().hasLabel(string0).as(string1).choose(__.outE(string2), __.out(string2)).as(string3).select(string1, string3).by(string4)", "dotnet": "g.V().HasLabel(\"person\").As(\"p1\").Choose(__.OutE(\"knows\"), __.Out(\"knows\")).As(\"p2\").Select(\"p1\", \"p2\").By(\"name\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").As(\"p1\").Choose(__.OutE(\"knows\"), __.Out(\"knows\")).As(\"p2\").Select(\"p1\", \"p2\").By(\"name\")", "go": "g.V().HasLabel(\"person\").As(\"p1\").Choose(gremlingo.T__.OutE(\"knows\"), gremlingo.T__.Out(\"knows\")).As(\"p2\").Select(\"p1\", \"p2\").By(\"name\")", "groovy": "g.V().hasLabel(\"person\").as(\"p1\").choose(__.outE(\"knows\"), __.out(\"knows\")).as(\"p2\").select(\"p1\", \"p2\").by(\"name\")", "java": "g.V().hasLabel(\"person\").as(\"p1\").choose(__.outE(\"knows\"), __.out(\"knows\")).as(\"p2\").select(\"p1\", \"p2\").by(\"name\")", @@ -246,6 +260,7 @@ "canonical": "g.V().hasLabel(\"person\").choose(__.values(\"age\")).option(xx1, __.constant(\"young\")).option(Pick.none, __.constant(\"old\")).groupCount()", "anonymized": "g.V().hasLabel(string0).choose(__.values(string1)).option(xx1, __.constant(string2)).option(Pick.none, __.constant(string3)).groupCount()", "dotnet": "g.V().HasLabel(\"person\").Choose(__.Values(\"age\")).Option(xx1, __.Constant(\"young\")).Option(Pick.None, __.Constant(\"old\")).GroupCount()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Choose(__.Values(\"age\")).Option(xx1, __.Constant(\"young\")).Option(Pick.None, __.Constant(\"old\")).GroupCount()", "go": "g.V().HasLabel(\"person\").Choose(gremlingo.T__.Values(\"age\")).Option(xx1, gremlingo.T__.Constant(\"young\")).Option(gremlingo.Pick.None, gremlingo.T__.Constant(\"old\")).GroupCount()", "groovy": "g.V().hasLabel(\"person\").choose(__.values(\"age\")).option(xx1, __.constant(\"young\")).option(Pick.none, __.constant(\"old\")).groupCount()", "java": "g.V().hasLabel(\"person\").choose(__.values(\"age\")).option(xx1, __.constant(\"young\")).option(Pick.none, __.constant(\"old\")).groupCount()", @@ -263,6 +278,7 @@ "canonical": "g.inject(1i).choose(__.is(xx1), __.constant(10i).fold(), __.fold())", "anonymized": "g.inject(integer0).choose(__.is(xx1), __.constant(integer1).fold(), __.fold())", "dotnet": "g.Inject(1).Choose(__.Is(xx1), __.Constant(10).Fold(), __.Fold())", + "dotnet_parameterize": "g.Inject(1).Choose(__.Is(xx1), __.Constant(10).Fold(), __.Fold())", "go": "g.Inject(int32(1)).Choose(gremlingo.T__.Is(xx1), gremlingo.T__.Constant(int32(10)).Fold(), gremlingo.T__.Fold())", "groovy": "g.inject(1i).choose(__.is(xx1), __.constant(10i).fold(), __.fold())", "java": "g.inject(1).choose(__.is(xx1), __.constant(10).fold(), __.fold())", @@ -280,6 +296,7 @@ "canonical": "g.inject(2i).choose(__.is(xx1), __.constant(10i).fold(), __.fold())", "anonymized": "g.inject(integer0).choose(__.is(xx1), __.constant(integer1).fold(), __.fold())", "dotnet": "g.Inject(2).Choose(__.Is(xx1), __.Constant(10).Fold(), __.Fold())", + "dotnet_parameterize": "g.Inject(2).Choose(__.Is(xx1), __.Constant(10).Fold(), __.Fold())", "go": "g.Inject(int32(2)).Choose(gremlingo.T__.Is(xx1), gremlingo.T__.Constant(int32(10)).Fold(), gremlingo.T__.Fold())", "groovy": "g.inject(2i).choose(__.is(xx1), __.constant(10i).fold(), __.fold())", "java": "g.inject(2).choose(__.is(xx1), __.constant(10).fold(), __.fold())", @@ -297,6 +314,7 @@ "canonical": "g.V().hasLabel(\"person\").choose(__.values(\"age\")).option(P.between(26, 30), __.constant(\"x\")).option(P.between(20, 30), __.constant(\"y\")).option(Pick.none, __.constant(\"z\"))", "anonymized": "g.V().hasLabel(string0).choose(__.values(string1)).option(P.between(number0, number1), __.constant(string2)).option(P.between(number2, number1), __.constant(string3)).option(Pick.none, __.constant(string4))", "dotnet": "g.V().HasLabel(\"person\").Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Constant(\"x\")).Option(P.Between(20, 30), __.Constant(\"y\")).Option(Pick.None, __.Constant(\"z\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Constant(\"x\")).Option(P.Between(20, 30), __.Constant(\"y\")).Option(Pick.None, __.Constant(\"z\"))", "go": "g.V().HasLabel(\"person\").Choose(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Between(26, 30), gremlingo.T__.Constant(\"x\")).Option(gremlingo.P.Between(20, 30), gremlingo.T__.Constant(\"y\")).Option(gremlingo.Pick.None, gremlingo.T__.Constant(\"z\"))", "groovy": "g.V().hasLabel(\"person\").choose(__.values(\"age\")).option(P.between(26, 30), __.constant(\"x\")).option(P.between(20, 30), __.constant(\"y\")).option(Pick.none, __.constant(\"z\"))", "java": "g.V().hasLabel(\"person\").choose(__.values(\"age\")).option(P.between(26, 30), __.constant(\"x\")).option(P.between(20, 30), __.constant(\"y\")).option(Pick.none, __.constant(\"z\"))", @@ -314,6 +332,7 @@ "canonical": "g.V().hasLabel(\"person\").choose(__.values(\"age\")).option(P.between(26, 30).or(P.gt(34)), __.constant(\"x\")).option(P.gt(34), __.constant(\"y\")).option(Pick.none, __.constant(\"z\"))", "anonymized": "g.V().hasLabel(string0).choose(__.values(string1)).option(P.between(number0, number1).or(P.gt(number2)), __.constant(string2)).option(P.gt(number2), __.constant(string3)).option(Pick.none, __.constant(string4))", "dotnet": "g.V().HasLabel(\"person\").Choose(__.Values(\"age\")).Option(P.Between(26, 30).Or(P.Gt(34)), __.Constant(\"x\")).Option(P.Gt(34), __.Constant(\"y\")).Option(Pick.None, __.Constant(\"z\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Choose(__.Values(\"age\")).Option(P.Between(26, 30).Or(P.Gt(34)), __.Constant(\"x\")).Option(P.Gt(34), __.Constant(\"y\")).Option(Pick.None, __.Constant(\"z\"))", "go": "g.V().HasLabel(\"person\").Choose(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Between(26, 30).Or(gremlingo.P.Gt(34)), gremlingo.T__.Constant(\"x\")).Option(gremlingo.P.Gt(34), gremlingo.T__.Constant(\"y\")).Option(gremlingo.Pick.None, gremlingo.T__.Constant(\"z\"))", "groovy": "g.V().hasLabel(\"person\").choose(__.values(\"age\")).option(P.between(26, 30).or(P.gt(34)), __.constant(\"x\")).option(P.gt(34), __.constant(\"y\")).option(Pick.none, __.constant(\"z\"))", "java": "g.V().hasLabel(\"person\").choose(__.values(\"age\")).option(P.between(26, 30).or(P.gt(34)), __.constant(\"x\")).option(P.gt(34), __.constant(\"y\")).option(Pick.none, __.constant(\"z\"))", @@ -331,6 +350,7 @@ "canonical": "g.V().hasLabel(\"person\").choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.values(\"name\"))", "anonymized": "g.V().hasLabel(string0).choose(__.values(string1)).option(P.between(number0, number1), __.values(string2)).option(Pick.none, __.values(string2))", "dotnet": "g.V().HasLabel(\"person\").Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\")).Option(Pick.None, __.Values(\"name\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\")).Option(Pick.None, __.Values(\"name\"))", "go": "g.V().HasLabel(\"person\").Choose(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Between(26, 30), gremlingo.T__.Values(\"name\")).Option(gremlingo.Pick.None, gremlingo.T__.Values(\"name\"))", "groovy": "g.V().hasLabel(\"person\").choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.values(\"name\"))", "java": "g.V().hasLabel(\"person\").choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.values(\"name\"))", @@ -348,6 +368,7 @@ "canonical": "g.V().hasLabel(\"person\").local(__.choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\").fold()).option(Pick.none, __.values(\"name\").fold()))", "anonymized": "g.V().hasLabel(string0).local(__.choose(__.values(string1)).option(P.between(number0, number1), __.values(string2).fold()).option(Pick.none, __.values(string2).fold()))", "dotnet": "g.V().HasLabel(\"person\").Local(__.Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\").Fold()).Option(Pick.None, __.Values(\"name\").Fold()))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Local(__.Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\").Fold()).Option(Pick.None, __.Values(\"name\").Fold()))", "go": "g.V().HasLabel(\"person\").Local(gremlingo.T__.Choose(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Between(26, 30), gremlingo.T__.Values(\"name\").Fold()).Option(gremlingo.Pick.None, gremlingo.T__.Values(\"name\").Fold()))", "groovy": "g.V().hasLabel(\"person\").local(__.choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\").fold()).option(Pick.none, __.values(\"name\").fold()))", "java": "g.V().hasLabel(\"person\").local(__.choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\").fold()).option(Pick.none, __.values(\"name\").fold()))", @@ -365,6 +386,7 @@ "canonical": "g.V().hasLabel(\"person\").map(__.choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\").fold()).option(Pick.none, __.values(\"name\").fold()))", "anonymized": "g.V().hasLabel(string0).map(__.choose(__.values(string1)).option(P.between(number0, number1), __.values(string2).fold()).option(Pick.none, __.values(string2).fold()))", "dotnet": "g.V().HasLabel(\"person\").Map(__.Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\").Fold()).Option(Pick.None, __.Values(\"name\").Fold()))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Map(__.Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\").Fold()).Option(Pick.None, __.Values(\"name\").Fold()))", "go": "g.V().HasLabel(\"person\").Map(gremlingo.T__.Choose(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Between(26, 30), gremlingo.T__.Values(\"name\").Fold()).Option(gremlingo.Pick.None, gremlingo.T__.Values(\"name\").Fold()))", "groovy": "g.V().hasLabel(\"person\").map(__.choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\").fold()).option(Pick.none, __.values(\"name\").fold()))", "java": "g.V().hasLabel(\"person\").map(__.choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\").fold()).option(Pick.none, __.values(\"name\").fold()))", @@ -382,6 +404,7 @@ "canonical": "g.union(__.V(), __.V()).hasLabel(\"person\").barrier().local(__.choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\").fold()).option(Pick.none, __.values(\"name\").fold()))", "anonymized": "g.union(__.V(), __.V()).hasLabel(string0).barrier().local(__.choose(__.values(string1)).option(P.between(number0, number1), __.values(string2).fold()).option(Pick.none, __.values(string2).fold()))", "dotnet": "g.Union(__.V(), __.V()).HasLabel(\"person\").Barrier().Local(__.Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\").Fold()).Option(Pick.None, __.Values(\"name\").Fold()))", + "dotnet_parameterize": "g.Union(__.V(), __.V()).HasLabel(\"person\").Barrier().Local(__.Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\").Fold()).Option(Pick.None, __.Values(\"name\").Fold()))", "go": "g.Union(gremlingo.T__.V(), gremlingo.T__.V()).HasLabel(\"person\").Barrier().Local(gremlingo.T__.Choose(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Between(26, 30), gremlingo.T__.Values(\"name\").Fold()).Option(gremlingo.Pick.None, gremlingo.T__.Values(\"name\").Fold()))", "groovy": "g.union(__.V(), __.V()).hasLabel(\"person\").barrier().local(__.choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\").fold()).option(Pick.none, __.values(\"name\").fold()))", "java": "g.union(__.V(), __.V()).hasLabel(\"person\").barrier().local(__.choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\").fold()).option(Pick.none, __.values(\"name\").fold()))", @@ -399,6 +422,7 @@ "canonical": "g.union(__.V(), __.V()).hasLabel(\"person\").barrier().map(__.choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\").fold()).option(Pick.none, __.values(\"name\").fold()))", "anonymized": "g.union(__.V(), __.V()).hasLabel(string0).barrier().map(__.choose(__.values(string1)).option(P.between(number0, number1), __.values(string2).fold()).option(Pick.none, __.values(string2).fold()))", "dotnet": "g.Union(__.V(), __.V()).HasLabel(\"person\").Barrier().Map(__.Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\").Fold()).Option(Pick.None, __.Values(\"name\").Fold()))", + "dotnet_parameterize": "g.Union(__.V(), __.V()).HasLabel(\"person\").Barrier().Map(__.Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\").Fold()).Option(Pick.None, __.Values(\"name\").Fold()))", "go": "g.Union(gremlingo.T__.V(), gremlingo.T__.V()).HasLabel(\"person\").Barrier().Map(gremlingo.T__.Choose(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Between(26, 30), gremlingo.T__.Values(\"name\").Fold()).Option(gremlingo.Pick.None, gremlingo.T__.Values(\"name\").Fold()))", "groovy": "g.union(__.V(), __.V()).hasLabel(\"person\").barrier().map(__.choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\").fold()).option(Pick.none, __.values(\"name\").fold()))", "java": "g.union(__.V(), __.V()).hasLabel(\"person\").barrier().map(__.choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\").fold()).option(Pick.none, __.values(\"name\").fold()))", @@ -416,6 +440,7 @@ "canonical": "g.V().choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.values(\"name\"))", "anonymized": "g.V().choose(__.values(string0)).option(P.between(number0, number1), __.values(string1)).option(Pick.none, __.values(string1))", "dotnet": "g.V().Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\")).Option(Pick.None, __.Values(\"name\"))", + "dotnet_parameterize": "g.V().Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\")).Option(Pick.None, __.Values(\"name\"))", "go": "g.V().Choose(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Between(26, 30), gremlingo.T__.Values(\"name\")).Option(gremlingo.Pick.None, gremlingo.T__.Values(\"name\"))", "groovy": "g.V().choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.values(\"name\"))", "java": "g.V().choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.values(\"name\"))", @@ -433,6 +458,7 @@ "canonical": "g.V().choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.values(\"name\")).option(Pick.unproductive, __.label())", "anonymized": "g.V().choose(__.values(string0)).option(P.between(number0, number1), __.values(string1)).option(Pick.none, __.values(string1)).option(Pick.unproductive, __.label())", "dotnet": "g.V().Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\")).Option(Pick.None, __.Values(\"name\")).Option(Pick.Unproductive, __.Label())", + "dotnet_parameterize": "g.V().Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\")).Option(Pick.None, __.Values(\"name\")).Option(Pick.Unproductive, __.Label())", "go": "g.V().Choose(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Between(26, 30), gremlingo.T__.Values(\"name\")).Option(gremlingo.Pick.None, gremlingo.T__.Values(\"name\")).Option(gremlingo.Pick.Unproductive, gremlingo.T__.Label())", "groovy": "g.V().choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.values(\"name\")).option(Pick.unproductive, __.label())", "java": "g.V().choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.values(\"name\")).option(Pick.unproductive, __.label())", @@ -450,6 +476,7 @@ "canonical": "g.V().choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.values(\"name\")).option(Pick.none, __.identity()).option(Pick.none, __.fail()).option(Pick.unproductive, __.label()).option(Pick.unproductive, __.identity()).option(Pick.unproductive, __.fail())", "anonymized": "g.V().choose(__.values(string0)).option(P.between(number0, number1), __.values(string1)).option(Pick.none, __.values(string1)).option(Pick.none, __.identity()).option(Pick.none, __.fail()).option(Pick.unproductive, __.label()).option(Pick.unproductive, __.identity()).option(Pick.unproductive, __.fail())", "dotnet": "g.V().Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\")).Option(Pick.None, __.Values(\"name\")).Option(Pick.None, __.Identity()).Option(Pick.None, __.Fail()).Option(Pick.Unproductive, __.Label()).Option(Pick.Unproductive, __.Identity()).Option(Pick.Unproductive, __.Fail())", + "dotnet_parameterize": "g.V().Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\")).Option(Pick.None, __.Values(\"name\")).Option(Pick.None, __.Identity()).Option(Pick.None, __.Fail()).Option(Pick.Unproductive, __.Label()).Option(Pick.Unproductive, __.Identity()).Option(Pick.Unproductive, __.Fail())", "go": "g.V().Choose(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Between(26, 30), gremlingo.T__.Values(\"name\")).Option(gremlingo.Pick.None, gremlingo.T__.Values(\"name\")).Option(gremlingo.Pick.None, gremlingo.T__.Identity()).Option(gremlingo.Pick.None, gremlingo.T__.Fail()).Option(gremlingo.Pick.Unproductive, gremlingo.T__.Label()).Option(gremlingo.Pick.Unproductive, gremlingo.T__.Identity()).Option(gremlingo.Pick.Unproductive, gremlingo.T__.Fail())", "groovy": "g.V().choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.values(\"name\")).option(Pick.none, __.identity()).option(Pick.none, __.fail()).option(Pick.unproductive, __.label()).option(Pick.unproductive, __.identity()).option(Pick.unproductive, __.fail())", "java": "g.V().choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.values(\"name\")).option(Pick.none, __.identity()).option(Pick.none, __.fail()).option(Pick.unproductive, __.label()).option(Pick.unproductive, __.identity()).option(Pick.unproductive, __.fail())", @@ -467,6 +494,7 @@ "canonical": "g.V().choose(__.values(\"age\"), __.values(\"name\"))", "anonymized": "g.V().choose(__.values(string0), __.values(string1))", "dotnet": "g.V().Choose(__.Values(\"age\"), __.Values(\"name\"))", + "dotnet_parameterize": "g.V().Choose(__.Values(\"age\"), __.Values(\"name\"))", "go": "g.V().Choose(gremlingo.T__.Values(\"age\"), gremlingo.T__.Values(\"name\"))", "groovy": "g.V().choose(__.values(\"age\"), __.values(\"name\"))", "java": "g.V().choose(__.values(\"age\"), __.values(\"name\"))", @@ -484,6 +512,7 @@ "canonical": "g.V().choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.discard())", "anonymized": "g.V().choose(__.values(string0)).option(P.between(number0, number1), __.values(string1)).option(Pick.none, __.discard())", "dotnet": "g.V().Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\")).Option(Pick.None, __.Discard())", + "dotnet_parameterize": "g.V().Choose(__.Values(\"age\")).Option(P.Between(26, 30), __.Values(\"name\")).Option(Pick.None, __.Discard())", "go": "g.V().Choose(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Between(26, 30), gremlingo.T__.Values(\"name\")).Option(gremlingo.Pick.None, gremlingo.T__.Discard())", "groovy": "g.V().choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.discard())", "java": "g.V().choose(__.values(\"age\")).option(P.between(26, 30), __.values(\"name\")).option(Pick.none, __.discard())", @@ -501,6 +530,7 @@ "canonical": "g.V().choose(__.values(\"name\")).option(P.neq(\"y\"), __.values(\"age\")).option(Pick.none, __.constant(\"x\"))", "anonymized": "g.V().choose(__.values(string0)).option(P.neq(string1), __.values(string2)).option(Pick.none, __.constant(string3))", "dotnet": "g.V().Choose(__.Values(\"name\")).Option(P.Neq(\"y\"), __.Values(\"age\")).Option(Pick.None, __.Constant(\"x\"))", + "dotnet_parameterize": "g.V().Choose(__.Values(\"name\")).Option(P.Neq(\"y\"), __.Values(\"age\")).Option(Pick.None, __.Constant(\"x\"))", "go": "g.V().Choose(gremlingo.T__.Values(\"name\")).Option(gremlingo.P.Neq(\"y\"), gremlingo.T__.Values(\"age\")).Option(gremlingo.Pick.None, gremlingo.T__.Constant(\"x\"))", "groovy": "g.V().choose(__.values(\"name\")).option(P.neq(\"y\"), __.values(\"age\")).option(Pick.none, __.constant(\"x\"))", "java": "g.V().choose(__.values(\"name\")).option(P.neq(\"y\"), __.values(\"age\")).option(Pick.none, __.constant(\"x\"))", @@ -518,6 +548,7 @@ "canonical": "g.V().hasLabel(\"person\").choose(__.out(\"created\").count().is(P.eq(0)), __.constant(\"didnt_create\"), __.constant(\"created\"))", "anonymized": "g.V().hasLabel(string0).choose(__.out(string1).count().is(P.eq(number0)), __.constant(string2), __.constant(string1))", "dotnet": "g.V().HasLabel(\"person\").Choose(__.Out(\"created\").Count().Is(P.Eq(0)), __.Constant(\"didnt_create\"), __.Constant(\"created\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Choose(__.Out(\"created\").Count().Is(P.Eq(0)), __.Constant(\"didnt_create\"), __.Constant(\"created\"))", "go": "g.V().HasLabel(\"person\").Choose(gremlingo.T__.Out(\"created\").Count().Is(gremlingo.P.Eq(0)), gremlingo.T__.Constant(\"didnt_create\"), gremlingo.T__.Constant(\"created\"))", "groovy": "g.V().hasLabel(\"person\").choose(__.out(\"created\").count().is(P.eq(0)), __.constant(\"didnt_create\"), __.constant(\"created\"))", "java": "g.V().hasLabel(\"person\").choose(__.out(\"created\").count().is(P.eq(0)), __.constant(\"didnt_create\"), __.constant(\"created\"))", @@ -535,6 +566,7 @@ "canonical": "g.V().hasLabel(\"person\").choose(__.values(\"age\").is(P.gt(30)), __.values(\"age\"), __.constant(30))", "anonymized": "g.V().hasLabel(string0).choose(__.values(string1).is(P.gt(number0)), __.values(string1), __.constant(number0))", "dotnet": "g.V().HasLabel(\"person\").Choose(__.Values(\"age\").Is(P.Gt(30)), __.Values(\"age\"), __.Constant(30))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Choose(__.Values(\"age\").Is(P.Gt(30)), __.Values(\"age\"), __.Constant(30))", "go": "g.V().HasLabel(\"person\").Choose(gremlingo.T__.Values(\"age\").Is(gremlingo.P.Gt(30)), gremlingo.T__.Values(\"age\"), gremlingo.T__.Constant(30))", "groovy": "g.V().hasLabel(\"person\").choose(__.values(\"age\").is(P.gt(30)), __.values(\"age\"), __.constant(30))", "java": "g.V().hasLabel(\"person\").choose(__.values(\"age\").is(P.gt(30)), __.values(\"age\"), __.constant(30))", @@ -552,6 +584,7 @@ "canonical": "g.V().hasLabel(\"person\").choose(__.values(\"age\").is(P.gt(29)).and().values(\"age\").is(P.lt(35)), __.values(\"name\"), __.constant(\"other\"))", "anonymized": "g.V().hasLabel(string0).choose(__.values(string1).is(P.gt(number0)).and().values(string1).is(P.lt(number1)), __.values(string2), __.constant(string3))", "dotnet": "g.V().HasLabel(\"person\").Choose(__.Values(\"age\").Is(P.Gt(29)).And().Values(\"age\").Is(P.Lt(35)), __.Values(\"name\"), __.Constant(\"other\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Choose(__.Values(\"age\").Is(P.Gt(29)).And().Values(\"age\").Is(P.Lt(35)), __.Values(\"name\"), __.Constant(\"other\"))", "go": "g.V().HasLabel(\"person\").Choose(gremlingo.T__.Values(\"age\").Is(gremlingo.P.Gt(29)).And().Values(\"age\").Is(gremlingo.P.Lt(35)), gremlingo.T__.Values(\"name\"), gremlingo.T__.Constant(\"other\"))", "groovy": "g.V().hasLabel(\"person\").choose(__.values(\"age\").is(P.gt(29)).and().values(\"age\").is(P.lt(35)), __.values(\"name\"), __.constant(\"other\"))", "java": "g.V().hasLabel(\"person\").choose(__.values(\"age\").is(P.gt(29)).and().values(\"age\").is(P.lt(35)), __.values(\"name\"), __.constant(\"other\"))", @@ -569,6 +602,7 @@ "canonical": "g.V().choose(__.has(\"name\", \"vadas\"), __.values(\"name\"), __.values(\"age\"))", "anonymized": "g.V().choose(__.has(string0, string1), __.values(string0), __.values(string2))", "dotnet": "g.V().Choose(__.Has(\"name\", \"vadas\"), __.Values(\"name\"), __.Values(\"age\"))", + "dotnet_parameterize": "g.V().Choose(__.Has(\"name\", \"vadas\"), __.Values(\"name\"), __.Values(\"age\"))", "go": "g.V().Choose(gremlingo.T__.Has(\"name\", \"vadas\"), gremlingo.T__.Values(\"name\"), gremlingo.T__.Values(\"age\"))", "groovy": "g.V().choose(__.has(\"name\", \"vadas\"), __.values(\"name\"), __.values(\"age\"))", "java": "g.V().choose(__.has(\"name\", \"vadas\"), __.values(\"name\"), __.values(\"age\"))", @@ -586,6 +620,7 @@ "canonical": "g.V().hasLabel(\"person\").choose(__.out(\"created\").count()).option(xx0, __.constant(\"none\")).option(xx1, __.constant(\"one\")).option(xx2, __.constant(\"many\"))", "anonymized": "g.V().hasLabel(string0).choose(__.out(string1).count()).option(xx0, __.constant(string2)).option(xx1, __.constant(string3)).option(xx2, __.constant(string4))", "dotnet": "g.V().HasLabel(\"person\").Choose(__.Out(\"created\").Count()).Option(xx0, __.Constant(\"none\")).Option(xx1, __.Constant(\"one\")).Option(xx2, __.Constant(\"many\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Choose(__.Out(\"created\").Count()).Option(xx0, __.Constant(\"none\")).Option(xx1, __.Constant(\"one\")).Option(xx2, __.Constant(\"many\"))", "go": "g.V().HasLabel(\"person\").Choose(gremlingo.T__.Out(\"created\").Count()).Option(xx0, gremlingo.T__.Constant(\"none\")).Option(xx1, gremlingo.T__.Constant(\"one\")).Option(xx2, gremlingo.T__.Constant(\"many\"))", "groovy": "g.V().hasLabel(\"person\").choose(__.out(\"created\").count()).option(xx0, __.constant(\"none\")).option(xx1, __.constant(\"one\")).option(xx2, __.constant(\"many\"))", "java": "g.V().hasLabel(\"person\").choose(__.out(\"created\").count()).option(xx0, __.constant(\"none\")).option(xx1, __.constant(\"one\")).option(xx2, __.constant(\"many\"))", @@ -603,6 +638,7 @@ "canonical": "g.V().hasLabel(\"person\").choose(__.local(__.out(\"knows\").count())).option(xx0, __.constant(\"noFriends\")).option(Pick.none, __.constant(\"hasFriends\"))", "anonymized": "g.V().hasLabel(string0).choose(__.local(__.out(string1).count())).option(xx0, __.constant(string2)).option(Pick.none, __.constant(string3))", "dotnet": "g.V().HasLabel(\"person\").Choose(__.Local(__.Out(\"knows\").Count())).Option(xx0, __.Constant(\"noFriends\")).Option(Pick.None, __.Constant(\"hasFriends\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Choose(__.Local(__.Out(\"knows\").Count())).Option(xx0, __.Constant(\"noFriends\")).Option(Pick.None, __.Constant(\"hasFriends\"))", "go": "g.V().HasLabel(\"person\").Choose(gremlingo.T__.Local(gremlingo.T__.Out(\"knows\").Count())).Option(xx0, gremlingo.T__.Constant(\"noFriends\")).Option(gremlingo.Pick.None, gremlingo.T__.Constant(\"hasFriends\"))", "groovy": "g.V().hasLabel(\"person\").choose(__.local(__.out(\"knows\").count())).option(xx0, __.constant(\"noFriends\")).option(Pick.none, __.constant(\"hasFriends\"))", "java": "g.V().hasLabel(\"person\").choose(__.local(__.out(\"knows\").count())).option(xx0, __.constant(\"noFriends\")).option(Pick.none, __.constant(\"hasFriends\"))", @@ -620,6 +656,7 @@ "canonical": "g.V().choose(__.outE().count()).option(xx0, __.constant(\"none\")).option(Pick.none, __.constant(\"some\"))", "anonymized": "g.V().choose(__.outE().count()).option(xx0, __.constant(string0)).option(Pick.none, __.constant(string1))", "dotnet": "g.V().Choose(__.OutE().Count()).Option(xx0, __.Constant(\"none\")).Option(Pick.None, __.Constant(\"some\"))", + "dotnet_parameterize": "g.V().Choose(__.OutE().Count()).Option(xx0, __.Constant(\"none\")).Option(Pick.None, __.Constant(\"some\"))", "go": "g.V().Choose(gremlingo.T__.OutE().Count()).Option(xx0, gremlingo.T__.Constant(\"none\")).Option(gremlingo.Pick.None, gremlingo.T__.Constant(\"some\"))", "groovy": "g.V().choose(__.outE().count()).option(xx0, __.constant(\"none\")).option(Pick.none, __.constant(\"some\"))", "java": "g.V().choose(__.outE().count()).option(xx0, __.constant(\"none\")).option(Pick.none, __.constant(\"some\"))", @@ -637,6 +674,7 @@ "canonical": "g.V().choose(__.label()).option(\"person\", __.choose(__.values(\"age\")).option(P.lt(30), __.constant(\"young\")).option(P.gte(30), __.constant(\"old\"))).option(\"software\", __.constant(\"program\")).option(Pick.none, __.constant(\"unknown\"))", "anonymized": "g.V().choose(__.label()).option(string0, __.choose(__.values(string1)).option(P.lt(number0), __.constant(string2)).option(P.gte(number0), __.constant(string3))).option(string4, __.constant(string5)).option(Pick.none, __.constant(string6))", "dotnet": "g.V().Choose(__.Label()).Option(\"person\", __.Choose(__.Values(\"age\")).Option(P.Lt(30), __.Constant(\"young\")).Option(P.Gte(30), __.Constant(\"old\"))).Option(\"software\", __.Constant(\"program\")).Option(Pick.None, __.Constant(\"unknown\"))", + "dotnet_parameterize": "g.V().Choose(__.Label()).Option(\"person\", __.Choose(__.Values(\"age\")).Option(P.Lt(30), __.Constant(\"young\")).Option(P.Gte(30), __.Constant(\"old\"))).Option(\"software\", __.Constant(\"program\")).Option(Pick.None, __.Constant(\"unknown\"))", "go": "g.V().Choose(gremlingo.T__.Label()).Option(\"person\", gremlingo.T__.Choose(gremlingo.T__.Values(\"age\")).Option(gremlingo.P.Lt(30), gremlingo.T__.Constant(\"young\")).Option(gremlingo.P.Gte(30), gremlingo.T__.Constant(\"old\"))).Option(\"software\", gremlingo.T__.Constant(\"program\")).Option(gremlingo.Pick.None, gremlingo.T__.Constant(\"unknown\"))", "groovy": "g.V().choose(__.label()).option(\"person\", __.choose(__.values(\"age\")).option(P.lt(30), __.constant(\"young\")).option(P.gte(30), __.constant(\"old\"))).option(\"software\", __.constant(\"program\")).option(Pick.none, __.constant(\"unknown\"))", "java": "g.V().choose(__.label()).option(\"person\", __.choose(__.values(\"age\")).option(P.lt(30), __.constant(\"young\")).option(P.gte(30), __.constant(\"old\"))).option(\"software\", __.constant(\"program\")).option(Pick.none, __.constant(\"unknown\"))", @@ -654,6 +692,7 @@ "canonical": "g.V().choose(__.has(\"name\", \"vadas\"), __.values(\"name\"))", "anonymized": "g.V().choose(__.has(string0, string1), __.values(string0))", "dotnet": "g.V().Choose(__.Has(\"name\", \"vadas\"), __.Values(\"name\"))", + "dotnet_parameterize": "g.V().Choose(__.Has(\"name\", \"vadas\"), __.Values(\"name\"))", "go": "g.V().Choose(gremlingo.T__.Has(\"name\", \"vadas\"), gremlingo.T__.Values(\"name\"))", "groovy": "g.V().choose(__.has(\"name\", \"vadas\"), __.values(\"name\"))", "java": "g.V().choose(__.has(\"name\", \"vadas\"), __.values(\"name\"))", @@ -671,6 +710,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"age\").choose(P.eq(29), __.constant(\"matched\"), __.constant(\"other\"))", "anonymized": "g.V().hasLabel(string0).values(string1).choose(P.eq(number0), __.constant(string2), __.constant(string3))", "dotnet": "g.V().HasLabel(\"person\").Values(\"age\").Choose(P.Eq(29), __.Constant(\"matched\"), __.Constant(\"other\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"age\").Choose(P.Eq(29), __.Constant(\"matched\"), __.Constant(\"other\"))", "go": "g.V().HasLabel(\"person\").Values(\"age\").Choose(gremlingo.P.Eq(29), gremlingo.T__.Constant(\"matched\"), gremlingo.T__.Constant(\"other\"))", "groovy": "g.V().hasLabel(\"person\").values(\"age\").choose(P.eq(29), __.constant(\"matched\"), __.constant(\"other\"))", "java": "g.V().hasLabel(\"person\").values(\"age\").choose(P.eq(29), __.constant(\"matched\"), __.constant(\"other\"))", @@ -688,6 +728,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"age\").choose(P.eq(29), __.constant(\"matched\"))", "anonymized": "g.V().hasLabel(string0).values(string1).choose(P.eq(number0), __.constant(string2))", "dotnet": "g.V().HasLabel(\"person\").Values(\"age\").Choose(P.Eq(29), __.Constant(\"matched\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"age\").Choose(P.Eq(29), __.Constant(\"matched\"))", "go": "g.V().HasLabel(\"person\").Values(\"age\").Choose(gremlingo.P.Eq(29), gremlingo.T__.Constant(\"matched\"))", "groovy": "g.V().hasLabel(\"person\").values(\"age\").choose(P.eq(29), __.constant(\"matched\"))", "java": "g.V().hasLabel(\"person\").values(\"age\").choose(P.eq(29), __.constant(\"matched\"))", @@ -705,6 +746,7 @@ "canonical": "g.V().hasLabel(\"person\").choose(__.values(\"name\")).option(__.is(\"marko\"), __.values(\"age\")).option(Pick.none, __.values(\"name\"))", "anonymized": "g.V().hasLabel(string0).choose(__.values(string1)).option(__.is(string2), __.values(string3)).option(Pick.none, __.values(string1))", "dotnet": "g.V().HasLabel(\"person\").Choose(__.Values(\"name\")).Option(__.Is(\"marko\"), __.Values(\"age\")).Option(Pick.None, __.Values(\"name\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Choose(__.Values(\"name\")).Option(__.Is(\"marko\"), __.Values(\"age\")).Option(Pick.None, __.Values(\"name\"))", "go": "g.V().HasLabel(\"person\").Choose(gremlingo.T__.Values(\"name\")).Option(gremlingo.T__.Is(\"marko\"), gremlingo.T__.Values(\"age\")).Option(gremlingo.Pick.None, gremlingo.T__.Values(\"name\"))", "groovy": "g.V().hasLabel(\"person\").choose(__.values(\"name\")).option(__.is(\"marko\"), __.values(\"age\")).option(Pick.none, __.values(\"name\"))", "java": "g.V().hasLabel(\"person\").choose(__.values(\"name\")).option(__.is(\"marko\"), __.values(\"age\")).option(Pick.none, __.values(\"name\"))", @@ -722,6 +764,7 @@ "canonical": "g.V().hasLabel(\"person\").choose(__.values(\"name\")).option(P.eq(\"marko\"), __.values(\"age\")).option(Pick.none, __.values(\"name\"))", "anonymized": "g.V().hasLabel(string0).choose(__.values(string1)).option(P.eq(string2), __.values(string3)).option(Pick.none, __.values(string1))", "dotnet": "g.V().HasLabel(\"person\").Choose(__.Values(\"name\")).Option(P.Eq(\"marko\"), __.Values(\"age\")).Option(Pick.None, __.Values(\"name\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Choose(__.Values(\"name\")).Option(P.Eq(\"marko\"), __.Values(\"age\")).Option(Pick.None, __.Values(\"name\"))", "go": "g.V().HasLabel(\"person\").Choose(gremlingo.T__.Values(\"name\")).Option(gremlingo.P.Eq(\"marko\"), gremlingo.T__.Values(\"age\")).Option(gremlingo.Pick.None, gremlingo.T__.Values(\"name\"))", "groovy": "g.V().hasLabel(\"person\").choose(__.values(\"name\")).option(P.eq(\"marko\"), __.values(\"age\")).option(Pick.none, __.values(\"name\"))", "java": "g.V().hasLabel(\"person\").choose(__.values(\"name\")).option(P.eq(\"marko\"), __.values(\"age\")).option(Pick.none, __.values(\"name\"))", @@ -739,6 +782,7 @@ "canonical": "g.V().local(__.properties(\"location\").order().by(T.value, Order.asc).range(0, 2)).value()", "anonymized": "g.V().local(__.properties(string0).order().by(T.value, Order.asc).range(number0, number1)).value()", "dotnet": "g.V().Local(__.Properties(\"location\").Order().By(T.Value, Order.Asc).Range(0, 2)).Value()", + "dotnet_parameterize": "g.V().Local(__.Properties(\"location\").Order().By(T.Value, Order.Asc).Range(0, 2)).Value()", "go": "g.V().Local(gremlingo.T__.Properties(\"location\").Order().By(gremlingo.T.Value, gremlingo.Order.Asc).Range(0, 2)).Value()", "groovy": "g.V().local(__.properties(\"location\").order().by(T.value, Order.asc).range(0, 2)).value()", "java": "g.V().local(__.properties(\"location\").order().by(T.value, Order.asc).range(0, 2)).value()", @@ -756,6 +800,7 @@ "canonical": "g.V().has(T.label, \"person\").as(\"a\").local(__.out(\"created\").as(\"b\")).select(\"a\", \"b\").by(\"name\").by(T.id)", "anonymized": "g.V().has(T.label, string0).as(string1).local(__.out(string2).as(string3)).select(string1, string3).by(string4).by(T.id)", "dotnet": "g.V().Has(T.Label, \"person\").As(\"a\").Local(__.Out(\"created\").As(\"b\")).Select(\"a\", \"b\").By(\"name\").By(T.Id)", + "dotnet_parameterize": "g.V().Has(T.Label, \"person\").As(\"a\").Local(__.Out(\"created\").As(\"b\")).Select(\"a\", \"b\").By(\"name\").By(T.Id)", "go": "g.V().Has(gremlingo.T.Label, \"person\").As(\"a\").Local(gremlingo.T__.Out(\"created\").As(\"b\")).Select(\"a\", \"b\").By(\"name\").By(gremlingo.T.Id)", "groovy": "g.V().has(T.label, \"person\").as(\"a\").local(__.out(\"created\").as(\"b\")).select(\"a\", \"b\").by(\"name\").by(T.id)", "java": "g.V().has(T.label, \"person\").as(\"a\").local(__.out(\"created\").as(\"b\")).select(\"a\", \"b\").by(\"name\").by(T.id)", @@ -773,6 +818,7 @@ "canonical": "g.V().local(__.outE().count())", "anonymized": "g.V().local(__.outE().count())", "dotnet": "g.V().Local(__.OutE().Count())", + "dotnet_parameterize": "g.V().Local(__.OutE().Count())", "go": "g.V().Local(gremlingo.T__.OutE().Count())", "groovy": "g.V().local(__.outE().count())", "java": "g.V().local(__.outE().count())", @@ -790,6 +836,7 @@ "canonical": "g.V(vid1).local(__.outE(\"knows\").limit(1)).inV().values(\"name\")", "anonymized": "g.V(vid1).local(__.outE(string0).limit(number0)).inV().values(string1)", "dotnet": "g.V(vid1).Local(__.OutE(\"knows\").Limit(1)).InV().Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).Local(__.OutE(\"knows\").Limit(1)).InV().Values(\"name\")", "go": "g.V(vid1).Local(gremlingo.T__.OutE(\"knows\").Limit(1)).InV().Values(\"name\")", "groovy": "g.V(vid1).local(__.outE(\"knows\").limit(1)).inV().values(\"name\")", "java": "g.V(vid1).local(__.outE(\"knows\").limit(1)).inV().values(\"name\")", @@ -807,6 +854,7 @@ "canonical": "g.V().local(__.bothE(\"created\").limit(1)).otherV().values(\"name\")", "anonymized": "g.V().local(__.bothE(string0).limit(number0)).otherV().values(string1)", "dotnet": "g.V().Local(__.BothE(\"created\").Limit(1)).OtherV().Values(\"name\")", + "dotnet_parameterize": "g.V().Local(__.BothE(\"created\").Limit(1)).OtherV().Values(\"name\")", "go": "g.V().Local(gremlingo.T__.BothE(\"created\").Limit(1)).OtherV().Values(\"name\")", "groovy": "g.V().local(__.bothE(\"created\").limit(1)).otherV().values(\"name\")", "java": "g.V().local(__.bothE(\"created\").limit(1)).otherV().values(\"name\")", @@ -824,6 +872,7 @@ "canonical": "g.V(vid4).local(__.bothE(\"created\").limit(1))", "anonymized": "g.V(vid4).local(__.bothE(string0).limit(number0))", "dotnet": "g.V(vid4).Local(__.BothE(\"created\").Limit(1))", + "dotnet_parameterize": "g.V(vid4).Local(__.BothE(\"created\").Limit(1))", "go": "g.V(vid4).Local(gremlingo.T__.BothE(\"created\").Limit(1))", "groovy": "g.V(vid4).local(__.bothE(\"created\").limit(1))", "java": "g.V(vid4).local(__.bothE(\"created\").limit(1))", @@ -841,6 +890,7 @@ "canonical": "g.V(vid4).local(__.bothE(\"knows\", \"created\").limit(1))", "anonymized": "g.V(vid4).local(__.bothE(string0, string1).limit(number0))", "dotnet": "g.V(vid4).Local(__.BothE(\"knows\", \"created\").Limit(1))", + "dotnet_parameterize": "g.V(vid4).Local(__.BothE(\"knows\", \"created\").Limit(1))", "go": "g.V(vid4).Local(gremlingo.T__.BothE(\"knows\", \"created\").Limit(1))", "groovy": "g.V(vid4).local(__.bothE(\"knows\", \"created\").limit(1))", "java": "g.V(vid4).local(__.bothE(\"knows\", \"created\").limit(1))", @@ -858,6 +908,7 @@ "canonical": "g.V(vid4).local(__.bothE().limit(1)).otherV().values(\"name\")", "anonymized": "g.V(vid4).local(__.bothE().limit(number0)).otherV().values(string0)", "dotnet": "g.V(vid4).Local(__.BothE().Limit(1)).OtherV().Values(\"name\")", + "dotnet_parameterize": "g.V(vid4).Local(__.BothE().Limit(1)).OtherV().Values(\"name\")", "go": "g.V(vid4).Local(gremlingo.T__.BothE().Limit(1)).OtherV().Values(\"name\")", "groovy": "g.V(vid4).local(__.bothE().limit(1)).otherV().values(\"name\")", "java": "g.V(vid4).local(__.bothE().limit(1)).otherV().values(\"name\")", @@ -875,6 +926,7 @@ "canonical": "g.V(vid4).local(__.bothE().limit(2)).otherV().values(\"name\")", "anonymized": "g.V(vid4).local(__.bothE().limit(number0)).otherV().values(string0)", "dotnet": "g.V(vid4).Local(__.BothE().Limit(2)).OtherV().Values(\"name\")", + "dotnet_parameterize": "g.V(vid4).Local(__.BothE().Limit(2)).OtherV().Values(\"name\")", "go": "g.V(vid4).Local(gremlingo.T__.BothE().Limit(2)).OtherV().Values(\"name\")", "groovy": "g.V(vid4).local(__.bothE().limit(2)).otherV().values(\"name\")", "java": "g.V(vid4).local(__.bothE().limit(2)).otherV().values(\"name\")", @@ -892,6 +944,7 @@ "canonical": "g.V().local(__.inE(\"knows\").limit(2)).outV().values(\"name\")", "anonymized": "g.V().local(__.inE(string0).limit(number0)).outV().values(string1)", "dotnet": "g.V().Local(__.InE(\"knows\").Limit(2)).OutV().Values(\"name\")", + "dotnet_parameterize": "g.V().Local(__.InE(\"knows\").Limit(2)).OutV().Values(\"name\")", "go": "g.V().Local(gremlingo.T__.InE(\"knows\").Limit(2)).OutV().Values(\"name\")", "groovy": "g.V().local(__.inE(\"knows\").limit(2)).outV().values(\"name\")", "java": "g.V().local(__.inE(\"knows\").limit(2)).outV().values(\"name\")", @@ -909,6 +962,7 @@ "canonical": "g.V().local(__.match(__.as(\"project\").in(\"created\").as(\"person\"), __.as(\"person\").values(\"name\").as(\"name\"))).select(\"name\", \"project\").by().by(\"name\")", "anonymized": "g.V().local(__.match(__.as(string0).in(string1).as(string2), __.as(string2).values(string3).as(string3))).select(string3, string0).by().by(string3)", "dotnet": "g.V().Local(__.Match(__.As(\"project\").In(\"created\").As(\"person\"), __.As(\"person\").Values(\"name\").As(\"name\"))).Select(\"name\", \"project\").By().By(\"name\")", + "dotnet_parameterize": "g.V().Local(__.Match(__.As(\"project\").In(\"created\").As(\"person\"), __.As(\"person\").Values(\"name\").As(\"name\"))).Select(\"name\", \"project\").By().By(\"name\")", "go": "g.V().Local(gremlingo.T__.Match(gremlingo.T__.As(\"project\").In(\"created\").As(\"person\"), gremlingo.T__.As(\"person\").Values(\"name\").As(\"name\"))).Select(\"name\", \"project\").By().By(\"name\")", "groovy": "g.V().local(__.match(__.as(\"project\").in(\"created\").as(\"person\"), __.as(\"person\").values(\"name\").as(\"name\"))).select(\"name\", \"project\").by().by(\"name\")", "java": "g.V().local(__.match(__.as(\"project\").in(\"created\").as(\"person\"), __.as(\"person\").values(\"name\").as(\"name\"))).select(\"name\", \"project\").by().by(\"name\")", @@ -926,6 +980,7 @@ "canonical": "g.V().in().barrier().local(__.count())", "anonymized": "g.V().in().barrier().local(__.count())", "dotnet": "g.V().In().Barrier().Local(__.Count())", + "dotnet_parameterize": "g.V().In().Barrier().Local(__.Count())", "go": "g.V().In().Barrier().Local(gremlingo.T__.Count())", "groovy": "g.V().in().barrier().local(__.count())", "java": "g.V().in().barrier().local(__.count())", @@ -943,6 +998,7 @@ "canonical": "g.V().local(__.out().in().simplePath()).path()", "anonymized": "g.V().local(__.out().in().simplePath()).path()", "dotnet": "g.V().Local(__.Out().In().SimplePath()).Path()", + "dotnet_parameterize": "g.V().Local(__.Out().In().SimplePath()).Path()", "go": "g.V().Local(gremlingo.T__.Out().In().SimplePath()).Path()", "groovy": "g.V().local(__.out().in().simplePath()).path()", "java": "g.V().local(__.out().in().simplePath()).path()", @@ -960,6 +1016,7 @@ "canonical": "g.withSack(0l).V().in().barrier().local(__.sack(Operator.sum).by(\"age\")).sack()", "anonymized": "g.withSack(long0).V().in().barrier().local(__.sack(Operator.sum).by(string0)).sack()", "dotnet": "g.WithSack(0l).V().In().Barrier().Local(__.Sack(Operator.Sum).By(\"age\")).Sack()", + "dotnet_parameterize": "g.WithSack(0l).V().In().Barrier().Local(__.Sack(Operator.Sum).By(\"age\")).Sack()", "go": "g.WithSack(int64(0)).V().In().Barrier().Local(gremlingo.T__.Sack(gremlingo.Operator.Sum).By(\"age\")).Sack()", "groovy": "g.withSack(0l).V().in().barrier().local(__.sack(Operator.sum).by(\"age\")).sack()", "java": "g.withSack(0l).V().in().barrier().local(__.sack(Operator.sum).by(\"age\")).sack()", @@ -977,6 +1034,7 @@ "canonical": "g.V().local(__.out().local(__.count()))", "anonymized": "g.V().local(__.out().local(__.count()))", "dotnet": "g.V().Local(__.Out().Local(__.Count()))", + "dotnet_parameterize": "g.V().Local(__.Out().Local(__.Count()))", "go": "g.V().Local(gremlingo.T__.Out().Local(gremlingo.T__.Count()))", "groovy": "g.V().local(__.out().local(__.count()))", "java": "g.V().local(__.out().local(__.count()))", @@ -994,6 +1052,7 @@ "canonical": "g.V().union(__.outE().count(), __.local(__.inE().count()))", "anonymized": "g.V().union(__.outE().count(), __.local(__.inE().count()))", "dotnet": "g.V().Union(__.OutE().Count(), __.Local(__.InE().Count()))", + "dotnet_parameterize": "g.V().Union(__.OutE().Count(), __.Local(__.InE().Count()))", "go": "g.V().Union(gremlingo.T__.OutE().Count(), gremlingo.T__.Local(gremlingo.T__.InE().Count()))", "groovy": "g.V().union(__.outE().count(), __.local(__.inE().count()))", "java": "g.V().union(__.outE().count(), __.local(__.inE().count()))", @@ -1011,6 +1070,7 @@ "canonical": "g.V(vid2).optional(__.out(\"knows\"))", "anonymized": "g.V(vid2).optional(__.out(string0))", "dotnet": "g.V(vid2).Optional(__.Out(\"knows\"))", + "dotnet_parameterize": "g.V(vid2).Optional(__.Out(\"knows\"))", "go": "g.V(vid2).Optional(gremlingo.T__.Out(\"knows\"))", "groovy": "g.V(vid2).optional(__.out(\"knows\"))", "java": "g.V(vid2).optional(__.out(\"knows\"))", @@ -1028,6 +1088,7 @@ "canonical": "g.V(vid2).optional(__.in(\"knows\"))", "anonymized": "g.V(vid2).optional(__.in(string0))", "dotnet": "g.V(vid2).Optional(__.In(\"knows\"))", + "dotnet_parameterize": "g.V(vid2).Optional(__.In(\"knows\"))", "go": "g.V(vid2).Optional(gremlingo.T__.In(\"knows\"))", "groovy": "g.V(vid2).optional(__.in(\"knows\"))", "java": "g.V(vid2).optional(__.in(\"knows\"))", @@ -1045,6 +1106,7 @@ "canonical": "g.V().hasLabel(\"person\").optional(__.out(\"knows\").optional(__.out(\"created\"))).path()", "anonymized": "g.V().hasLabel(string0).optional(__.out(string1).optional(__.out(string2))).path()", "dotnet": "g.V().HasLabel(\"person\").Optional(__.Out(\"knows\").Optional(__.Out(\"created\"))).Path()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Optional(__.Out(\"knows\").Optional(__.Out(\"created\"))).Path()", "go": "g.V().HasLabel(\"person\").Optional(gremlingo.T__.Out(\"knows\").Optional(gremlingo.T__.Out(\"created\"))).Path()", "groovy": "g.V().hasLabel(\"person\").optional(__.out(\"knows\").optional(__.out(\"created\"))).path()", "java": "g.V().hasLabel(\"person\").optional(__.out(\"knows\").optional(__.out(\"created\"))).path()", @@ -1062,6 +1124,7 @@ "canonical": "g.V().optional(__.out().optional(__.out())).path()", "anonymized": "g.V().optional(__.out().optional(__.out())).path()", "dotnet": "g.V().Optional(__.Out().Optional(__.Out())).Path()", + "dotnet_parameterize": "g.V().Optional(__.Out().Optional(__.Out())).Path()", "go": "g.V().Optional(gremlingo.T__.Out().Optional(gremlingo.T__.Out())).Path()", "groovy": "g.V().optional(__.out().optional(__.out())).path()", "java": "g.V().optional(__.out().optional(__.out())).path()", @@ -1079,6 +1142,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -1091,6 +1155,7 @@ "canonical": "g.V(vid1).optional(__.addV(\"dog\")).label()", "anonymized": "g.V(vid1).optional(__.addV(string0)).label()", "dotnet": "g.V(vid1).Optional(__.AddV((string) \"dog\")).Label()", + "dotnet_parameterize": "g.V(vid1).Optional(__.AddV((string) \"dog\")).Label()", "go": "g.V(vid1).Optional(gremlingo.T__.AddV(\"dog\")).Label()", "groovy": "g.V(vid1).optional(__.addV(\"dog\")).label()", "java": "g.V(vid1).optional(__.addV(\"dog\")).label()", @@ -1103,6 +1168,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -1120,6 +1186,7 @@ "canonical": "g.V().repeat(__.out()).times(2).emit().path()", "anonymized": "g.V().repeat(__.out()).times(number0).emit().path()", "dotnet": "g.V().Repeat(__.Out()).Times(2).Emit().Path()", + "dotnet_parameterize": "g.V().Repeat(__.Out()).Times(2).Emit().Path()", "go": "g.V().Repeat(gremlingo.T__.Out()).Times(2).Emit().Path()", "groovy": "g.V().repeat(__.out()).times(2).emit().path()", "java": "g.V().repeat(__.out()).times(2).emit().path()", @@ -1137,6 +1204,7 @@ "canonical": "g.V().repeat(__.out()).times(2).repeat(__.in()).times(2).values(\"name\")", "anonymized": "g.V().repeat(__.out()).times(number0).repeat(__.in()).times(number0).values(string0)", "dotnet": "g.V().Repeat(__.Out()).Times(2).Repeat(__.In()).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V().Repeat(__.Out()).Times(2).Repeat(__.In()).Times(2).Values(\"name\")", "go": "g.V().Repeat(gremlingo.T__.Out()).Times(2).Repeat(gremlingo.T__.In()).Times(2).Values(\"name\")", "groovy": "g.V().repeat(__.out()).times(2).repeat(__.in()).times(2).values(\"name\")", "java": "g.V().repeat(__.out()).times(2).repeat(__.in()).times(2).values(\"name\")", @@ -1154,6 +1222,7 @@ "canonical": "g.V().repeat(__.outE().inV()).times(2).path().by(\"name\").by(T.label)", "anonymized": "g.V().repeat(__.outE().inV()).times(number0).path().by(string0).by(T.label)", "dotnet": "g.V().Repeat(__.OutE().InV()).Times(2).Path().By(\"name\").By(T.Label)", + "dotnet_parameterize": "g.V().Repeat(__.OutE().InV()).Times(2).Path().By(\"name\").By(T.Label)", "go": "g.V().Repeat(gremlingo.T__.OutE().InV()).Times(2).Path().By(\"name\").By(gremlingo.T.Label)", "groovy": "g.V().repeat(__.outE().inV()).times(2).path().by(\"name\").by(T.label)", "java": "g.V().repeat(__.outE().inV()).times(2).path().by(\"name\").by(T.label)", @@ -1171,6 +1240,7 @@ "canonical": "g.V().repeat(__.out()).times(2)", "anonymized": "g.V().repeat(__.out()).times(number0)", "dotnet": "g.V().Repeat(__.Out()).Times(2)", + "dotnet_parameterize": "g.V().Repeat(__.Out()).Times(2)", "go": "g.V().Repeat(gremlingo.T__.Out()).Times(2)", "groovy": "g.V().repeat(__.out()).times(2)", "java": "g.V().repeat(__.out()).times(2)", @@ -1188,6 +1258,7 @@ "canonical": "g.V().repeat(__.out()).times(2).emit()", "anonymized": "g.V().repeat(__.out()).times(number0).emit()", "dotnet": "g.V().Repeat(__.Out()).Times(2).Emit()", + "dotnet_parameterize": "g.V().Repeat(__.Out()).Times(2).Emit()", "go": "g.V().Repeat(gremlingo.T__.Out()).Times(2).Emit()", "groovy": "g.V().repeat(__.out()).times(2).emit()", "java": "g.V().repeat(__.out()).times(2).emit()", @@ -1205,6 +1276,7 @@ "canonical": "g.V(vid1).times(2).repeat(__.out()).values(\"name\")", "anonymized": "g.V(vid1).times(number0).repeat(__.out()).values(string0)", "dotnet": "g.V(vid1).Times(2).Repeat(__.Out()).Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).Times(2).Repeat(__.Out()).Values(\"name\")", "go": "g.V(vid1).Times(2).Repeat(gremlingo.T__.Out()).Values(\"name\")", "groovy": "g.V(vid1).times(2).repeat(__.out()).values(\"name\")", "java": "g.V(vid1).times(2).repeat(__.out()).values(\"name\")", @@ -1222,6 +1294,7 @@ "canonical": "g.V().emit().times(2).repeat(__.out()).path()", "anonymized": "g.V().emit().times(number0).repeat(__.out()).path()", "dotnet": "g.V().Emit().Times(2).Repeat(__.Out()).Path()", + "dotnet_parameterize": "g.V().Emit().Times(2).Repeat(__.Out()).Path()", "go": "g.V().Emit().Times(2).Repeat(gremlingo.T__.Out()).Path()", "groovy": "g.V().emit().times(2).repeat(__.out()).path()", "java": "g.V().emit().times(2).repeat(__.out()).path()", @@ -1239,6 +1312,7 @@ "canonical": "g.V().emit().repeat(__.out()).times(2).path()", "anonymized": "g.V().emit().repeat(__.out()).times(number0).path()", "dotnet": "g.V().Emit().Repeat(__.Out()).Times(2).Path()", + "dotnet_parameterize": "g.V().Emit().Repeat(__.Out()).Times(2).Path()", "go": "g.V().Emit().Repeat(gremlingo.T__.Out()).Times(2).Path()", "groovy": "g.V().emit().repeat(__.out()).times(2).path()", "java": "g.V().emit().repeat(__.out()).times(2).path()", @@ -1256,6 +1330,7 @@ "canonical": "g.V(vid1).emit(__.has(T.label, \"person\")).repeat(__.out()).values(\"name\")", "anonymized": "g.V(vid1).emit(__.has(T.label, string0)).repeat(__.out()).values(string1)", "dotnet": "g.V(vid1).Emit(__.Has(T.Label, \"person\")).Repeat(__.Out()).Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).Emit(__.Has(T.Label, \"person\")).Repeat(__.Out()).Values(\"name\")", "go": "g.V(vid1).Emit(gremlingo.T__.Has(gremlingo.T.Label, \"person\")).Repeat(gremlingo.T__.Out()).Values(\"name\")", "groovy": "g.V(vid1).emit(__.has(T.label, \"person\")).repeat(__.out()).values(\"name\")", "java": "g.V(vid1).emit(__.has(T.label, \"person\")).repeat(__.out()).values(\"name\")", @@ -1273,6 +1348,7 @@ "canonical": "g.V().repeat(__.groupCount(\"m\").by(\"name\").out()).times(2).cap(\"m\")", "anonymized": "g.V().repeat(__.groupCount(string0).by(string1).out()).times(number0).cap(string0)", "dotnet": "g.V().Repeat(__.GroupCount(\"m\").By(\"name\").Out()).Times(2).Cap(\"m\")", + "dotnet_parameterize": "g.V().Repeat(__.GroupCount(\"m\").By(\"name\").Out()).Times(2).Cap(\"m\")", "go": "g.V().Repeat(gremlingo.T__.GroupCount(\"m\").By(\"name\").Out()).Times(2).Cap(\"m\")", "groovy": "g.V().repeat(__.groupCount(\"m\").by(\"name\").out()).times(2).cap(\"m\")", "java": "g.V().repeat(__.groupCount(\"m\").by(\"name\").out()).times(2).cap(\"m\")", @@ -1290,6 +1366,7 @@ "canonical": "g.V(vid1).repeat(__.groupCount(\"m\").by(__.loops()).out()).times(3).cap(\"m\")", "anonymized": "g.V(vid1).repeat(__.groupCount(string0).by(__.loops()).out()).times(number0).cap(string0)", "dotnet": "g.V(vid1).Repeat(__.GroupCount(\"m\").By(__.Loops()).Out()).Times(3).Cap(\"m\")", + "dotnet_parameterize": "g.V(vid1).Repeat(__.GroupCount(\"m\").By(__.Loops()).Out()).Times(3).Cap(\"m\")", "go": "g.V(vid1).Repeat(gremlingo.T__.GroupCount(\"m\").By(gremlingo.T__.Loops()).Out()).Times(3).Cap(\"m\")", "groovy": "g.V(vid1).repeat(__.groupCount(\"m\").by(__.loops()).out()).times(3).cap(\"m\")", "java": "g.V(vid1).repeat(__.groupCount(\"m\").by(__.loops()).out()).times(3).cap(\"m\")", @@ -1307,6 +1384,7 @@ "canonical": "g.V().repeat(__.both()).times(10).as(\"a\").out().as(\"b\").select(\"a\", \"b\").count()", "anonymized": "g.V().repeat(__.both()).times(number0).as(string0).out().as(string1).select(string0, string1).count()", "dotnet": "g.V().Repeat(__.Both()).Times(10).As(\"a\").Out().As(\"b\").Select(\"a\", \"b\").Count()", + "dotnet_parameterize": "g.V().Repeat(__.Both()).Times(10).As(\"a\").Out().As(\"b\").Select(\"a\", \"b\").Count()", "go": "g.V().Repeat(gremlingo.T__.Both()).Times(10).As(\"a\").Out().As(\"b\").Select(\"a\", \"b\").Count()", "groovy": "g.V().repeat(__.both()).times(10).as(\"a\").out().as(\"b\").select(\"a\", \"b\").count()", "java": "g.V().repeat(__.both()).times(10).as(\"a\").out().as(\"b\").select(\"a\", \"b\").count()", @@ -1324,6 +1402,7 @@ "canonical": "g.V(vid1).repeat(__.out()).until(__.outE().count().is(0)).values(\"name\")", "anonymized": "g.V(vid1).repeat(__.out()).until(__.outE().count().is(number0)).values(string0)", "dotnet": "g.V(vid1).Repeat(__.Out()).Until(__.OutE().Count().Is(0)).Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).Repeat(__.Out()).Until(__.OutE().Count().Is(0)).Values(\"name\")", "go": "g.V(vid1).Repeat(gremlingo.T__.Out()).Until(gremlingo.T__.OutE().Count().Is(0)).Values(\"name\")", "groovy": "g.V(vid1).repeat(__.out()).until(__.outE().count().is(0)).values(\"name\")", "java": "g.V(vid1).repeat(__.out()).until(__.outE().count().is(0)).values(\"name\")", @@ -1341,6 +1420,7 @@ "canonical": "g.V().has(\"name\", \"marko\").repeat(__.outE().inV().simplePath()).until(__.has(\"name\", \"ripple\")).path().by(\"name\").by(T.label)", "anonymized": "g.V().has(string0, string1).repeat(__.outE().inV().simplePath()).until(__.has(string0, string2)).path().by(string0).by(T.label)", "dotnet": "g.V().Has(\"name\", \"marko\").Repeat(__.OutE().InV().SimplePath()).Until(__.Has(\"name\", \"ripple\")).Path().By(\"name\").By(T.Label)", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Repeat(__.OutE().InV().SimplePath()).Until(__.Has(\"name\", \"ripple\")).Path().By(\"name\").By(T.Label)", "go": "g.V().Has(\"name\", \"marko\").Repeat(gremlingo.T__.OutE().InV().SimplePath()).Until(gremlingo.T__.Has(\"name\", \"ripple\")).Path().By(\"name\").By(gremlingo.T.Label)", "groovy": "g.V().has(\"name\", \"marko\").repeat(__.outE().inV().simplePath()).until(__.has(\"name\", \"ripple\")).path().by(\"name\").by(T.label)", "java": "g.V().has(\"name\", \"marko\").repeat(__.outE().inV().simplePath()).until(__.has(\"name\", \"ripple\")).path().by(\"name\").by(T.label)", @@ -1358,6 +1438,7 @@ "canonical": "g.V().has(\"loops\", \"name\", \"loop\").repeat(__.in()).times(5).path().by(\"name\")", "anonymized": "g.V().has(string0, string1, string2).repeat(__.in()).times(number0).path().by(string1)", "dotnet": "g.V().Has(\"loops\", \"name\", \"loop\").Repeat(__.In()).Times(5).Path().By(\"name\")", + "dotnet_parameterize": "g.V().Has(\"loops\", \"name\", \"loop\").Repeat(__.In()).Times(5).Path().By(\"name\")", "go": "g.V().Has(\"loops\", \"name\", \"loop\").Repeat(gremlingo.T__.In()).Times(5).Path().By(\"name\")", "groovy": "g.V().has(\"loops\", \"name\", \"loop\").repeat(__.in()).times(5).path().by(\"name\")", "java": "g.V().has(\"loops\", \"name\", \"loop\").repeat(__.in()).times(5).path().by(\"name\")", @@ -1375,6 +1456,7 @@ "canonical": "g.V().repeat(__.out().repeat(__.out().order().by(\"name\", Order.desc)).times(1)).times(1).limit(1).path().by(\"name\")", "anonymized": "g.V().repeat(__.out().repeat(__.out().order().by(string0, Order.desc)).times(number0)).times(number0).limit(number0).path().by(string0)", "dotnet": "g.V().Repeat(__.Out().Repeat(__.Out().Order().By(\"name\", Order.Desc)).Times(1)).Times(1).Limit(1).Path().By(\"name\")", + "dotnet_parameterize": "g.V().Repeat(__.Out().Repeat(__.Out().Order().By(\"name\", Order.Desc)).Times(1)).Times(1).Limit(1).Path().By(\"name\")", "go": "g.V().Repeat(gremlingo.T__.Out().Repeat(gremlingo.T__.Out().Order().By(\"name\", gremlingo.Order.Desc)).Times(1)).Times(1).Limit(1).Path().By(\"name\")", "groovy": "g.V().repeat(__.out().repeat(__.out().order().by(\"name\", Order.desc)).times(1)).times(1).limit(1).path().by(\"name\")", "java": "g.V().repeat(__.out().repeat(__.out().order().by(\"name\", Order.desc)).times(1)).times(1).limit(1).path().by(\"name\")", @@ -1392,6 +1474,7 @@ "canonical": "g.V().repeat(__.out(\"knows\")).until(__.repeat(__.out(\"created\")).emit(__.has(\"name\", \"lop\"))).path().by(\"name\")", "anonymized": "g.V().repeat(__.out(string0)).until(__.repeat(__.out(string1)).emit(__.has(string2, string3))).path().by(string2)", "dotnet": "g.V().Repeat(__.Out(\"knows\")).Until(__.Repeat(__.Out(\"created\")).Emit(__.Has(\"name\", \"lop\"))).Path().By(\"name\")", + "dotnet_parameterize": "g.V().Repeat(__.Out(\"knows\")).Until(__.Repeat(__.Out(\"created\")).Emit(__.Has(\"name\", \"lop\"))).Path().By(\"name\")", "go": "g.V().Repeat(gremlingo.T__.Out(\"knows\")).Until(gremlingo.T__.Repeat(gremlingo.T__.Out(\"created\")).Emit(gremlingo.T__.Has(\"name\", \"lop\"))).Path().By(\"name\")", "groovy": "g.V().repeat(__.out(\"knows\")).until(__.repeat(__.out(\"created\")).emit(__.has(\"name\", \"lop\"))).path().by(\"name\")", "java": "g.V().repeat(__.out(\"knows\")).until(__.repeat(__.out(\"created\")).emit(__.has(\"name\", \"lop\"))).path().by(\"name\")", @@ -1409,6 +1492,7 @@ "canonical": "g.V().repeat(__.repeat(__.out(\"created\")).until(__.has(\"name\", \"ripple\"))).emit().values(\"lang\")", "anonymized": "g.V().repeat(__.repeat(__.out(string0)).until(__.has(string1, string2))).emit().values(string3)", "dotnet": "g.V().Repeat(__.Repeat(__.Out(\"created\")).Until(__.Has(\"name\", \"ripple\"))).Emit().Values(\"lang\")", + "dotnet_parameterize": "g.V().Repeat(__.Repeat(__.Out(\"created\")).Until(__.Has(\"name\", \"ripple\"))).Emit().Values(\"lang\")", "go": "g.V().Repeat(gremlingo.T__.Repeat(gremlingo.T__.Out(\"created\")).Until(gremlingo.T__.Has(\"name\", \"ripple\"))).Emit().Values(\"lang\")", "groovy": "g.V().repeat(__.repeat(__.out(\"created\")).until(__.has(\"name\", \"ripple\"))).emit().values(\"lang\")", "java": "g.V().repeat(__.repeat(__.out(\"created\")).until(__.has(\"name\", \"ripple\"))).emit().values(\"lang\")", @@ -1426,6 +1510,7 @@ "canonical": "g.V().until(__.constant(true)).repeat(__.repeat(__.out(\"created\")).until(__.has(\"name\", \"ripple\"))).emit().values(\"lang\")", "anonymized": "g.V().until(__.constant(boolean0)).repeat(__.repeat(__.out(string0)).until(__.has(string1, string2))).emit().values(string3)", "dotnet": "g.V().Until(__.Constant(true)).Repeat(__.Repeat(__.Out(\"created\")).Until(__.Has(\"name\", \"ripple\"))).Emit().Values(\"lang\")", + "dotnet_parameterize": "g.V().Until(__.Constant(true)).Repeat(__.Repeat(__.Out(\"created\")).Until(__.Has(\"name\", \"ripple\"))).Emit().Values(\"lang\")", "go": "g.V().Until(gremlingo.T__.Constant(true)).Repeat(gremlingo.T__.Repeat(gremlingo.T__.Out(\"created\")).Until(gremlingo.T__.Has(\"name\", \"ripple\"))).Emit().Values(\"lang\")", "groovy": "g.V().until(__.constant(true)).repeat(__.repeat(__.out(\"created\")).until(__.has(\"name\", \"ripple\"))).emit().values(\"lang\")", "java": "g.V().until(__.constant(true)).repeat(__.repeat(__.out(\"created\")).until(__.has(\"name\", \"ripple\"))).emit().values(\"lang\")", @@ -1443,6 +1528,7 @@ "canonical": "g.V().emit().repeat(\"a\", __.out(\"knows\").filter(__.loops(\"a\").is(0))).values(\"lang\")", "anonymized": "g.V().emit().repeat(string0, __.out(string1).filter(__.loops(string0).is(number0))).values(string2)", "dotnet": "g.V().Emit().Repeat(\"a\", __.Out(\"knows\").Filter(__.Loops(\"a\").Is(0))).Values(\"lang\")", + "dotnet_parameterize": "g.V().Emit().Repeat(\"a\", __.Out(\"knows\").Filter(__.Loops(\"a\").Is(0))).Values(\"lang\")", "go": "g.V().Emit().Repeat(\"a\", gremlingo.T__.Out(\"knows\").Filter(gremlingo.T__.Loops(\"a\").Is(0))).Values(\"lang\")", "groovy": "g.V().emit().repeat(\"a\", __.out(\"knows\").filter(__.loops(\"a\").is(0))).values(\"lang\")", "java": "g.V().emit().repeat(\"a\", __.out(\"knows\").filter(__.loops(\"a\").is(0))).values(\"lang\")", @@ -1460,6 +1546,7 @@ "canonical": "g.V(vid3).repeat(__.both(\"created\")).until(__.loops().is(40)).emit(__.repeat(__.in(\"knows\")).emit(__.loops().is(1))).dedup().values(\"name\")", "anonymized": "g.V(vid3).repeat(__.both(string0)).until(__.loops().is(number0)).emit(__.repeat(__.in(string1)).emit(__.loops().is(number1))).dedup().values(string2)", "dotnet": "g.V(vid3).Repeat(__.Both(\"created\")).Until(__.Loops().Is(40)).Emit(__.Repeat(__.In(\"knows\")).Emit(__.Loops().Is(1))).Dedup().Values(\"name\")", + "dotnet_parameterize": "g.V(vid3).Repeat(__.Both(\"created\")).Until(__.Loops().Is(40)).Emit(__.Repeat(__.In(\"knows\")).Emit(__.Loops().Is(1))).Dedup().Values(\"name\")", "go": "g.V(vid3).Repeat(gremlingo.T__.Both(\"created\")).Until(gremlingo.T__.Loops().Is(40)).Emit(gremlingo.T__.Repeat(gremlingo.T__.In(\"knows\")).Emit(gremlingo.T__.Loops().Is(1))).Dedup().Values(\"name\")", "groovy": "g.V(vid3).repeat(__.both(\"created\")).until(__.loops().is(40)).emit(__.repeat(__.in(\"knows\")).emit(__.loops().is(1))).dedup().values(\"name\")", "java": "g.V(vid3).repeat(__.both(\"created\")).until(__.loops().is(40)).emit(__.repeat(__.in(\"knows\")).emit(__.loops().is(1))).dedup().values(\"name\")", @@ -1477,6 +1564,7 @@ "canonical": "g.V(vid1).repeat(__.repeat(__.union(__.out(\"uses\"), __.out(\"traverses\")).where(__.loops().is(0))).times(1)).times(2).values(\"name\")", "anonymized": "g.V(vid1).repeat(__.repeat(__.union(__.out(string0), __.out(string1)).where(__.loops().is(number0))).times(number1)).times(number2).values(string2)", "dotnet": "g.V(vid1).Repeat(__.Repeat(__.Union(__.Out(\"uses\"), __.Out(\"traverses\")).Where(__.Loops().Is(0))).Times(1)).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).Repeat(__.Repeat(__.Union(__.Out(\"uses\"), __.Out(\"traverses\")).Where(__.Loops().Is(0))).Times(1)).Times(2).Values(\"name\")", "go": "g.V(vid1).Repeat(gremlingo.T__.Repeat(gremlingo.T__.Union(gremlingo.T__.Out(\"uses\"), gremlingo.T__.Out(\"traverses\")).Where(gremlingo.T__.Loops().Is(0))).Times(1)).Times(2).Values(\"name\")", "groovy": "g.V(vid1).repeat(__.repeat(__.union(__.out(\"uses\"), __.out(\"traverses\")).where(__.loops().is(0))).times(1)).times(2).values(\"name\")", "java": "g.V(vid1).repeat(__.repeat(__.union(__.out(\"uses\"), __.out(\"traverses\")).where(__.loops().is(0))).times(1)).times(2).values(\"name\")", @@ -1494,6 +1582,7 @@ "canonical": "g.V().repeat(\"a\", __.out(\"knows\").repeat(\"b\", __.out(\"created\").filter(__.loops(\"a\").is(0))).emit()).emit().values(\"lang\")", "anonymized": "g.V().repeat(string0, __.out(string1).repeat(string2, __.out(string3).filter(__.loops(string0).is(number0))).emit()).emit().values(string4)", "dotnet": "g.V().Repeat(\"a\", __.Out(\"knows\").Repeat(\"b\", __.Out(\"created\").Filter(__.Loops(\"a\").Is(0))).Emit()).Emit().Values(\"lang\")", + "dotnet_parameterize": "g.V().Repeat(\"a\", __.Out(\"knows\").Repeat(\"b\", __.Out(\"created\").Filter(__.Loops(\"a\").Is(0))).Emit()).Emit().Values(\"lang\")", "go": "g.V().Repeat(\"a\", gremlingo.T__.Out(\"knows\").Repeat(\"b\", gremlingo.T__.Out(\"created\").Filter(gremlingo.T__.Loops(\"a\").Is(0))).Emit()).Emit().Values(\"lang\")", "groovy": "g.V().repeat(\"a\", __.out(\"knows\").repeat(\"b\", __.out(\"created\").filter(__.loops(\"a\").is(0))).emit()).emit().values(\"lang\")", "java": "g.V().repeat(\"a\", __.out(\"knows\").repeat(\"b\", __.out(\"created\").filter(__.loops(\"a\").is(0))).emit()).emit().values(\"lang\")", @@ -1511,6 +1600,7 @@ "canonical": "g.V(vid6).repeat(\"a\", __.both(\"created\").simplePath()).emit(__.repeat(\"b\", __.both(\"knows\")).until(__.loops(\"b\").as(\"b\").where(__.loops(\"a\").as(\"b\"))).has(\"name\", \"vadas\")).dedup().values(\"name\")", "anonymized": "g.V(vid6).repeat(string0, __.both(string1).simplePath()).emit(__.repeat(string2, __.both(string3)).until(__.loops(string2).as(string2).where(__.loops(string0).as(string2))).has(string4, string5)).dedup().values(string4)", "dotnet": "g.V(vid6).Repeat(\"a\", __.Both(\"created\").SimplePath()).Emit(__.Repeat(\"b\", __.Both(\"knows\")).Until(__.Loops(\"b\").As(\"b\").Where(__.Loops(\"a\").As(\"b\"))).Has(\"name\", \"vadas\")).Dedup().Values(\"name\")", + "dotnet_parameterize": "g.V(vid6).Repeat(\"a\", __.Both(\"created\").SimplePath()).Emit(__.Repeat(\"b\", __.Both(\"knows\")).Until(__.Loops(\"b\").As(\"b\").Where(__.Loops(\"a\").As(\"b\"))).Has(\"name\", \"vadas\")).Dedup().Values(\"name\")", "go": "g.V(vid6).Repeat(\"a\", gremlingo.T__.Both(\"created\").SimplePath()).Emit(gremlingo.T__.Repeat(\"b\", gremlingo.T__.Both(\"knows\")).Until(gremlingo.T__.Loops(\"b\").As(\"b\").Where(gremlingo.T__.Loops(\"a\").As(\"b\"))).Has(\"name\", \"vadas\")).Dedup().Values(\"name\")", "groovy": "g.V(vid6).repeat(\"a\", __.both(\"created\").simplePath()).emit(__.repeat(\"b\", __.both(\"knows\")).until(__.loops(\"b\").as(\"b\").where(__.loops(\"a\").as(\"b\"))).has(\"name\", \"vadas\")).dedup().values(\"name\")", "java": "g.V(vid6).repeat(\"a\", __.both(\"created\").simplePath()).emit(__.repeat(\"b\", __.both(\"knows\")).until(__.loops(\"b\").as(\"b\").where(__.loops(\"a\").as(\"b\"))).has(\"name\", \"vadas\")).dedup().values(\"name\")", @@ -1528,6 +1618,7 @@ "canonical": "g.V().emit()", "anonymized": "g.V().emit()", "dotnet": "g.V().Emit()", + "dotnet_parameterize": "g.V().Emit()", "go": "g.V().Emit()", "groovy": "g.V().emit()", "java": "g.V().emit()", @@ -1545,6 +1636,7 @@ "canonical": "g.V().until(__.identity())", "anonymized": "g.V().until(__.identity())", "dotnet": "g.V().Until(__.Identity())", + "dotnet_parameterize": "g.V().Until(__.Identity())", "go": "g.V().Until(gremlingo.T__.Identity())", "groovy": "g.V().until(__.identity())", "java": "g.V().until(__.identity())", @@ -1562,6 +1654,7 @@ "canonical": "g.V().times(5)", "anonymized": "g.V().times(number0)", "dotnet": "g.V().Times(5)", + "dotnet_parameterize": "g.V().Times(5)", "go": "g.V().Times(5)", "groovy": "g.V().times(5)", "java": "g.V().times(5)", @@ -1579,6 +1672,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").repeat(__.out(\"created\")).times(1).values(\"name\")", "anonymized": "g.V().has(string0, string1, string2).repeat(__.out(string3)).times(number0).values(string1)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Repeat(__.Out(\"created\")).Times(1).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Repeat(__.Out(\"created\")).Times(1).Values(\"name\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Repeat(gremlingo.T__.Out(\"created\")).Times(1).Values(\"name\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").repeat(__.out(\"created\")).times(1).values(\"name\")", "java": "g.V().has(\"person\", \"name\", \"marko\").repeat(__.out(\"created\")).times(1).values(\"name\")", @@ -1596,6 +1690,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").repeat(__.out(\"created\")).times(0).values(\"name\")", "anonymized": "g.V().has(string0, string1, string2).repeat(__.out(string3)).times(number0).values(string1)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Repeat(__.Out(\"created\")).Times(0).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Repeat(__.Out(\"created\")).Times(0).Values(\"name\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Repeat(gremlingo.T__.Out(\"created\")).Times(0).Values(\"name\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").repeat(__.out(\"created\")).times(0).values(\"name\")", "java": "g.V().has(\"person\", \"name\", \"marko\").repeat(__.out(\"created\")).times(0).values(\"name\")", @@ -1613,6 +1708,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").times(1).repeat(__.out(\"created\")).values(\"name\")", "anonymized": "g.V().has(string0, string1, string2).times(number0).repeat(__.out(string3)).values(string1)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Times(1).Repeat(__.Out(\"created\")).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Times(1).Repeat(__.Out(\"created\")).Values(\"name\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Times(1).Repeat(gremlingo.T__.Out(\"created\")).Values(\"name\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").times(1).repeat(__.out(\"created\")).values(\"name\")", "java": "g.V().has(\"person\", \"name\", \"marko\").times(1).repeat(__.out(\"created\")).values(\"name\")", @@ -1630,6 +1726,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").times(0).repeat(__.out(\"created\")).values(\"name\")", "anonymized": "g.V().has(string0, string1, string2).times(number0).repeat(__.out(string3)).values(string1)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Times(0).Repeat(__.Out(\"created\")).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Times(0).Repeat(__.Out(\"created\")).Values(\"name\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Times(0).Repeat(gremlingo.T__.Out(\"created\")).Values(\"name\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").times(0).repeat(__.out(\"created\")).values(\"name\")", "java": "g.V().has(\"person\", \"name\", \"marko\").times(0).repeat(__.out(\"created\")).values(\"name\")", @@ -1647,6 +1744,7 @@ "canonical": "g.V().repeat(__.both().has(\"not\", \"productive\")).times(3).constant(1)", "anonymized": "g.V().repeat(__.both().has(string0, string1)).times(number0).constant(number1)", "dotnet": "g.V().Repeat(__.Both().Has(\"not\", \"productive\")).Times(3).Constant(1)", + "dotnet_parameterize": "g.V().Repeat(__.Both().Has(\"not\", \"productive\")).Times(3).Constant(1)", "go": "g.V().Repeat(gremlingo.T__.Both().Has(\"not\", \"productive\")).Times(3).Constant(1)", "groovy": "g.V().repeat(__.both().has(\"not\", \"productive\")).times(3).constant(1)", "java": "g.V().repeat(__.both().has(\"not\", \"productive\")).times(3).constant(1)", @@ -1664,6 +1762,7 @@ "canonical": "g.V().has(\"not\", \"productive\").repeat(__.both()).times(3).constant(1)", "anonymized": "g.V().has(string0, string1).repeat(__.both()).times(number0).constant(number1)", "dotnet": "g.V().Has(\"not\", \"productive\").Repeat(__.Both()).Times(3).Constant(1)", + "dotnet_parameterize": "g.V().Has(\"not\", \"productive\").Repeat(__.Both()).Times(3).Constant(1)", "go": "g.V().Has(\"not\", \"productive\").Repeat(gremlingo.T__.Both()).Times(3).Constant(1)", "groovy": "g.V().has(\"not\", \"productive\").repeat(__.both()).times(3).constant(1)", "java": "g.V().has(\"not\", \"productive\").repeat(__.both()).times(3).constant(1)", @@ -1681,6 +1780,7 @@ "canonical": "g.V(vid1, vid2, vid3).repeat(__.both().barrier()).emit().times(2).path()", "anonymized": "g.V(vid1, vid2, vid3).repeat(__.both().barrier()).emit().times(number0).path()", "dotnet": "g.V(vid1, vid2, vid3).Repeat(__.Both().Barrier()).Emit().Times(2).Path()", + "dotnet_parameterize": "g.V(vid1, vid2, vid3).Repeat(__.Both().Barrier()).Emit().Times(2).Path()", "go": "g.V(vid1, vid2, vid3).Repeat(gremlingo.T__.Both().Barrier()).Emit().Times(2).Path()", "groovy": "g.V(vid1, vid2, vid3).repeat(__.both().barrier()).emit().times(2).path()", "java": "g.V(vid1, vid2, vid3).repeat(__.both().barrier()).emit().times(2).path()", @@ -1698,6 +1798,7 @@ "canonical": "g.V().order().by(\"name\", Order.desc).repeat(__.both().simplePath().order().by(\"name\", Order.desc)).times(2).path()", "anonymized": "g.V().order().by(string0, Order.desc).repeat(__.both().simplePath().order().by(string0, Order.desc)).times(number0).path()", "dotnet": "g.V().Order().By(\"name\", Order.Desc).Repeat(__.Both().SimplePath().Order().By(\"name\", Order.Desc)).Times(2).Path()", + "dotnet_parameterize": "g.V().Order().By(\"name\", Order.Desc).Repeat(__.Both().SimplePath().Order().By(\"name\", Order.Desc)).Times(2).Path()", "go": "g.V().Order().By(\"name\", gremlingo.Order.Desc).Repeat(gremlingo.T__.Both().SimplePath().Order().By(\"name\", gremlingo.Order.Desc)).Times(2).Path()", "groovy": "g.V().order().by(\"name\", Order.desc).repeat(__.both().simplePath().order().by(\"name\", Order.desc)).times(2).path()", "java": "g.V().order().by(\"name\", Order.desc).repeat(__.both().simplePath().order().by(\"name\", Order.desc)).times(2).path()", @@ -1715,6 +1816,7 @@ "canonical": "g.V().repeat(__.both().repeat(__.order().by(\"name\")).times(1)).times(1)", "anonymized": "g.V().repeat(__.both().repeat(__.order().by(string0)).times(number0)).times(number0)", "dotnet": "g.V().Repeat(__.Both().Repeat(__.Order().By(\"name\")).Times(1)).Times(1)", + "dotnet_parameterize": "g.V().Repeat(__.Both().Repeat(__.Order().By(\"name\")).Times(1)).Times(1)", "go": "g.V().Repeat(gremlingo.T__.Both().Repeat(gremlingo.T__.Order().By(\"name\")).Times(1)).Times(1)", "groovy": "g.V().repeat(__.both().repeat(__.order().by(\"name\")).times(1)).times(1)", "java": "g.V().repeat(__.both().repeat(__.order().by(\"name\")).times(1)).times(1)", @@ -1732,6 +1834,7 @@ "canonical": "g.V().order().by(\"name\", Order.desc).repeat(__.local(__.out().order().by(\"name\"))).times(1)", "anonymized": "g.V().order().by(string0, Order.desc).repeat(__.local(__.out().order().by(string0))).times(number0)", "dotnet": "g.V().Order().By(\"name\", Order.Desc).Repeat(__.Local(__.Out().Order().By(\"name\"))).Times(1)", + "dotnet_parameterize": "g.V().Order().By(\"name\", Order.Desc).Repeat(__.Local(__.Out().Order().By(\"name\"))).Times(1)", "go": "g.V().Order().By(\"name\", gremlingo.Order.Desc).Repeat(gremlingo.T__.Local(gremlingo.T__.Out().Order().By(\"name\"))).Times(1)", "groovy": "g.V().order().by(\"name\", Order.desc).repeat(__.local(__.out().order().by(\"name\"))).times(1)", "java": "g.V().order().by(\"name\", Order.desc).repeat(__.local(__.out().order().by(\"name\"))).times(1)", @@ -1749,6 +1852,7 @@ "canonical": "g.V().order().by(\"name\").repeat(__.local(__.both().simplePath().order().by(\"name\"))).times(2).path()", "anonymized": "g.V().order().by(string0).repeat(__.local(__.both().simplePath().order().by(string0))).times(number0).path()", "dotnet": "g.V().Order().By(\"name\").Repeat(__.Local(__.Both().SimplePath().Order().By(\"name\"))).Times(2).Path()", + "dotnet_parameterize": "g.V().Order().By(\"name\").Repeat(__.Local(__.Both().SimplePath().Order().By(\"name\"))).Times(2).Path()", "go": "g.V().Order().By(\"name\").Repeat(gremlingo.T__.Local(gremlingo.T__.Both().SimplePath().Order().By(\"name\"))).Times(2).Path()", "groovy": "g.V().order().by(\"name\").repeat(__.local(__.both().simplePath().order().by(\"name\"))).times(2).path()", "java": "g.V().order().by(\"name\").repeat(__.local(__.both().simplePath().order().by(\"name\"))).times(2).path()", @@ -1766,6 +1870,7 @@ "canonical": "g.V().repeat(__.union(__.out(\"knows\").order().by(\"name\"), __.in(\"created\").order().by(\"name\"))).times(1)", "anonymized": "g.V().repeat(__.union(__.out(string0).order().by(string1), __.in(string2).order().by(string1))).times(number0)", "dotnet": "g.V().Repeat(__.Union(__.Out(\"knows\").Order().By(\"name\"), __.In(\"created\").Order().By(\"name\"))).Times(1)", + "dotnet_parameterize": "g.V().Repeat(__.Union(__.Out(\"knows\").Order().By(\"name\"), __.In(\"created\").Order().By(\"name\"))).Times(1)", "go": "g.V().Repeat(gremlingo.T__.Union(gremlingo.T__.Out(\"knows\").Order().By(\"name\"), gremlingo.T__.In(\"created\").Order().By(\"name\"))).Times(1)", "groovy": "g.V().repeat(__.union(__.out(\"knows\").order().by(\"name\"), __.in(\"created\").order().by(\"name\"))).times(1)", "java": "g.V().repeat(__.union(__.out(\"knows\").order().by(\"name\"), __.in(\"created\").order().by(\"name\"))).times(1)", @@ -1783,6 +1888,7 @@ "canonical": "g.addV().property(\"notGenerated\", \"true\").addV().property(\"notGenerated\", \"true\")", "anonymized": "g.addV().property(string0, string1).addV().property(string0, string1)", "dotnet": "g.AddV().Property(\"notGenerated\", \"true\").AddV().Property(\"notGenerated\", \"true\")", + "dotnet_parameterize": "g.AddV().Property(\"notGenerated\", \"true\").AddV().Property(\"notGenerated\", \"true\")", "go": "g.AddV().Property(\"notGenerated\", \"true\").AddV().Property(\"notGenerated\", \"true\")", "groovy": "g.addV().property(\"notGenerated\", \"true\").addV().property(\"notGenerated\", \"true\")", "java": "g.addV().property(\"notGenerated\", \"true\").addV().property(\"notGenerated\", \"true\")", @@ -1795,6 +1901,7 @@ "canonical": "g.V().repeat(__.addV().property(\"generated\", \"true\")).times(2)", "anonymized": "g.V().repeat(__.addV().property(string0, string1)).times(number0)", "dotnet": "g.V().Repeat(__.AddV().Property(\"generated\", \"true\")).Times(2)", + "dotnet_parameterize": "g.V().Repeat(__.AddV().Property(\"generated\", \"true\")).Times(2)", "go": "g.V().Repeat(gremlingo.T__.AddV().Property(\"generated\", \"true\")).Times(2)", "groovy": "g.V().repeat(__.addV().property(\"generated\", \"true\")).times(2)", "java": "g.V().repeat(__.addV().property(\"generated\", \"true\")).times(2)", @@ -1807,6 +1914,7 @@ "canonical": "g.V().has(\"notGenerated\")", "anonymized": "g.V().has(string0)", "dotnet": "g.V().Has(\"notGenerated\")", + "dotnet_parameterize": "g.V().Has(\"notGenerated\")", "go": "g.V().Has(\"notGenerated\")", "groovy": "g.V().has(\"notGenerated\")", "java": "g.V().has(\"notGenerated\")", @@ -1819,6 +1927,7 @@ "canonical": "g.V().has(\"generated\")", "anonymized": "g.V().has(string0)", "dotnet": "g.V().Has(\"generated\")", + "dotnet_parameterize": "g.V().Has(\"generated\")", "go": "g.V().Has(\"generated\")", "groovy": "g.V().has(\"generated\")", "java": "g.V().has(\"generated\")", @@ -1836,6 +1945,7 @@ "canonical": "g.V().repeat(__.dedup().both()).times(2)", "anonymized": "g.V().repeat(__.dedup().both()).times(number0)", "dotnet": "g.V().Repeat(__.Dedup().Both()).Times(2)", + "dotnet_parameterize": "g.V().Repeat(__.Dedup().Both()).Times(2)", "go": "g.V().Repeat(gremlingo.T__.Dedup().Both()).Times(2)", "groovy": "g.V().repeat(__.dedup().both()).times(2)", "java": "g.V().repeat(__.dedup().both()).times(2)", @@ -1853,6 +1963,7 @@ "canonical": "g.V().repeat(__.aggregate(\"x\")).times(2).select(\"x\").limit(1).unfold()", "anonymized": "g.V().repeat(__.aggregate(string0)).times(number0).select(string0).limit(number1).unfold()", "dotnet": "g.V().Repeat(__.Aggregate(\"x\")).Times(2).Select(\"x\").Limit(1).Unfold()", + "dotnet_parameterize": "g.V().Repeat(__.Aggregate(\"x\")).Times(2).Select(\"x\").Limit(1).Unfold()", "go": "g.V().Repeat(gremlingo.T__.Aggregate(\"x\")).Times(2).Select(\"x\").Limit(1).Unfold()", "groovy": "g.V().repeat(__.aggregate(\"x\")).times(2).select(\"x\").limit(1).unfold()", "java": "g.V().repeat(__.aggregate(\"x\")).times(2).select(\"x\").limit(1).unfold()", @@ -1870,6 +1981,7 @@ "canonical": "g.addV().property(\"str\", \"ababcczababcc\").addV().property(\"str\", \"abcyabc\")", "anonymized": "g.addV().property(string0, string1).addV().property(string0, string2)", "dotnet": "g.AddV().Property(\"str\", \"ababcczababcc\").AddV().Property(\"str\", \"abcyabc\")", + "dotnet_parameterize": "g.AddV().Property(\"str\", \"ababcczababcc\").AddV().Property(\"str\", \"abcyabc\")", "go": "g.AddV().Property(\"str\", \"ababcczababcc\").AddV().Property(\"str\", \"abcyabc\")", "groovy": "g.addV().property(\"str\", \"ababcczababcc\").addV().property(\"str\", \"abcyabc\")", "java": "g.addV().property(\"str\", \"ababcczababcc\").addV().property(\"str\", \"abcyabc\")", @@ -1882,6 +1994,7 @@ "canonical": "g.V().values(\"str\").repeat(__.split(\"abc\").conjoin(\"\")).times(2)", "anonymized": "g.V().values(string0).repeat(__.split(string1).conjoin(string2)).times(number0)", "dotnet": "g.V().Values(\"str\").Repeat(__.Split(\"abc\").Conjoin((string) \"\")).Times(2)", + "dotnet_parameterize": "g.V().Values(\"str\").Repeat(__.Split(\"abc\").Conjoin((string) \"\")).Times(2)", "go": "g.V().Values(\"str\").Repeat(gremlingo.T__.Split(\"abc\").Conjoin(\"\")).Times(2)", "groovy": "g.V().values(\"str\").repeat(__.split(\"abc\").conjoin(\"\")).times(2)", "java": "g.V().values(\"str\").repeat(__.split(\"abc\").conjoin(\"\")).times(2)", @@ -1899,6 +2012,7 @@ "canonical": "g.withSack(0l).V().repeat(__.sack(Operator.sum).by(\"age\").where(__.sack().is(P.lt(59)))).times(2)", "anonymized": "g.withSack(long0).V().repeat(__.sack(Operator.sum).by(string0).where(__.sack().is(P.lt(number0)))).times(number1)", "dotnet": "g.WithSack(0l).V().Repeat(__.Sack(Operator.Sum).By(\"age\").Where(__.Sack().Is(P.Lt(59)))).Times(2)", + "dotnet_parameterize": "g.WithSack(0l).V().Repeat(__.Sack(Operator.Sum).By(\"age\").Where(__.Sack().Is(P.Lt(59)))).Times(2)", "go": "g.WithSack(int64(0)).V().Repeat(gremlingo.T__.Sack(gremlingo.Operator.Sum).By(\"age\").Where(gremlingo.T__.Sack().Is(gremlingo.P.Lt(59)))).Times(2)", "groovy": "g.withSack(0l).V().repeat(__.sack(Operator.sum).by(\"age\").where(__.sack().is(P.lt(59)))).times(2)", "java": "g.withSack(0l).V().repeat(__.sack(Operator.sum).by(\"age\").where(__.sack().is(P.lt(59)))).times(2)", @@ -1916,6 +2030,7 @@ "canonical": "g.V().repeat(__.inject('y')).times(2)", "anonymized": "g.V().repeat(__.inject(string0)).times(number0)", "dotnet": "g.V().Repeat(__.Inject(\"y\")).Times(2)", + "dotnet_parameterize": "g.V().Repeat(__.Inject(\"y\")).Times(2)", "go": "g.V().Repeat(gremlingo.T__.Inject(\"y\")).Times(2)", "groovy": "g.V().repeat(__.inject('y')).times(2)", "java": "g.V().repeat(__.inject(\"y\")).times(2)", @@ -1933,6 +2048,7 @@ "canonical": "g.V().repeat(__.union(__.constant('y').limit(1), __.identity())).times(2)", "anonymized": "g.V().repeat(__.union(__.constant(string0).limit(number0), __.identity())).times(number1)", "dotnet": "g.V().Repeat(__.Union(__.Constant(\"y\").Limit(1), __.Identity())).Times(2)", + "dotnet_parameterize": "g.V().Repeat(__.Union(__.Constant(\"y\").Limit(1), __.Identity())).Times(2)", "go": "g.V().Repeat(gremlingo.T__.Union(gremlingo.T__.Constant(\"y\").Limit(1), gremlingo.T__.Identity())).Times(2)", "groovy": "g.V().repeat(__.union(__.constant('y').limit(1), __.identity())).times(2)", "java": "g.V().repeat(__.union(__.constant(\"y\").limit(1), __.identity())).times(2)", @@ -1950,6 +2066,7 @@ "canonical": "g.V(vid3).repeat(__.out().order().by(\"performances\").tail(2)).times(1).values(\"name\")", "anonymized": "g.V(vid3).repeat(__.out().order().by(string0).tail(number0)).times(number1).values(string1)", "dotnet": "g.V(vid3).Repeat(__.Out().Order().By(\"performances\").Tail(2)).Times(1).Values(\"name\")", + "dotnet_parameterize": "g.V(vid3).Repeat(__.Out().Order().By(\"performances\").Tail(2)).Times(1).Values(\"name\")", "go": "g.V(vid3).Repeat(gremlingo.T__.Out().Order().By(\"performances\").Tail(2)).Times(1).Values(\"name\")", "groovy": "g.V(vid3).repeat(__.out().order().by(\"performances\").tail(2)).times(1).values(\"name\")", "java": "g.V(vid3).repeat(__.out().order().by(\"performances\").tail(2)).times(1).values(\"name\")", @@ -1967,6 +2084,7 @@ "canonical": "g.V(vid3).repeat(__.out().order().by(\"performances\").tail(2)).times(2).values(\"name\")", "anonymized": "g.V(vid3).repeat(__.out().order().by(string0).tail(number0)).times(number0).values(string1)", "dotnet": "g.V(vid3).Repeat(__.Out().Order().By(\"performances\").Tail(2)).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V(vid3).Repeat(__.Out().Order().By(\"performances\").Tail(2)).Times(2).Values(\"name\")", "go": "g.V(vid3).Repeat(gremlingo.T__.Out().Order().By(\"performances\").Tail(2)).Times(2).Values(\"name\")", "groovy": "g.V(vid3).repeat(__.out().order().by(\"performances\").tail(2)).times(2).values(\"name\")", "java": "g.V(vid3).repeat(__.out().order().by(\"performances\").tail(2)).times(2).values(\"name\")", @@ -1984,6 +2102,7 @@ "canonical": "g.V(vid2).repeat(__.out().local(__.order().by(\"performances\").tail(1))).times(1).values(\"name\")", "anonymized": "g.V(vid2).repeat(__.out().local(__.order().by(string0).tail(number0))).times(number0).values(string1)", "dotnet": "g.V(vid2).Repeat(__.Out().Local(__.Order().By(\"performances\").Tail(1))).Times(1).Values(\"name\")", + "dotnet_parameterize": "g.V(vid2).Repeat(__.Out().Local(__.Order().By(\"performances\").Tail(1))).Times(1).Values(\"name\")", "go": "g.V(vid2).Repeat(gremlingo.T__.Out().Local(gremlingo.T__.Order().By(\"performances\").Tail(1))).Times(1).Values(\"name\")", "groovy": "g.V(vid2).repeat(__.out().local(__.order().by(\"performances\").tail(1))).times(1).values(\"name\")", "java": "g.V(vid2).repeat(__.out().local(__.order().by(\"performances\").tail(1))).times(1).values(\"name\")", @@ -2001,6 +2120,7 @@ "canonical": "g.V(vid250).repeat(__.out().local(__.order().by(\"performances\").tail(1))).times(2).values(\"name\")", "anonymized": "g.V(vid250).repeat(__.out().local(__.order().by(string0).tail(number0))).times(number1).values(string1)", "dotnet": "g.V(vid250).Repeat(__.Out().Local(__.Order().By(\"performances\").Tail(1))).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V(vid250).Repeat(__.Out().Local(__.Order().By(\"performances\").Tail(1))).Times(2).Values(\"name\")", "go": "g.V(vid250).Repeat(gremlingo.T__.Out().Local(gremlingo.T__.Order().By(\"performances\").Tail(1))).Times(2).Values(\"name\")", "groovy": "g.V(vid250).repeat(__.out().local(__.order().by(\"performances\").tail(1))).times(2).values(\"name\")", "java": "g.V(vid250).repeat(__.out().local(__.order().by(\"performances\").tail(1))).times(2).values(\"name\")", @@ -2018,6 +2138,7 @@ "canonical": "g.V(vid3).repeat(__.out().order().by(\"performances\").tail(3).limit(1)).times(2).values(\"name\")", "anonymized": "g.V(vid3).repeat(__.out().order().by(string0).tail(number0).limit(number1)).times(number2).values(string1)", "dotnet": "g.V(vid3).Repeat(__.Out().Order().By(\"performances\").Tail(3).Limit(1)).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V(vid3).Repeat(__.Out().Order().By(\"performances\").Tail(3).Limit(1)).Times(2).Values(\"name\")", "go": "g.V(vid3).Repeat(gremlingo.T__.Out().Order().By(\"performances\").Tail(3).Limit(1)).Times(2).Values(\"name\")", "groovy": "g.V(vid3).repeat(__.out().order().by(\"performances\").tail(3).limit(1)).times(2).values(\"name\")", "java": "g.V(vid3).repeat(__.out().order().by(\"performances\").tail(3).limit(1)).times(2).values(\"name\")", @@ -2035,6 +2156,7 @@ "canonical": "g.V(vid3).repeat(__.out().order().by(\"performances\", Order.desc).limit(5).tail(1)).times(2).values(\"name\")", "anonymized": "g.V(vid3).repeat(__.out().order().by(string0, Order.desc).limit(number0).tail(number1)).times(number2).values(string1)", "dotnet": "g.V(vid3).Repeat(__.Out().Order().By(\"performances\", Order.Desc).Limit(5).Tail(1)).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V(vid3).Repeat(__.Out().Order().By(\"performances\", Order.Desc).Limit(5).Tail(1)).Times(2).Values(\"name\")", "go": "g.V(vid3).Repeat(gremlingo.T__.Out().Order().By(\"performances\", gremlingo.Order.Desc).Limit(5).Tail(1)).Times(2).Values(\"name\")", "groovy": "g.V(vid3).repeat(__.out().order().by(\"performances\", Order.desc).limit(5).tail(1)).times(2).values(\"name\")", "java": "g.V(vid3).repeat(__.out().order().by(\"performances\", Order.desc).limit(5).tail(1)).times(2).values(\"name\")", @@ -2052,6 +2174,7 @@ "canonical": "g.V(vid3).repeat(__.outE().order().by(\"weight\").tail(2).inV()).times(2).values(\"name\")", "anonymized": "g.V(vid3).repeat(__.outE().order().by(string0).tail(number0).inV()).times(number0).values(string1)", "dotnet": "g.V(vid3).Repeat(__.OutE().Order().By(\"weight\").Tail(2).InV()).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V(vid3).Repeat(__.OutE().Order().By(\"weight\").Tail(2).InV()).Times(2).Values(\"name\")", "go": "g.V(vid3).Repeat(gremlingo.T__.OutE().Order().By(\"weight\").Tail(2).InV()).Times(2).Values(\"name\")", "groovy": "g.V(vid3).repeat(__.outE().order().by(\"weight\").tail(2).inV()).times(2).values(\"name\")", "java": "g.V(vid3).repeat(__.outE().order().by(\"weight\").tail(2).inV()).times(2).values(\"name\")", @@ -2069,6 +2192,7 @@ "canonical": "g.V(vid3).repeat(__.outE().order().by(\"weight\", Order.desc).limit(2).inV()).times(2).values(\"name\")", "anonymized": "g.V(vid3).repeat(__.outE().order().by(string0, Order.desc).limit(number0).inV()).times(number0).values(string1)", "dotnet": "g.V(vid3).Repeat(__.OutE().Order().By(\"weight\", Order.Desc).Limit(2).InV()).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V(vid3).Repeat(__.OutE().Order().By(\"weight\", Order.Desc).Limit(2).InV()).Times(2).Values(\"name\")", "go": "g.V(vid3).Repeat(gremlingo.T__.OutE().Order().By(\"weight\", gremlingo.Order.Desc).Limit(2).InV()).Times(2).Values(\"name\")", "groovy": "g.V(vid3).repeat(__.outE().order().by(\"weight\", Order.desc).limit(2).inV()).times(2).values(\"name\")", "java": "g.V(vid3).repeat(__.outE().order().by(\"weight\", Order.desc).limit(2).inV()).times(2).values(\"name\")", @@ -2086,6 +2210,7 @@ "canonical": "g.V().emit().repeat(__.out().order().by(\"name\")).times(2).values(\"name\")", "anonymized": "g.V().emit().repeat(__.out().order().by(string0)).times(number0).values(string0)", "dotnet": "g.V().Emit().Repeat(__.Out().Order().By(\"name\")).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V().Emit().Repeat(__.Out().Order().By(\"name\")).Times(2).Values(\"name\")", "go": "g.V().Emit().Repeat(gremlingo.T__.Out().Order().By(\"name\")).Times(2).Values(\"name\")", "groovy": "g.V().emit().repeat(__.out().order().by(\"name\")).times(2).values(\"name\")", "java": "g.V().emit().repeat(__.out().order().by(\"name\")).times(2).values(\"name\")", @@ -2103,6 +2228,7 @@ "canonical": "g.V().local(__.emit().repeat(__.out().order().by(\"name\")).times(2).values(\"name\"))", "anonymized": "g.V().local(__.emit().repeat(__.out().order().by(string0)).times(number0).values(string0))", "dotnet": "g.V().Local(__.Emit().Repeat(__.Out().Order().By(\"name\")).Times(2).Values(\"name\"))", + "dotnet_parameterize": "g.V().Local(__.Emit().Repeat(__.Out().Order().By(\"name\")).Times(2).Values(\"name\"))", "go": "g.V().Local(gremlingo.T__.Emit().Repeat(gremlingo.T__.Out().Order().By(\"name\")).Times(2).Values(\"name\"))", "groovy": "g.V().local(__.emit().repeat(__.out().order().by(\"name\")).times(2).values(\"name\"))", "java": "g.V().local(__.emit().repeat(__.out().order().by(\"name\")).times(2).values(\"name\"))", @@ -2120,6 +2246,7 @@ "canonical": "g.V().emit().repeat(__.local(__.out().order().by(\"name\"))).times(2).values(\"name\")", "anonymized": "g.V().emit().repeat(__.local(__.out().order().by(string0))).times(number0).values(string0)", "dotnet": "g.V().Emit().Repeat(__.Local(__.Out().Order().By(\"name\"))).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V().Emit().Repeat(__.Local(__.Out().Order().By(\"name\"))).Times(2).Values(\"name\")", "go": "g.V().Emit().Repeat(gremlingo.T__.Local(gremlingo.T__.Out().Order().By(\"name\"))).Times(2).Values(\"name\")", "groovy": "g.V().emit().repeat(__.local(__.out().order().by(\"name\"))).times(2).values(\"name\")", "java": "g.V().emit().repeat(__.local(__.out().order().by(\"name\"))).times(2).values(\"name\")", @@ -2137,6 +2264,7 @@ "canonical": "g.V().local(__.emit().repeat(__.local(__.out().order().by(\"name\"))).times(2).values(\"name\"))", "anonymized": "g.V().local(__.emit().repeat(__.local(__.out().order().by(string0))).times(number0).values(string0))", "dotnet": "g.V().Local(__.Emit().Repeat(__.Local(__.Out().Order().By(\"name\"))).Times(2).Values(\"name\"))", + "dotnet_parameterize": "g.V().Local(__.Emit().Repeat(__.Local(__.Out().Order().By(\"name\"))).Times(2).Values(\"name\"))", "go": "g.V().Local(gremlingo.T__.Emit().Repeat(gremlingo.T__.Local(gremlingo.T__.Out().Order().By(\"name\"))).Times(2).Values(\"name\"))", "groovy": "g.V().local(__.emit().repeat(__.local(__.out().order().by(\"name\"))).times(2).values(\"name\"))", "java": "g.V().local(__.emit().repeat(__.local(__.out().order().by(\"name\"))).times(2).values(\"name\"))", @@ -2154,6 +2282,7 @@ "canonical": "g.V().emit(__.hasLabel(\"person\")).repeat(__.out().order().by(\"name\")).times(2).values(\"name\")", "anonymized": "g.V().emit(__.hasLabel(string0)).repeat(__.out().order().by(string1)).times(number0).values(string1)", "dotnet": "g.V().Emit(__.HasLabel(\"person\")).Repeat(__.Out().Order().By(\"name\")).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V().Emit(__.HasLabel(\"person\")).Repeat(__.Out().Order().By(\"name\")).Times(2).Values(\"name\")", "go": "g.V().Emit(gremlingo.T__.HasLabel(\"person\")).Repeat(gremlingo.T__.Out().Order().By(\"name\")).Times(2).Values(\"name\")", "groovy": "g.V().emit(__.hasLabel(\"person\")).repeat(__.out().order().by(\"name\")).times(2).values(\"name\")", "java": "g.V().emit(__.hasLabel(\"person\")).repeat(__.out().order().by(\"name\")).times(2).values(\"name\")", @@ -2171,6 +2300,7 @@ "canonical": "g.V().until(__.loops().is(2)).repeat(__.out().order().by(\"name\")).values(\"name\")", "anonymized": "g.V().until(__.loops().is(number0)).repeat(__.out().order().by(string0)).values(string0)", "dotnet": "g.V().Until(__.Loops().Is(2)).Repeat(__.Out().Order().By(\"name\")).Values(\"name\")", + "dotnet_parameterize": "g.V().Until(__.Loops().Is(2)).Repeat(__.Out().Order().By(\"name\")).Values(\"name\")", "go": "g.V().Until(gremlingo.T__.Loops().Is(2)).Repeat(gremlingo.T__.Out().Order().By(\"name\")).Values(\"name\")", "groovy": "g.V().until(__.loops().is(2)).repeat(__.out().order().by(\"name\")).values(\"name\")", "java": "g.V().until(__.loops().is(2)).repeat(__.out().order().by(\"name\")).values(\"name\")", @@ -2188,6 +2318,7 @@ "canonical": "g.V().emit().repeat(__.dedup()).times(1)", "anonymized": "g.V().emit().repeat(__.dedup()).times(number0)", "dotnet": "g.V().Emit().Repeat(__.Dedup()).Times(1)", + "dotnet_parameterize": "g.V().Emit().Repeat(__.Dedup()).Times(1)", "go": "g.V().Emit().Repeat(gremlingo.T__.Dedup()).Times(1)", "groovy": "g.V().emit().repeat(__.dedup()).times(1)", "java": "g.V().emit().repeat(__.dedup()).times(1)", @@ -2205,6 +2336,7 @@ "canonical": "g.V().emit().repeat(__.dedup()).times(2)", "anonymized": "g.V().emit().repeat(__.dedup()).times(number0)", "dotnet": "g.V().Emit().Repeat(__.Dedup()).Times(2)", + "dotnet_parameterize": "g.V().Emit().Repeat(__.Dedup()).Times(2)", "go": "g.V().Emit().Repeat(gremlingo.T__.Dedup()).Times(2)", "groovy": "g.V().emit().repeat(__.dedup()).times(2)", "java": "g.V().emit().repeat(__.dedup()).times(2)", @@ -2222,6 +2354,7 @@ "canonical": "g.union()", "anonymized": "g.union()", "dotnet": "g.Union()", + "dotnet_parameterize": "g.Union()", "go": "g.Union()", "groovy": "g.union()", "java": "g.union()", @@ -2239,6 +2372,7 @@ "canonical": "g.union(__.V().values(\"name\"))", "anonymized": "g.union(__.V().values(string0))", "dotnet": "g.Union(__.V().Values(\"name\"))", + "dotnet_parameterize": "g.Union(__.V().Values(\"name\"))", "go": "g.Union(gremlingo.T__.V().Values(\"name\"))", "groovy": "g.union(__.V().values(\"name\"))", "java": "g.union(__.V().values(\"name\"))", @@ -2256,6 +2390,7 @@ "canonical": "g.union(__.V(vid1), __.V(vid4)).values(\"name\")", "anonymized": "g.union(__.V(vid1), __.V(vid4)).values(string0)", "dotnet": "g.Union(__.V(vid1), __.V(vid4)).Values(\"name\")", + "dotnet_parameterize": "g.Union(__.V(vid1), __.V(vid4)).Values(\"name\")", "go": "g.Union(gremlingo.T__.V(vid1), gremlingo.T__.V(vid4)).Values(\"name\")", "groovy": "g.union(__.V(vid1), __.V(vid4)).values(\"name\")", "java": "g.union(__.V(vid1), __.V(vid4)).values(\"name\")", @@ -2273,6 +2408,7 @@ "canonical": "g.union(__.V().hasLabel(\"software\"), __.V().hasLabel(\"person\")).values(\"name\")", "anonymized": "g.union(__.V().hasLabel(string0), __.V().hasLabel(string1)).values(string2)", "dotnet": "g.Union(__.V().HasLabel(\"software\"), __.V().HasLabel(\"person\")).Values(\"name\")", + "dotnet_parameterize": "g.Union(__.V().HasLabel(\"software\"), __.V().HasLabel(\"person\")).Values(\"name\")", "go": "g.Union(gremlingo.T__.V().HasLabel(\"software\"), gremlingo.T__.V().HasLabel(\"person\")).Values(\"name\")", "groovy": "g.union(__.V().hasLabel(\"software\"), __.V().hasLabel(\"person\")).values(\"name\")", "java": "g.union(__.V().hasLabel(\"software\"), __.V().hasLabel(\"person\")).values(\"name\")", @@ -2290,6 +2426,7 @@ "canonical": "g.union(__.V().out().out(), __.V().hasLabel(\"software\")).path()", "anonymized": "g.union(__.V().out().out(), __.V().hasLabel(string0)).path()", "dotnet": "g.Union(__.V().Out().Out(), __.V().HasLabel(\"software\")).Path()", + "dotnet_parameterize": "g.Union(__.V().Out().Out(), __.V().HasLabel(\"software\")).Path()", "go": "g.Union(gremlingo.T__.V().Out().Out(), gremlingo.T__.V().HasLabel(\"software\")).Path()", "groovy": "g.union(__.V().out().out(), __.V().hasLabel(\"software\")).path()", "java": "g.union(__.V().out().out(), __.V().hasLabel(\"software\")).path()", @@ -2307,6 +2444,7 @@ "canonical": "g.union(__.V().out().out(), __.V().hasLabel(\"software\")).path().by(\"name\")", "anonymized": "g.union(__.V().out().out(), __.V().hasLabel(string0)).path().by(string1)", "dotnet": "g.Union(__.V().Out().Out(), __.V().HasLabel(\"software\")).Path().By(\"name\")", + "dotnet_parameterize": "g.Union(__.V().Out().Out(), __.V().HasLabel(\"software\")).Path().By(\"name\")", "go": "g.Union(gremlingo.T__.V().Out().Out(), gremlingo.T__.V().HasLabel(\"software\")).Path().By(\"name\")", "groovy": "g.union(__.V().out().out(), __.V().hasLabel(\"software\")).path().by(\"name\")", "java": "g.union(__.V().out().out(), __.V().hasLabel(\"software\")).path().by(\"name\")", @@ -2324,6 +2462,7 @@ "canonical": "g.union(__.union(__.V().out().out()), __.V().hasLabel(\"software\")).path().by(\"name\")", "anonymized": "g.union(__.union(__.V().out().out()), __.V().hasLabel(string0)).path().by(string1)", "dotnet": "g.Union(__.Union(__.V().Out().Out()), __.V().HasLabel(\"software\")).Path().By(\"name\")", + "dotnet_parameterize": "g.Union(__.Union(__.V().Out().Out()), __.V().HasLabel(\"software\")).Path().By(\"name\")", "go": "g.Union(gremlingo.T__.Union(gremlingo.T__.V().Out().Out()), gremlingo.T__.V().HasLabel(\"software\")).Path().By(\"name\")", "groovy": "g.union(__.union(__.V().out().out()), __.V().hasLabel(\"software\")).path().by(\"name\")", "java": "g.union(__.union(__.V().out().out()), __.V().hasLabel(\"software\")).path().by(\"name\")", @@ -2341,6 +2480,7 @@ "canonical": "g.union(__.inject(1), __.inject(2))", "anonymized": "g.union(__.inject(number0), __.inject(number1))", "dotnet": "g.Union(__.Inject(1), __.Inject(2))", + "dotnet_parameterize": "g.Union(__.Inject(1), __.Inject(2))", "go": "g.Union(gremlingo.T__.Inject(1), gremlingo.T__.Inject(2))", "groovy": "g.union(__.inject(1), __.inject(2))", "java": "g.union(__.inject(1), __.inject(2))", @@ -2358,6 +2498,7 @@ "canonical": "g.V(vid2).union(__.constant(1i), __.constant(2i), __.constant(3i))", "anonymized": "g.V(vid2).union(__.constant(integer0), __.constant(integer1), __.constant(integer2))", "dotnet": "g.V(vid2).Union(__.Constant(1), __.Constant(2), __.Constant(3))", + "dotnet_parameterize": "g.V(vid2).Union(__.Constant(1), __.Constant(2), __.Constant(3))", "go": "g.V(vid2).Union(gremlingo.T__.Constant(int32(1)), gremlingo.T__.Constant(int32(2)), gremlingo.T__.Constant(int32(3)))", "groovy": "g.V(vid2).union(__.constant(1i), __.constant(2i), __.constant(3i))", "java": "g.V(vid2).union(__.constant(1), __.constant(2), __.constant(3))", @@ -2375,6 +2516,7 @@ "canonical": "g.V().union(__.out(), __.in()).values(\"name\")", "anonymized": "g.V().union(__.out(), __.in()).values(string0)", "dotnet": "g.V().Union(__.Out(), __.In()).Values(\"name\")", + "dotnet_parameterize": "g.V().Union(__.Out(), __.In()).Values(\"name\")", "go": "g.V().Union(gremlingo.T__.Out(), gremlingo.T__.In()).Values(\"name\")", "groovy": "g.V().union(__.out(), __.in()).values(\"name\")", "java": "g.V().union(__.out(), __.in()).values(\"name\")", @@ -2392,6 +2534,7 @@ "canonical": "g.V(vid1).union(__.repeat(__.out()).times(2), __.out()).values(\"name\")", "anonymized": "g.V(vid1).union(__.repeat(__.out()).times(number0), __.out()).values(string0)", "dotnet": "g.V(vid1).Union(__.Repeat(__.Out()).Times(2), __.Out()).Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).Union(__.Repeat(__.Out()).Times(2), __.Out()).Values(\"name\")", "go": "g.V(vid1).Union(gremlingo.T__.Repeat(gremlingo.T__.Out()).Times(2), gremlingo.T__.Out()).Values(\"name\")", "groovy": "g.V(vid1).union(__.repeat(__.out()).times(2), __.out()).values(\"name\")", "java": "g.V(vid1).union(__.repeat(__.out()).times(2), __.out()).values(\"name\")", @@ -2409,6 +2552,7 @@ "canonical": "g.V().choose(__.label().is(\"person\"), __.union(__.out().values(\"lang\"), __.out().values(\"name\")), __.in().label())", "anonymized": "g.V().choose(__.label().is(string0), __.union(__.out().values(string1), __.out().values(string2)), __.in().label())", "dotnet": "g.V().Choose(__.Label().Is(\"person\"), __.Union(__.Out().Values(\"lang\"), __.Out().Values(\"name\")), __.In().Label())", + "dotnet_parameterize": "g.V().Choose(__.Label().Is(\"person\"), __.Union(__.Out().Values(\"lang\"), __.Out().Values(\"name\")), __.In().Label())", "go": "g.V().Choose(gremlingo.T__.Label().Is(\"person\"), gremlingo.T__.Union(gremlingo.T__.Out().Values(\"lang\"), gremlingo.T__.Out().Values(\"name\")), gremlingo.T__.In().Label())", "groovy": "g.V().choose(__.label().is(\"person\"), __.union(__.out().values(\"lang\"), __.out().values(\"name\")), __.in().label())", "java": "g.V().choose(__.label().is(\"person\"), __.union(__.out().values(\"lang\"), __.out().values(\"name\")), __.in().label())", @@ -2426,6 +2570,7 @@ "canonical": "g.V().choose(__.label().is(\"person\"), __.union(__.out().values(\"lang\"), __.out().values(\"name\")), __.in().label()).groupCount()", "anonymized": "g.V().choose(__.label().is(string0), __.union(__.out().values(string1), __.out().values(string2)), __.in().label()).groupCount()", "dotnet": "g.V().Choose(__.Label().Is(\"person\"), __.Union(__.Out().Values(\"lang\"), __.Out().Values(\"name\")), __.In().Label()).GroupCount()", + "dotnet_parameterize": "g.V().Choose(__.Label().Is(\"person\"), __.Union(__.Out().Values(\"lang\"), __.Out().Values(\"name\")), __.In().Label()).GroupCount()", "go": "g.V().Choose(gremlingo.T__.Label().Is(\"person\"), gremlingo.T__.Union(gremlingo.T__.Out().Values(\"lang\"), gremlingo.T__.Out().Values(\"name\")), gremlingo.T__.In().Label()).GroupCount()", "groovy": "g.V().choose(__.label().is(\"person\"), __.union(__.out().values(\"lang\"), __.out().values(\"name\")), __.in().label()).groupCount()", "java": "g.V().choose(__.label().is(\"person\"), __.union(__.out().values(\"lang\"), __.out().values(\"name\")), __.in().label()).groupCount()", @@ -2443,6 +2588,7 @@ "canonical": "g.V().union(__.repeat(__.union(__.out(\"created\"), __.in(\"created\"))).times(2), __.repeat(__.union(__.in(\"created\"), __.out(\"created\"))).times(2)).label().groupCount()", "anonymized": "g.V().union(__.repeat(__.union(__.out(string0), __.in(string0))).times(number0), __.repeat(__.union(__.in(string0), __.out(string0))).times(number0)).label().groupCount()", "dotnet": "g.V().Union(__.Repeat(__.Union(__.Out(\"created\"), __.In(\"created\"))).Times(2), __.Repeat(__.Union(__.In(\"created\"), __.Out(\"created\"))).Times(2)).Label().GroupCount()", + "dotnet_parameterize": "g.V().Union(__.Repeat(__.Union(__.Out(\"created\"), __.In(\"created\"))).Times(2), __.Repeat(__.Union(__.In(\"created\"), __.Out(\"created\"))).Times(2)).Label().GroupCount()", "go": "g.V().Union(gremlingo.T__.Repeat(gremlingo.T__.Union(gremlingo.T__.Out(\"created\"), gremlingo.T__.In(\"created\"))).Times(2), gremlingo.T__.Repeat(gremlingo.T__.Union(gremlingo.T__.In(\"created\"), gremlingo.T__.Out(\"created\"))).Times(2)).Label().GroupCount()", "groovy": "g.V().union(__.repeat(__.union(__.out(\"created\"), __.in(\"created\"))).times(2), __.repeat(__.union(__.in(\"created\"), __.out(\"created\"))).times(2)).label().groupCount()", "java": "g.V().union(__.repeat(__.union(__.out(\"created\"), __.in(\"created\"))).times(2), __.repeat(__.union(__.in(\"created\"), __.out(\"created\"))).times(2)).label().groupCount()", @@ -2460,6 +2606,7 @@ "canonical": "g.V(vid1, vid2).union(__.outE().count(), __.inE().count(), __.outE().values(\"weight\").sum())", "anonymized": "g.V(vid1, vid2).union(__.outE().count(), __.inE().count(), __.outE().values(string0).sum())", "dotnet": "g.V(vid1, vid2).Union(__.OutE().Count(), __.InE().Count(), __.OutE().Values(\"weight\").Sum())", + "dotnet_parameterize": "g.V(vid1, vid2).Union(__.OutE().Count(), __.InE().Count(), __.OutE().Values(\"weight\").Sum())", "go": "g.V(vid1, vid2).Union(gremlingo.T__.OutE().Count(), gremlingo.T__.InE().Count(), gremlingo.T__.OutE().Values(\"weight\").Sum())", "groovy": "g.V(vid1, vid2).union(__.outE().count(), __.inE().count(), __.outE().values(\"weight\").sum())", "java": "g.V(vid1, vid2).union(__.outE().count(), __.inE().count(), __.outE().values(\"weight\").sum())", @@ -2477,6 +2624,7 @@ "canonical": "g.V(vid1, vid2).local(__.union(__.outE().count(), __.inE().count(), __.outE().values(\"weight\").sum()))", "anonymized": "g.V(vid1, vid2).local(__.union(__.outE().count(), __.inE().count(), __.outE().values(string0).sum()))", "dotnet": "g.V(vid1, vid2).Local(__.Union(__.OutE().Count(), __.InE().Count(), __.OutE().Values(\"weight\").Sum()))", + "dotnet_parameterize": "g.V(vid1, vid2).Local(__.Union(__.OutE().Count(), __.InE().Count(), __.OutE().Values(\"weight\").Sum()))", "go": "g.V(vid1, vid2).Local(gremlingo.T__.Union(gremlingo.T__.OutE().Count(), gremlingo.T__.InE().Count(), gremlingo.T__.OutE().Values(\"weight\").Sum()))", "groovy": "g.V(vid1, vid2).local(__.union(__.outE().count(), __.inE().count(), __.outE().values(\"weight\").sum()))", "java": "g.V(vid1, vid2).local(__.union(__.outE().count(), __.inE().count(), __.outE().values(\"weight\").sum()))", @@ -2494,6 +2642,7 @@ "canonical": "g.V(vid1, vid2).local(__.union(__.count()))", "anonymized": "g.V(vid1, vid2).local(__.union(__.count()))", "dotnet": "g.V(vid1, vid2).Local(__.Union(__.Count()))", + "dotnet_parameterize": "g.V(vid1, vid2).Local(__.Union(__.Count()))", "go": "g.V(vid1, vid2).Local(gremlingo.T__.Union(gremlingo.T__.Count()))", "groovy": "g.V(vid1, vid2).local(__.union(__.count()))", "java": "g.V(vid1, vid2).local(__.union(__.count()))", @@ -2511,6 +2660,7 @@ "canonical": "g.union(__.addV(\"person\").property(\"name\", \"alice\"), __.addV(\"person\").property(\"name\", \"bob\"), __.addV(\"person\").property(\"name\", \"chris\")).values(\"name\")", "anonymized": "g.union(__.addV(string0).property(string1, string2), __.addV(string0).property(string1, string3), __.addV(string0).property(string1, string4)).values(string1)", "dotnet": "g.Union(__.AddV((string) \"person\").Property(\"name\", \"alice\"), __.AddV((string) \"person\").Property(\"name\", \"bob\"), __.AddV((string) \"person\").Property(\"name\", \"chris\")).Values(\"name\")", + "dotnet_parameterize": "g.Union(__.AddV((string) \"person\").Property(\"name\", \"alice\"), __.AddV((string) \"person\").Property(\"name\", \"bob\"), __.AddV((string) \"person\").Property(\"name\", \"chris\")).Values(\"name\")", "go": "g.Union(gremlingo.T__.AddV(\"person\").Property(\"name\", \"alice\"), gremlingo.T__.AddV(\"person\").Property(\"name\", \"bob\"), gremlingo.T__.AddV(\"person\").Property(\"name\", \"chris\")).Values(\"name\")", "groovy": "g.union(__.addV(\"person\").property(\"name\", \"alice\"), __.addV(\"person\").property(\"name\", \"bob\"), __.addV(\"person\").property(\"name\", \"chris\")).values(\"name\")", "java": "g.union(__.addV(\"person\").property(\"name\", \"alice\"), __.addV(\"person\").property(\"name\", \"bob\"), __.addV(\"person\").property(\"name\", \"chris\")).values(\"name\")", @@ -2528,6 +2678,7 @@ "canonical": "g.V().hasLabel(\"person\").union(__.where(__.outE().count().is(P.gt(2))).values(\"age\"), __.not(__.where(__.outE().count().is(P.gt(2)))).values(\"name\"))", "anonymized": "g.V().hasLabel(string0).union(__.where(__.outE().count().is(P.gt(number0))).values(string1), __.not(__.where(__.outE().count().is(P.gt(number0)))).values(string2))", "dotnet": "g.V().HasLabel(\"person\").Union(__.Where(__.OutE().Count().Is(P.Gt(2))).Values(\"age\"), __.Not(__.Where(__.OutE().Count().Is(P.Gt(2)))).Values(\"name\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Union(__.Where(__.OutE().Count().Is(P.Gt(2))).Values(\"age\"), __.Not(__.Where(__.OutE().Count().Is(P.Gt(2)))).Values(\"name\"))", "go": "g.V().HasLabel(\"person\").Union(gremlingo.T__.Where(gremlingo.T__.OutE().Count().Is(gremlingo.P.Gt(2))).Values(\"age\"), gremlingo.T__.Not(gremlingo.T__.Where(gremlingo.T__.OutE().Count().Is(gremlingo.P.Gt(2)))).Values(\"name\"))", "groovy": "g.V().hasLabel(\"person\").union(__.where(__.outE().count().is(P.gt(2))).values(\"age\"), __.not(__.where(__.outE().count().is(P.gt(2)))).values(\"name\"))", "java": "g.V().hasLabel(\"person\").union(__.where(__.outE().count().is(P.gt(2))).values(\"age\"), __.not(__.where(__.outE().count().is(P.gt(2)))).values(\"name\"))", @@ -2545,6 +2696,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 123)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 123)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 123)", "go": "g.AddV(\"data\").Property(\"int\", 123)", "groovy": "g.addV(\"data\").property(\"int\", 123)", "java": "g.addV(\"data\").property(\"int\", 123)", @@ -2557,6 +2709,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL))", "anonymized": "g.V().values(string0).asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL))", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal))", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal))", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigDecimal).Is(gremlingo.P.TypeOf(gremlingo.GType.BigDecimal))", "groovy": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL))", "java": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL))", @@ -2574,6 +2727,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 10)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 10)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 10)", "go": "g.AddV(\"data\").Property(\"int\", 10)", "groovy": "g.addV(\"data\").property(\"int\", 10)", "java": "g.addV(\"data\").property(\"int\", 10)", @@ -2586,6 +2740,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).math(\"_ + 0.5\")", "anonymized": "g.V().values(string0).asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).math(string1)", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Math(\"_ + 0.5\")", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Math(\"_ + 0.5\")", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigDecimal).Is(gremlingo.P.TypeOf(gremlingo.GType.BigDecimal)).Math(\"_ + 0.5\")", "groovy": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).math(\"_ + 0.5\")", "java": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).math(\"_ + 0.5\")", @@ -2603,6 +2758,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 5)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 5)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 5)", "go": "g.AddV(\"data\").Property(\"int\", 5)", "groovy": "g.addV(\"data\").property(\"int\", 5)", "java": "g.addV(\"data\").property(\"int\", 5)", @@ -2615,6 +2771,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).is(P.gt(0))", "anonymized": "g.V().values(string0).asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).is(P.gt(number0))", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Is(P.Gt(0))", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Is(P.Gt(0))", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigDecimal).Is(gremlingo.P.TypeOf(gremlingo.GType.BigDecimal)).Is(gremlingo.P.Gt(0))", "groovy": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).is(P.gt(0))", "java": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).is(P.gt(0))", @@ -2632,6 +2789,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 2).addV(\"data\").property(\"int\", 3).addV(\"data\").property(\"int\", 4)", "anonymized": "g.addV(string0).property(string1, number0).addV(string0).property(string1, number1).addV(string0).property(string1, number2)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 2).AddV((string) \"data\").Property(\"int\", 3).AddV((string) \"data\").Property(\"int\", 4)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 2).AddV((string) \"data\").Property(\"int\", 3).AddV((string) \"data\").Property(\"int\", 4)", "go": "g.AddV(\"data\").Property(\"int\", 2).AddV(\"data\").Property(\"int\", 3).AddV(\"data\").Property(\"int\", 4)", "groovy": "g.addV(\"data\").property(\"int\", 2).addV(\"data\").property(\"int\", 3).addV(\"data\").property(\"int\", 4)", "java": "g.addV(\"data\").property(\"int\", 2).addV(\"data\").property(\"int\", 3).addV(\"data\").property(\"int\", 4)", @@ -2644,6 +2802,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).sum()", "anonymized": "g.V().values(string0).asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).sum()", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Sum()", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Sum()", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigDecimal).Is(gremlingo.P.TypeOf(gremlingo.GType.BigDecimal)).Sum()", "groovy": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).sum()", "java": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).sum()", @@ -2661,6 +2820,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 1).addV(\"data\").property(\"int\", 5).addV(\"data\").property(\"int\", 10)", "anonymized": "g.addV(string0).property(string1, number0).addV(string0).property(string1, number1).addV(string0).property(string1, number2)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 1).AddV((string) \"data\").Property(\"int\", 5).AddV((string) \"data\").Property(\"int\", 10)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 1).AddV((string) \"data\").Property(\"int\", 5).AddV((string) \"data\").Property(\"int\", 10)", "go": "g.AddV(\"data\").Property(\"int\", 1).AddV(\"data\").Property(\"int\", 5).AddV(\"data\").Property(\"int\", 10)", "groovy": "g.addV(\"data\").property(\"int\", 1).addV(\"data\").property(\"int\", 5).addV(\"data\").property(\"int\", 10)", "java": "g.addV(\"data\").property(\"int\", 1).addV(\"data\").property(\"int\", 5).addV(\"data\").property(\"int\", 10)", @@ -2673,6 +2833,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).min()", "anonymized": "g.V().values(string0).asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).min()", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Min()", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Min()", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigDecimal).Is(gremlingo.P.TypeOf(gremlingo.GType.BigDecimal)).Min()", "groovy": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).min()", "java": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).min()", @@ -2690,6 +2851,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 7).addV(\"data\").property(\"int\", 14).addV(\"data\").property(\"int\", 21)", "anonymized": "g.addV(string0).property(string1, number0).addV(string0).property(string1, number1).addV(string0).property(string1, number2)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 7).AddV((string) \"data\").Property(\"int\", 14).AddV((string) \"data\").Property(\"int\", 21)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 7).AddV((string) \"data\").Property(\"int\", 14).AddV((string) \"data\").Property(\"int\", 21)", "go": "g.AddV(\"data\").Property(\"int\", 7).AddV(\"data\").Property(\"int\", 14).AddV(\"data\").Property(\"int\", 21)", "groovy": "g.addV(\"data\").property(\"int\", 7).addV(\"data\").property(\"int\", 14).addV(\"data\").property(\"int\", 21)", "java": "g.addV(\"data\").property(\"int\", 7).addV(\"data\").property(\"int\", 14).addV(\"data\").property(\"int\", 21)", @@ -2702,6 +2864,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).max()", "anonymized": "g.V().values(string0).asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).max()", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Max()", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Max()", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigDecimal).Is(gremlingo.P.TypeOf(gremlingo.GType.BigDecimal)).Max()", "groovy": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).max()", "java": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).max()", @@ -2719,6 +2882,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 6)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 6)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 6)", "go": "g.AddV(\"data\").Property(\"int\", 6)", "groovy": "g.addV(\"data\").property(\"int\", 6)", "java": "g.addV(\"data\").property(\"int\", 6)", @@ -2731,6 +2895,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).project(\"original\", \"multiplied\").by(__.identity()).by(__.math(\"_ * 10\"))", "anonymized": "g.V().values(string0).asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).project(string1, string2).by(__.identity()).by(__.math(string3))", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Project(\"original\", \"multiplied\").By(__.Identity()).By(__.Math(\"_ * 10\"))", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).Project(\"original\", \"multiplied\").By(__.Identity()).By(__.Math(\"_ * 10\"))", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigDecimal).Is(gremlingo.P.TypeOf(gremlingo.GType.BigDecimal)).Project(\"original\", \"multiplied\").By(gremlingo.T__.Identity()).By(gremlingo.T__.Math(\"_ * 10\"))", "groovy": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).project(\"original\", \"multiplied\").by(__.identity()).by(__.math(\"_ * 10\"))", "java": "g.V().values(\"int\").asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).project(\"original\", \"multiplied\").by(__.identity()).by(__.math(\"_ * 10\"))", @@ -2748,6 +2913,7 @@ "canonical": "g.inject(99).asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).groupCount()", "anonymized": "g.inject(number0).asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).groupCount()", "dotnet": "g.Inject(99).AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).GroupCount()", + "dotnet_parameterize": "g.Inject(99).AsNumber(GType.BigDecimal).Is(P.TypeOf(GType.BigDecimal)).GroupCount()", "go": "g.Inject(99).AsNumber(gremlingo.GType.BigDecimal).Is(gremlingo.P.TypeOf(gremlingo.GType.BigDecimal)).GroupCount()", "groovy": "g.inject(99).asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).groupCount()", "java": "g.inject(99).asNumber(GType.BIGDECIMAL).is(P.typeOf(GType.BIGDECIMAL)).groupCount()", @@ -2765,6 +2931,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.BIGDECIMAL))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.BIGDECIMAL))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.BigDecimal))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.BigDecimal))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.BigDecimal))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.BIGDECIMAL))", "java": "g.V().values(\"age\").is(P.typeOf(GType.BIGDECIMAL))", @@ -2782,6 +2949,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 456)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 456)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 456)", "go": "g.AddV(\"data\").Property(\"int\", 456)", "groovy": "g.addV(\"data\").property(\"int\", 456)", "java": "g.addV(\"data\").property(\"int\", 456)", @@ -2794,6 +2962,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT))", "anonymized": "g.V().values(string0).asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT))", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt))", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt))", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigInt).Is(gremlingo.P.TypeOf(gremlingo.GType.BigInt))", "groovy": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT))", "java": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT))", @@ -2811,6 +2980,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 100)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 100)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 100)", "go": "g.AddV(\"data\").Property(\"int\", 100)", "groovy": "g.addV(\"data\").property(\"int\", 100)", "java": "g.addV(\"data\").property(\"int\", 100)", @@ -2823,6 +2993,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).math(\"_ * 1000\")", "anonymized": "g.V().values(string0).asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).math(string1)", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Math(\"_ * 1000\")", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Math(\"_ * 1000\")", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigInt).Is(gremlingo.P.TypeOf(gremlingo.GType.BigInt)).Math(\"_ * 1000\")", "groovy": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).math(\"_ * 1000\")", "java": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).math(\"_ * 1000\")", @@ -2840,6 +3011,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 42)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 42)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 42)", "go": "g.AddV(\"data\").Property(\"int\", 42)", "groovy": "g.addV(\"data\").property(\"int\", 42)", "java": "g.addV(\"data\").property(\"int\", 42)", @@ -2852,6 +3024,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).is(P.eq(42))", "anonymized": "g.V().values(string0).asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).is(P.eq(number0))", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Is(P.Eq(42))", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Is(P.Eq(42))", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigInt).Is(gremlingo.P.TypeOf(gremlingo.GType.BigInt)).Is(gremlingo.P.Eq(42))", "groovy": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).is(P.eq(42))", "java": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).is(P.eq(42))", @@ -2869,6 +3042,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 10).addV(\"data\").property(\"int\", 20).addV(\"data\").property(\"int\", 30)", "anonymized": "g.addV(string0).property(string1, number0).addV(string0).property(string1, number1).addV(string0).property(string1, number2)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 10).AddV((string) \"data\").Property(\"int\", 20).AddV((string) \"data\").Property(\"int\", 30)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 10).AddV((string) \"data\").Property(\"int\", 20).AddV((string) \"data\").Property(\"int\", 30)", "go": "g.AddV(\"data\").Property(\"int\", 10).AddV(\"data\").Property(\"int\", 20).AddV(\"data\").Property(\"int\", 30)", "groovy": "g.addV(\"data\").property(\"int\", 10).addV(\"data\").property(\"int\", 20).addV(\"data\").property(\"int\", 30)", "java": "g.addV(\"data\").property(\"int\", 10).addV(\"data\").property(\"int\", 20).addV(\"data\").property(\"int\", 30)", @@ -2881,6 +3055,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).sum()", "anonymized": "g.V().values(string0).asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).sum()", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Sum()", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Sum()", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigInt).Is(gremlingo.P.TypeOf(gremlingo.GType.BigInt)).Sum()", "groovy": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).sum()", "java": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).sum()", @@ -2898,6 +3073,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 5).addV(\"data\").property(\"int\", 15).addV(\"data\").property(\"int\", 25)", "anonymized": "g.addV(string0).property(string1, number0).addV(string0).property(string1, number1).addV(string0).property(string1, number2)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 5).AddV((string) \"data\").Property(\"int\", 15).AddV((string) \"data\").Property(\"int\", 25)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 5).AddV((string) \"data\").Property(\"int\", 15).AddV((string) \"data\").Property(\"int\", 25)", "go": "g.AddV(\"data\").Property(\"int\", 5).AddV(\"data\").Property(\"int\", 15).AddV(\"data\").Property(\"int\", 25)", "groovy": "g.addV(\"data\").property(\"int\", 5).addV(\"data\").property(\"int\", 15).addV(\"data\").property(\"int\", 25)", "java": "g.addV(\"data\").property(\"int\", 5).addV(\"data\").property(\"int\", 15).addV(\"data\").property(\"int\", 25)", @@ -2910,6 +3086,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).min()", "anonymized": "g.V().values(string0).asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).min()", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Min()", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Min()", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigInt).Is(gremlingo.P.TypeOf(gremlingo.GType.BigInt)).Min()", "groovy": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).min()", "java": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).min()", @@ -2927,6 +3104,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 100).addV(\"data\").property(\"int\", 200).addV(\"data\").property(\"int\", 300)", "anonymized": "g.addV(string0).property(string1, number0).addV(string0).property(string1, number1).addV(string0).property(string1, number2)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 100).AddV((string) \"data\").Property(\"int\", 200).AddV((string) \"data\").Property(\"int\", 300)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 100).AddV((string) \"data\").Property(\"int\", 200).AddV((string) \"data\").Property(\"int\", 300)", "go": "g.AddV(\"data\").Property(\"int\", 100).AddV(\"data\").Property(\"int\", 200).AddV(\"data\").Property(\"int\", 300)", "groovy": "g.addV(\"data\").property(\"int\", 100).addV(\"data\").property(\"int\", 200).addV(\"data\").property(\"int\", 300)", "java": "g.addV(\"data\").property(\"int\", 100).addV(\"data\").property(\"int\", 200).addV(\"data\").property(\"int\", 300)", @@ -2939,6 +3117,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).max()", "anonymized": "g.V().values(string0).asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).max()", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Max()", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Max()", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigInt).Is(gremlingo.P.TypeOf(gremlingo.GType.BigInt)).Max()", "groovy": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).max()", "java": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).max()", @@ -2956,6 +3135,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 50)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 50)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 50)", "go": "g.AddV(\"data\").Property(\"int\", 50)", "groovy": "g.addV(\"data\").property(\"int\", 50)", "java": "g.addV(\"data\").property(\"int\", 50)", @@ -2968,6 +3148,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).project(\"original\", \"added\").by(__.identity()).by(__.math(\"_ + 999\"))", "anonymized": "g.V().values(string0).asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).project(string1, string2).by(__.identity()).by(__.math(string3))", "dotnet": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Project(\"original\", \"added\").By(__.Identity()).By(__.Math(\"_ + 999\"))", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).Project(\"original\", \"added\").By(__.Identity()).By(__.Math(\"_ + 999\"))", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.BigInt).Is(gremlingo.P.TypeOf(gremlingo.GType.BigInt)).Project(\"original\", \"added\").By(gremlingo.T__.Identity()).By(gremlingo.T__.Math(\"_ + 999\"))", "groovy": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).project(\"original\", \"added\").by(__.identity()).by(__.math(\"_ + 999\"))", "java": "g.V().values(\"int\").asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).project(\"original\", \"added\").by(__.identity()).by(__.math(\"_ + 999\"))", @@ -2985,6 +3166,7 @@ "canonical": "g.inject(777).asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).groupCount()", "anonymized": "g.inject(number0).asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).groupCount()", "dotnet": "g.Inject(777).AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).GroupCount()", + "dotnet_parameterize": "g.Inject(777).AsNumber(GType.BigInt).Is(P.TypeOf(GType.BigInt)).GroupCount()", "go": "g.Inject(777).AsNumber(gremlingo.GType.BigInt).Is(gremlingo.P.TypeOf(gremlingo.GType.BigInt)).GroupCount()", "groovy": "g.inject(777).asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).groupCount()", "java": "g.inject(777).asNumber(GType.BIGINT).is(P.typeOf(GType.BIGINT)).groupCount()", @@ -3002,6 +3184,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.BIGINT))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.BIGINT))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.BigInt))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.BigInt))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.BigInt))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.BIGINT))", "java": "g.V().values(\"age\").is(P.typeOf(GType.BIGINT))", @@ -3019,6 +3202,7 @@ "canonical": "g.inject(Binary(\"AQID\"))", "anonymized": "g.inject(bytebuffer0)", "dotnet": "g.Inject(Convert.FromBase64String(\"AQID\"))", + "dotnet_parameterize": "g.Inject(Convert.FromBase64String(\"AQID\"))", "go": "g.Inject(gremlingo.ByteBuffer{Data: []byte{1,2,3}})", "groovy": "g.inject(ByteBuffer.wrap(Base64.getDecoder().decode(\"AQID\")))", "java": "g.inject(ByteBuffer.wrap(Base64.getDecoder().decode(\"AQID\")))", @@ -3036,6 +3220,7 @@ "canonical": "g.inject(Binary(\"\"))", "anonymized": "g.inject(bytebuffer0)", "dotnet": "g.Inject(Convert.FromBase64String(\"\"))", + "dotnet_parameterize": "g.Inject(Convert.FromBase64String(\"\"))", "go": "g.Inject(gremlingo.ByteBuffer{Data: []byte{}})", "groovy": "g.inject(ByteBuffer.wrap(Base64.getDecoder().decode(\"\")))", "java": "g.inject(ByteBuffer.wrap(Base64.getDecoder().decode(\"\")))", @@ -3053,6 +3238,7 @@ "canonical": "g.inject(Binary(\"AA==\"))", "anonymized": "g.inject(bytebuffer0)", "dotnet": "g.Inject(Convert.FromBase64String(\"AA==\"))", + "dotnet_parameterize": "g.Inject(Convert.FromBase64String(\"AA==\"))", "go": "g.Inject(gremlingo.ByteBuffer{Data: []byte{0}})", "groovy": "g.inject(ByteBuffer.wrap(Base64.getDecoder().decode(\"AA==\")))", "java": "g.inject(ByteBuffer.wrap(Base64.getDecoder().decode(\"AA==\")))", @@ -3070,6 +3256,7 @@ "canonical": "g.addV(\"data\").property(\"blob\", Binary(\"AQID\"))", "anonymized": "g.addV(string0).property(string1, bytebuffer0)", "dotnet": "g.AddV((string) \"data\").Property(\"blob\", Convert.FromBase64String(\"AQID\"))", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"blob\", Convert.FromBase64String(\"AQID\"))", "go": "g.AddV(\"data\").Property(\"blob\", gremlingo.ByteBuffer{Data: []byte{1,2,3}})", "groovy": "g.addV(\"data\").property(\"blob\", ByteBuffer.wrap(Base64.getDecoder().decode(\"AQID\")))", "java": "g.addV(\"data\").property(\"blob\", ByteBuffer.wrap(Base64.getDecoder().decode(\"AQID\")))", @@ -3082,6 +3269,7 @@ "canonical": "g.V().values(\"blob\").is(P.typeOf(GType.BINARY))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.BINARY))", "dotnet": "g.V().Values(\"blob\").Is(P.TypeOf(GType.Binary))", + "dotnet_parameterize": "g.V().Values(\"blob\").Is(P.TypeOf(GType.Binary))", "go": "g.V().Values(\"blob\").Is(gremlingo.P.TypeOf(gremlingo.GType.Binary))", "groovy": "g.V().values(\"blob\").is(P.typeOf(GType.BINARY))", "java": "g.V().values(\"blob\").is(P.typeOf(GType.BINARY))", @@ -3099,6 +3287,7 @@ "canonical": "g.inject(Binary(\"AQID\")).is(P.eq(Binary(\"AQID\")))", "anonymized": "g.inject(bytebuffer0).is(P.eq(bytebuffer0))", "dotnet": "g.Inject(Convert.FromBase64String(\"AQID\")).Is(P.Eq(Convert.FromBase64String(\"AQID\")))", + "dotnet_parameterize": "g.Inject(Convert.FromBase64String(\"AQID\")).Is(P.Eq(Convert.FromBase64String(\"AQID\")))", "go": "g.Inject(gremlingo.ByteBuffer{Data: []byte{1,2,3}}).Is(gremlingo.P.Eq(gremlingo.ByteBuffer{Data: []byte{1,2,3}}))", "groovy": "g.inject(ByteBuffer.wrap(Base64.getDecoder().decode(\"AQID\"))).is(P.eq(ByteBuffer.wrap(Base64.getDecoder().decode(\"AQID\"))))", "java": "g.inject(ByteBuffer.wrap(Base64.getDecoder().decode(\"AQID\"))).is(P.eq(ByteBuffer.wrap(Base64.getDecoder().decode(\"AQID\"))))", @@ -3116,6 +3305,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 5)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 5)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 5)", "go": "g.AddV(\"data\").Property(\"int\", 5)", "groovy": "g.addV(\"data\").property(\"int\", 5)", "java": "g.addV(\"data\").property(\"int\", 5)", @@ -3128,6 +3318,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE))", "anonymized": "g.V().values(string0).asNumber(GType.BYTE).is(P.typeOf(GType.BYTE))", "dotnet": "g.V().Values(\"int\").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte))", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte))", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.Byte).Is(gremlingo.P.TypeOf(gremlingo.GType.Byte))", "groovy": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE))", "java": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE))", @@ -3145,6 +3336,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 10)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 10)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 10)", "go": "g.AddV(\"data\").Property(\"int\", 10)", "groovy": "g.addV(\"data\").property(\"int\", 10)", "java": "g.addV(\"data\").property(\"int\", 10)", @@ -3157,6 +3349,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).math(\"_ + 20\")", "anonymized": "g.V().values(string0).asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).math(string1)", "dotnet": "g.V().Values(\"int\").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Math(\"_ + 20\")", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Math(\"_ + 20\")", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.Byte).Is(gremlingo.P.TypeOf(gremlingo.GType.Byte)).Math(\"_ + 20\")", "groovy": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).math(\"_ + 20\")", "java": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).math(\"_ + 20\")", @@ -3174,6 +3367,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 7)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 7)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 7)", "go": "g.AddV(\"data\").Property(\"int\", 7)", "groovy": "g.addV(\"data\").property(\"int\", 7)", "java": "g.addV(\"data\").property(\"int\", 7)", @@ -3186,6 +3380,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).is(P.lt(10))", "anonymized": "g.V().values(string0).asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).is(P.lt(number0))", "dotnet": "g.V().Values(\"int\").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Is(P.Lt(10))", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Is(P.Lt(10))", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.Byte).Is(gremlingo.P.TypeOf(gremlingo.GType.Byte)).Is(gremlingo.P.Lt(10))", "groovy": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).is(P.lt(10))", "java": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).is(P.lt(10))", @@ -3203,6 +3398,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 1).addV(\"data\").property(\"int\", 2).addV(\"data\").property(\"int\", 3)", "anonymized": "g.addV(string0).property(string1, number0).addV(string0).property(string1, number1).addV(string0).property(string1, number2)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 1).AddV((string) \"data\").Property(\"int\", 2).AddV((string) \"data\").Property(\"int\", 3)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 1).AddV((string) \"data\").Property(\"int\", 2).AddV((string) \"data\").Property(\"int\", 3)", "go": "g.AddV(\"data\").Property(\"int\", 1).AddV(\"data\").Property(\"int\", 2).AddV(\"data\").Property(\"int\", 3)", "groovy": "g.addV(\"data\").property(\"int\", 1).addV(\"data\").property(\"int\", 2).addV(\"data\").property(\"int\", 3)", "java": "g.addV(\"data\").property(\"int\", 1).addV(\"data\").property(\"int\", 2).addV(\"data\").property(\"int\", 3)", @@ -3215,6 +3411,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).sum()", "anonymized": "g.V().values(string0).asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).sum()", "dotnet": "g.V().Values(\"int\").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Sum()", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Sum()", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.Byte).Is(gremlingo.P.TypeOf(gremlingo.GType.Byte)).Sum()", "groovy": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).sum()", "java": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).sum()", @@ -3232,6 +3429,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 8)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 8)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 8)", "go": "g.AddV(\"data\").Property(\"int\", 8)", "groovy": "g.addV(\"data\").property(\"int\", 8)", "java": "g.addV(\"data\").property(\"int\", 8)", @@ -3244,6 +3442,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).project(\"original\", \"doubled\").by(__.identity()).by(__.math(\"_ * 2\"))", "anonymized": "g.V().values(string0).asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).project(string1, string2).by(__.identity()).by(__.math(string3))", "dotnet": "g.V().Values(\"int\").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Project(\"original\", \"doubled\").By(__.Identity()).By(__.Math(\"_ * 2\"))", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Project(\"original\", \"doubled\").By(__.Identity()).By(__.Math(\"_ * 2\"))", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.Byte).Is(gremlingo.P.TypeOf(gremlingo.GType.Byte)).Project(\"original\", \"doubled\").By(gremlingo.T__.Identity()).By(gremlingo.T__.Math(\"_ * 2\"))", "groovy": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).project(\"original\", \"doubled\").by(__.identity()).by(__.math(\"_ * 2\"))", "java": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).project(\"original\", \"doubled\").by(__.identity()).by(__.math(\"_ * 2\"))", @@ -3261,6 +3460,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 12)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 12)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 12)", "go": "g.AddV(\"data\").Property(\"int\", 12)", "groovy": "g.addV(\"data\").property(\"int\", 12)", "java": "g.addV(\"data\").property(\"int\", 12)", @@ -3273,6 +3473,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).choose(__.is(P.eq(12)), __.constant(\"twelve\"), __.constant(\"other\"))", "anonymized": "g.V().values(string0).asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).choose(__.is(P.eq(number0)), __.constant(string1), __.constant(string2))", "dotnet": "g.V().Values(\"int\").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Choose(__.Is(P.Eq(12)), __.Constant(\"twelve\"), __.Constant(\"other\"))", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).Choose(__.Is(P.Eq(12)), __.Constant(\"twelve\"), __.Constant(\"other\"))", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.Byte).Is(gremlingo.P.TypeOf(gremlingo.GType.Byte)).Choose(gremlingo.T__.Is(gremlingo.P.Eq(12)), gremlingo.T__.Constant(\"twelve\"), gremlingo.T__.Constant(\"other\"))", "groovy": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).choose(__.is(P.eq(12)), __.constant(\"twelve\"), __.constant(\"other\"))", "java": "g.V().values(\"int\").asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).choose(__.is(P.eq(12)), __.constant(\"twelve\"), __.constant(\"other\"))", @@ -3290,6 +3491,7 @@ "canonical": "g.inject(15).asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).groupCount()", "anonymized": "g.inject(number0).asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).groupCount()", "dotnet": "g.Inject(15).AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).GroupCount()", + "dotnet_parameterize": "g.Inject(15).AsNumber(GType.Byte).Is(P.TypeOf(GType.Byte)).GroupCount()", "go": "g.Inject(15).AsNumber(gremlingo.GType.Byte).Is(gremlingo.P.TypeOf(gremlingo.GType.Byte)).GroupCount()", "groovy": "g.inject(15).asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).groupCount()", "java": "g.inject(15).asNumber(GType.BYTE).is(P.typeOf(GType.BYTE)).groupCount()", @@ -3307,6 +3509,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.BYTE))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.BYTE))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Byte))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Byte))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Byte))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.BYTE))", "java": "g.V().values(\"age\").is(P.typeOf(GType.BYTE))", @@ -3324,6 +3527,7 @@ "canonical": "g.inject(\"a\"c)", "anonymized": "g.inject(character0)", "dotnet": "g.Inject('a')", + "dotnet_parameterize": "g.Inject('a')", "groovy": "g.inject('a' as char)", "java": "g.inject('a')", "python": "g.inject(SingleChar('a'))" @@ -3339,6 +3543,7 @@ "canonical": "g.inject(\"\\\"\"c)", "anonymized": "g.inject(character0)", "dotnet": "g.Inject('\\\"')", + "dotnet_parameterize": "g.Inject('\\\"')", "groovy": "g.inject('\\\"' as char)", "java": "g.inject('\\\"')", "python": "g.inject(SingleChar('\\\"'))" @@ -3354,6 +3559,7 @@ "canonical": "g.inject(\"\\u00E9\"c)", "anonymized": "g.inject(character0)", "dotnet": "g.Inject('\\u00E9')", + "dotnet_parameterize": "g.Inject('\\u00E9')", "groovy": "g.inject('\\u00E9' as char)", "java": "g.inject('\\u00E9')", "python": "g.inject(SingleChar('\\u00E9'))" @@ -3369,6 +3575,7 @@ "canonical": "g.addV(\"data\").property(\"initial\", \"a\"c)", "anonymized": "g.addV(string0).property(string1, character0)", "dotnet": "g.AddV((string) \"data\").Property(\"initial\", 'a')", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"initial\", 'a')", "groovy": "g.addV(\"data\").property(\"initial\", 'a' as char)", "java": "g.addV(\"data\").property(\"initial\", 'a')", "python": "g.add_v('data').property('initial', SingleChar('a'))" @@ -3379,6 +3586,7 @@ "canonical": "g.V().values(\"initial\").is(P.typeOf(GType.CHAR))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.CHAR))", "dotnet": "g.V().Values(\"initial\").Is(P.TypeOf(GType.Char))", + "dotnet_parameterize": "g.V().Values(\"initial\").Is(P.TypeOf(GType.Char))", "go": "g.V().Values(\"initial\").Is(gremlingo.P.TypeOf(gremlingo.GType.Char))", "groovy": "g.V().values(\"initial\").is(P.typeOf(GType.CHAR))", "java": "g.V().values(\"initial\").is(P.typeOf(GType.CHAR))", @@ -3396,6 +3604,7 @@ "canonical": "g.inject(\"a\"c).is(P.eq(\"a\"c))", "anonymized": "g.inject(character0).is(P.eq(character0))", "dotnet": "g.Inject('a').Is(P.Eq('a'))", + "dotnet_parameterize": "g.Inject('a').Is(P.Eq('a'))", "groovy": "g.inject('a' as char).is(P.eq('a' as char))", "java": "g.inject('a').is(P.eq('a'))", "python": "g.inject(SingleChar('a')).is_(P.eq(SingleChar('a')))" @@ -3411,6 +3620,7 @@ "canonical": "g.addV(\"event\").property(\"datetime\", datetime(\"2023-08-08T00:00:00Z\"))", "anonymized": "g.addV(string0).property(string1, offsetdatetime0)", "dotnet": "g.AddV((string) \"event\").Property(\"datetime\", DateTimeOffset.Parse(\"2023-08-08T00:00Z\"))", + "dotnet_parameterize": "g.AddV((string) \"event\").Property(\"datetime\", DateTimeOffset.Parse(\"2023-08-08T00:00Z\"))", "go": "g.AddV(\"event\").Property(\"datetime\", time.Date(2023, 8, 8, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)))", "groovy": "g.addV(\"event\").property(\"datetime\", datetime(\"2023-08-08T00:00:00Z\"))", "java": "g.addV(\"event\").property(\"datetime\", OffsetDateTime.parse(\"2023-08-08T00:00Z\"))", @@ -3423,6 +3633,7 @@ "canonical": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DATETIME))", "dotnet": "g.V().Values(\"datetime\").Is(P.TypeOf(GType.DateTime))", + "dotnet_parameterize": "g.V().Values(\"datetime\").Is(P.TypeOf(GType.DateTime))", "go": "g.V().Values(\"datetime\").Is(gremlingo.P.TypeOf(gremlingo.GType.DateTime))", "groovy": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME))", "java": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME))", @@ -3440,6 +3651,7 @@ "canonical": "g.addV(\"event\").property(\"datetime\", datetime(\"2023-08-08T00:00:00Z\"))", "anonymized": "g.addV(string0).property(string1, offsetdatetime0)", "dotnet": "g.AddV((string) \"event\").Property(\"datetime\", DateTimeOffset.Parse(\"2023-08-08T00:00Z\"))", + "dotnet_parameterize": "g.AddV((string) \"event\").Property(\"datetime\", DateTimeOffset.Parse(\"2023-08-08T00:00Z\"))", "go": "g.AddV(\"event\").Property(\"datetime\", time.Date(2023, 8, 8, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)))", "groovy": "g.addV(\"event\").property(\"datetime\", datetime(\"2023-08-08T00:00:00Z\"))", "java": "g.addV(\"event\").property(\"datetime\", OffsetDateTime.parse(\"2023-08-08T00:00Z\"))", @@ -3452,6 +3664,7 @@ "canonical": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).project(\"original\", \"nextDay\").by(__.identity()).by(__.dateAdd(DT.day, 1))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DATETIME)).project(string1, string2).by(__.identity()).by(__.dateAdd(DT.day, number0))", "dotnet": "g.V().Values(\"datetime\").Is(P.TypeOf(GType.DateTime)).Project(\"original\", \"nextDay\").By(__.Identity()).By(__.DateAdd(DT.Day, 1))", + "dotnet_parameterize": "g.V().Values(\"datetime\").Is(P.TypeOf(GType.DateTime)).Project(\"original\", \"nextDay\").By(__.Identity()).By(__.DateAdd(DT.Day, 1))", "go": "g.V().Values(\"datetime\").Is(gremlingo.P.TypeOf(gremlingo.GType.DateTime)).Project(\"original\", \"nextDay\").By(gremlingo.T__.Identity()).By(gremlingo.T__.DateAdd(gremlingo.DT.Day, 1))", "groovy": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).project(\"original\", \"nextDay\").by(__.identity()).by(__.dateAdd(DT.day, 1))", "java": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).project(\"original\", \"nextDay\").by(__.identity()).by(__.dateAdd(DT.day, 1))", @@ -3469,6 +3682,7 @@ "canonical": "g.addV(\"event\").property(\"datetime\", datetime(\"2023-08-08T00:00:00Z\"))", "anonymized": "g.addV(string0).property(string1, offsetdatetime0)", "dotnet": "g.AddV((string) \"event\").Property(\"datetime\", DateTimeOffset.Parse(\"2023-08-08T00:00Z\"))", + "dotnet_parameterize": "g.AddV((string) \"event\").Property(\"datetime\", DateTimeOffset.Parse(\"2023-08-08T00:00Z\"))", "go": "g.AddV(\"event\").Property(\"datetime\", time.Date(2023, 8, 8, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)))", "groovy": "g.addV(\"event\").property(\"datetime\", datetime(\"2023-08-08T00:00:00Z\"))", "java": "g.addV(\"event\").property(\"datetime\", OffsetDateTime.parse(\"2023-08-08T00:00Z\"))", @@ -3481,6 +3695,7 @@ "canonical": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).dateDiff(datetime(\"2023-08-08T00:00:30Z\"))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DATETIME)).dateDiff(offsetdatetime0)", "dotnet": "g.V().Values(\"datetime\").Is(P.TypeOf(GType.DateTime)).DateDiff(DateTimeOffset.Parse(\"2023-08-08T00:00:30Z\"))", + "dotnet_parameterize": "g.V().Values(\"datetime\").Is(P.TypeOf(GType.DateTime)).DateDiff(DateTimeOffset.Parse(\"2023-08-08T00:00:30Z\"))", "go": "g.V().Values(\"datetime\").Is(gremlingo.P.TypeOf(gremlingo.GType.DateTime)).DateDiff(time.Date(2023, 8, 8, 0, 0, 30, 0, time.FixedZone(\"UTC+00:00\", 0)))", "groovy": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).dateDiff(datetime(\"2023-08-08T00:00:30Z\"))", "java": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).dateDiff(OffsetDateTime.parse(\"2023-08-08T00:00:30Z\"))", @@ -3498,6 +3713,7 @@ "canonical": "g.addV(\"event\").property(\"datetime\", datetime(\"2023-08-08T12:34:56Z\"))", "anonymized": "g.addV(string0).property(string1, offsetdatetime0)", "dotnet": "g.AddV((string) \"event\").Property(\"datetime\", DateTimeOffset.Parse(\"2023-08-08T12:34:56Z\"))", + "dotnet_parameterize": "g.AddV((string) \"event\").Property(\"datetime\", DateTimeOffset.Parse(\"2023-08-08T12:34:56Z\"))", "go": "g.AddV(\"event\").Property(\"datetime\", time.Date(2023, 8, 8, 12, 34, 56, 0, time.FixedZone(\"UTC+00:00\", 0)))", "groovy": "g.addV(\"event\").property(\"datetime\", datetime(\"2023-08-08T12:34:56Z\"))", "java": "g.addV(\"event\").property(\"datetime\", OffsetDateTime.parse(\"2023-08-08T12:34:56Z\"))", @@ -3510,6 +3726,7 @@ "canonical": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).where(__.is(P.gt(datetime(\"2020-01-01T00:00:00Z\"))))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DATETIME)).where(__.is(P.gt(offsetdatetime0)))", "dotnet": "g.V().Values(\"datetime\").Is(P.TypeOf(GType.DateTime)).Where(__.Is(P.Gt(DateTimeOffset.Parse(\"2020-01-01T00:00Z\"))))", + "dotnet_parameterize": "g.V().Values(\"datetime\").Is(P.TypeOf(GType.DateTime)).Where(__.Is(P.Gt(DateTimeOffset.Parse(\"2020-01-01T00:00Z\"))))", "go": "g.V().Values(\"datetime\").Is(gremlingo.P.TypeOf(gremlingo.GType.DateTime)).Where(gremlingo.T__.Is(gremlingo.P.Gt(time.Date(2020, 1, 1, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)))))", "groovy": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).where(__.is(P.gt(datetime(\"2020-01-01T00:00:00Z\"))))", "java": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).where(__.is(P.gt(OffsetDateTime.parse(\"2020-01-01T00:00Z\"))))", @@ -3527,6 +3744,7 @@ "canonical": "g.addV(\"event\").property(\"datetime\", datetime(\"2023-08-08T00:00:00Z\"))", "anonymized": "g.addV(string0).property(string1, offsetdatetime0)", "dotnet": "g.AddV((string) \"event\").Property(\"datetime\", DateTimeOffset.Parse(\"2023-08-08T00:00Z\"))", + "dotnet_parameterize": "g.AddV((string) \"event\").Property(\"datetime\", DateTimeOffset.Parse(\"2023-08-08T00:00Z\"))", "go": "g.AddV(\"event\").Property(\"datetime\", time.Date(2023, 8, 8, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)))", "groovy": "g.addV(\"event\").property(\"datetime\", datetime(\"2023-08-08T00:00:00Z\"))", "java": "g.addV(\"event\").property(\"datetime\", OffsetDateTime.parse(\"2023-08-08T00:00Z\"))", @@ -3539,6 +3757,7 @@ "canonical": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).choose(__.is(P.eq(datetime(\"2023-08-08T00:00:00Z\"))), __.constant(\"match\"), __.constant(\"noMatch\"))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DATETIME)).choose(__.is(P.eq(offsetdatetime0)), __.constant(string1), __.constant(string2))", "dotnet": "g.V().Values(\"datetime\").Is(P.TypeOf(GType.DateTime)).Choose(__.Is(P.Eq(DateTimeOffset.Parse(\"2023-08-08T00:00Z\"))), __.Constant(\"match\"), __.Constant(\"noMatch\"))", + "dotnet_parameterize": "g.V().Values(\"datetime\").Is(P.TypeOf(GType.DateTime)).Choose(__.Is(P.Eq(DateTimeOffset.Parse(\"2023-08-08T00:00Z\"))), __.Constant(\"match\"), __.Constant(\"noMatch\"))", "go": "g.V().Values(\"datetime\").Is(gremlingo.P.TypeOf(gremlingo.GType.DateTime)).Choose(gremlingo.T__.Is(gremlingo.P.Eq(time.Date(2023, 8, 8, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)))), gremlingo.T__.Constant(\"match\"), gremlingo.T__.Constant(\"noMatch\"))", "groovy": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).choose(__.is(P.eq(datetime(\"2023-08-08T00:00:00Z\"))), __.constant(\"match\"), __.constant(\"noMatch\"))", "java": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).choose(__.is(P.eq(OffsetDateTime.parse(\"2023-08-08T00:00Z\"))), __.constant(\"match\"), __.constant(\"noMatch\"))", @@ -3556,6 +3775,7 @@ "canonical": "g.addV(\"event\").property(\"datetime\", datetime(\"2023-08-08T00:00:00Z\"))", "anonymized": "g.addV(string0).property(string1, offsetdatetime0)", "dotnet": "g.AddV((string) \"event\").Property(\"datetime\", DateTimeOffset.Parse(\"2023-08-08T00:00Z\"))", + "dotnet_parameterize": "g.AddV((string) \"event\").Property(\"datetime\", DateTimeOffset.Parse(\"2023-08-08T00:00Z\"))", "go": "g.AddV(\"event\").Property(\"datetime\", time.Date(2023, 8, 8, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)))", "groovy": "g.addV(\"event\").property(\"datetime\", datetime(\"2023-08-08T00:00:00Z\"))", "java": "g.addV(\"event\").property(\"datetime\", OffsetDateTime.parse(\"2023-08-08T00:00Z\"))", @@ -3568,6 +3788,7 @@ "canonical": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DATETIME)).local(__.aggregate(string1)).cap(string1)", "dotnet": "g.V().Values(\"datetime\").Is(P.TypeOf(GType.DateTime)).Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.V().Values(\"datetime\").Is(P.TypeOf(GType.DateTime)).Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.V().Values(\"datetime\").Is(gremlingo.P.TypeOf(gremlingo.GType.DateTime)).Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.V().values(\"datetime\").is(P.typeOf(GType.DATETIME)).local(__.aggregate(\"a\")).cap(\"a\")", @@ -3585,6 +3806,7 @@ "canonical": "g.inject(datetime(\"2023-08-08T00:00:00Z\")).is(P.typeOf(GType.DATETIME)).aggregate(\"a\").cap(\"a\")", "anonymized": "g.inject(offsetdatetime0).is(P.typeOf(GType.DATETIME)).aggregate(string0).cap(string0)", "dotnet": "g.Inject(DateTimeOffset.Parse(\"2023-08-08T00:00Z\")).Is(P.TypeOf(GType.DateTime)).Aggregate(\"a\").Cap(\"a\")", + "dotnet_parameterize": "g.Inject(DateTimeOffset.Parse(\"2023-08-08T00:00Z\")).Is(P.TypeOf(GType.DateTime)).Aggregate(\"a\").Cap(\"a\")", "go": "g.Inject(time.Date(2023, 8, 8, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0))).Is(gremlingo.P.TypeOf(gremlingo.GType.DateTime)).Aggregate(\"a\").Cap(\"a\")", "groovy": "g.inject(datetime(\"2023-08-08T00:00:00Z\")).is(P.typeOf(GType.DATETIME)).aggregate(\"a\").cap(\"a\")", "java": "g.inject(OffsetDateTime.parse(\"2023-08-08T00:00Z\")).is(P.typeOf(GType.DATETIME)).aggregate(\"a\").cap(\"a\")", @@ -3602,6 +3824,7 @@ "canonical": "g.inject(datetime(\"2023-08-08T12:34:56Z\")).is(P.typeOf(GType.DATETIME)).groupCount()", "anonymized": "g.inject(offsetdatetime0).is(P.typeOf(GType.DATETIME)).groupCount()", "dotnet": "g.Inject(DateTimeOffset.Parse(\"2023-08-08T12:34:56Z\")).Is(P.TypeOf(GType.DateTime)).GroupCount()", + "dotnet_parameterize": "g.Inject(DateTimeOffset.Parse(\"2023-08-08T12:34:56Z\")).Is(P.TypeOf(GType.DateTime)).GroupCount()", "go": "g.Inject(time.Date(2023, 8, 8, 12, 34, 56, 0, time.FixedZone(\"UTC+00:00\", 0))).Is(gremlingo.P.TypeOf(gremlingo.GType.DateTime)).GroupCount()", "groovy": "g.inject(datetime(\"2023-08-08T12:34:56Z\")).is(P.typeOf(GType.DATETIME)).groupCount()", "java": "g.inject(OffsetDateTime.parse(\"2023-08-08T12:34:56Z\")).is(P.typeOf(GType.DATETIME)).groupCount()", @@ -3619,6 +3842,7 @@ "canonical": "g.addV(\"data\").property(\"double\", 1.5d)", "anonymized": "g.addV(string0).property(string1, double0)", "dotnet": "g.AddV((string) \"data\").Property(\"double\", 1.5d)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"double\", 1.5d)", "go": "g.AddV(\"data\").Property(\"double\", 1.5)", "groovy": "g.addV(\"data\").property(\"double\", 1.5d)", "java": "g.addV(\"data\").property(\"double\", 1.5d)", @@ -3631,6 +3855,7 @@ "canonical": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DOUBLE))", "dotnet": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double))", + "dotnet_parameterize": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double))", "go": "g.V().Values(\"double\").Is(gremlingo.P.TypeOf(gremlingo.GType.Double))", "groovy": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE))", "java": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE))", @@ -3648,6 +3873,7 @@ "canonical": "g.E().values(\"weight\").is(P.typeOf(GType.DOUBLE))", "anonymized": "g.E().values(string0).is(P.typeOf(GType.DOUBLE))", "dotnet": "g.E().Values(\"weight\").Is(P.TypeOf(GType.Double))", + "dotnet_parameterize": "g.E().Values(\"weight\").Is(P.TypeOf(GType.Double))", "go": "g.E().Values(\"weight\").Is(gremlingo.P.TypeOf(gremlingo.GType.Double))", "groovy": "g.E().values(\"weight\").is(P.typeOf(GType.DOUBLE))", "java": "g.E().values(\"weight\").is(P.typeOf(GType.DOUBLE))", @@ -3665,6 +3891,7 @@ "canonical": "g.addV(\"data\").property(\"double\", 2.7d)", "anonymized": "g.addV(string0).property(string1, double0)", "dotnet": "g.AddV((string) \"data\").Property(\"double\", 2.7d)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"double\", 2.7d)", "go": "g.AddV(\"data\").Property(\"double\", 2.7)", "groovy": "g.addV(\"data\").property(\"double\", 2.7d)", "java": "g.addV(\"data\").property(\"double\", 2.7d)", @@ -3677,6 +3904,7 @@ "canonical": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).math('ceil _')", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DOUBLE)).math(string1)", "dotnet": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Math(\"ceil _\")", + "dotnet_parameterize": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Math(\"ceil _\")", "go": "g.V().Values(\"double\").Is(gremlingo.P.TypeOf(gremlingo.GType.Double)).Math(\"ceil _\")", "groovy": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).math('ceil _')", "java": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).math(\"ceil _\")", @@ -3694,6 +3922,7 @@ "canonical": "g.addV(\"data\").property(\"double\", 0.8d).addV(\"data\").property(\"double\", 1.2d)", "anonymized": "g.addV(string0).property(string1, double0).addV(string0).property(string1, double1)", "dotnet": "g.AddV((string) \"data\").Property(\"double\", 0.8d).AddV((string) \"data\").Property(\"double\", 1.2d)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"double\", 0.8d).AddV((string) \"data\").Property(\"double\", 1.2d)", "go": "g.AddV(\"data\").Property(\"double\", 0.8).AddV(\"data\").Property(\"double\", 1.2)", "groovy": "g.addV(\"data\").property(\"double\", 0.8d).addV(\"data\").property(\"double\", 1.2d)", "java": "g.addV(\"data\").property(\"double\", 0.8d).addV(\"data\").property(\"double\", 1.2d)", @@ -3706,6 +3935,7 @@ "canonical": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).is(P.gt(1.0d))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DOUBLE)).is(P.gt(double0))", "dotnet": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Is(P.Gt(1.0d))", + "dotnet_parameterize": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Is(P.Gt(1.0d))", "go": "g.V().Values(\"double\").Is(gremlingo.P.TypeOf(gremlingo.GType.Double)).Is(gremlingo.P.Gt(1.0))", "groovy": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).is(P.gt(1.0d))", "java": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).is(P.gt(1.0d))", @@ -3723,6 +3953,7 @@ "canonical": "g.addV(\"data\").property(\"double\", 1.5d).addV(\"data\").property(\"double\", 2.5d).addV(\"data\").property(\"double\", 3.5d)", "anonymized": "g.addV(string0).property(string1, double0).addV(string0).property(string1, double1).addV(string0).property(string1, double2)", "dotnet": "g.AddV((string) \"data\").Property(\"double\", 1.5d).AddV((string) \"data\").Property(\"double\", 2.5d).AddV((string) \"data\").Property(\"double\", 3.5d)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"double\", 1.5d).AddV((string) \"data\").Property(\"double\", 2.5d).AddV((string) \"data\").Property(\"double\", 3.5d)", "go": "g.AddV(\"data\").Property(\"double\", 1.5).AddV(\"data\").Property(\"double\", 2.5).AddV(\"data\").Property(\"double\", 3.5)", "groovy": "g.addV(\"data\").property(\"double\", 1.5d).addV(\"data\").property(\"double\", 2.5d).addV(\"data\").property(\"double\", 3.5d)", "java": "g.addV(\"data\").property(\"double\", 1.5d).addV(\"data\").property(\"double\", 2.5d).addV(\"data\").property(\"double\", 3.5d)", @@ -3735,6 +3966,7 @@ "canonical": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).sum()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DOUBLE)).sum()", "dotnet": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Sum()", + "dotnet_parameterize": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Sum()", "go": "g.V().Values(\"double\").Is(gremlingo.P.TypeOf(gremlingo.GType.Double)).Sum()", "groovy": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).sum()", "java": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).sum()", @@ -3752,6 +3984,7 @@ "canonical": "g.addV(\"data\").property(\"double\", 0.1d).addV(\"data\").property(\"double\", 0.5d).addV(\"data\").property(\"double\", 0.9d)", "anonymized": "g.addV(string0).property(string1, double0).addV(string0).property(string1, double1).addV(string0).property(string1, double2)", "dotnet": "g.AddV((string) \"data\").Property(\"double\", 0.1d).AddV((string) \"data\").Property(\"double\", 0.5d).AddV((string) \"data\").Property(\"double\", 0.9d)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"double\", 0.1d).AddV((string) \"data\").Property(\"double\", 0.5d).AddV((string) \"data\").Property(\"double\", 0.9d)", "go": "g.AddV(\"data\").Property(\"double\", 0.1).AddV(\"data\").Property(\"double\", 0.5).AddV(\"data\").Property(\"double\", 0.9)", "groovy": "g.addV(\"data\").property(\"double\", 0.1d).addV(\"data\").property(\"double\", 0.5d).addV(\"data\").property(\"double\", 0.9d)", "java": "g.addV(\"data\").property(\"double\", 0.1d).addV(\"data\").property(\"double\", 0.5d).addV(\"data\").property(\"double\", 0.9d)", @@ -3764,6 +3997,7 @@ "canonical": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).min()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DOUBLE)).min()", "dotnet": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Min()", + "dotnet_parameterize": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Min()", "go": "g.V().Values(\"double\").Is(gremlingo.P.TypeOf(gremlingo.GType.Double)).Min()", "groovy": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).min()", "java": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).min()", @@ -3781,6 +4015,7 @@ "canonical": "g.addV(\"data\").property(\"double\", 2.1d).addV(\"data\").property(\"double\", 3.7d).addV(\"data\").property(\"double\", 1.9d)", "anonymized": "g.addV(string0).property(string1, double0).addV(string0).property(string1, double1).addV(string0).property(string1, double2)", "dotnet": "g.AddV((string) \"data\").Property(\"double\", 2.1d).AddV((string) \"data\").Property(\"double\", 3.7d).AddV((string) \"data\").Property(\"double\", 1.9d)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"double\", 2.1d).AddV((string) \"data\").Property(\"double\", 3.7d).AddV((string) \"data\").Property(\"double\", 1.9d)", "go": "g.AddV(\"data\").Property(\"double\", 2.1).AddV(\"data\").Property(\"double\", 3.7).AddV(\"data\").Property(\"double\", 1.9)", "groovy": "g.addV(\"data\").property(\"double\", 2.1d).addV(\"data\").property(\"double\", 3.7d).addV(\"data\").property(\"double\", 1.9d)", "java": "g.addV(\"data\").property(\"double\", 2.1d).addV(\"data\").property(\"double\", 3.7d).addV(\"data\").property(\"double\", 1.9d)", @@ -3793,6 +4028,7 @@ "canonical": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).max()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DOUBLE)).max()", "dotnet": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Max()", + "dotnet_parameterize": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Max()", "go": "g.V().Values(\"double\").Is(gremlingo.P.TypeOf(gremlingo.GType.Double)).Max()", "groovy": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).max()", "java": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).max()", @@ -3810,6 +4046,7 @@ "canonical": "g.addV(\"data\").property(\"double\", 2.1d).addV(\"data\").property(\"double\", 4.1d).addV(\"data\").property(\"double\", 6.1d)", "anonymized": "g.addV(string0).property(string1, double0).addV(string0).property(string1, double1).addV(string0).property(string1, double2)", "dotnet": "g.AddV((string) \"data\").Property(\"double\", 2.1d).AddV((string) \"data\").Property(\"double\", 4.1d).AddV((string) \"data\").Property(\"double\", 6.1d)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"double\", 2.1d).AddV((string) \"data\").Property(\"double\", 4.1d).AddV((string) \"data\").Property(\"double\", 6.1d)", "go": "g.AddV(\"data\").Property(\"double\", 2.1).AddV(\"data\").Property(\"double\", 4.1).AddV(\"data\").Property(\"double\", 6.1)", "groovy": "g.addV(\"data\").property(\"double\", 2.1d).addV(\"data\").property(\"double\", 4.1d).addV(\"data\").property(\"double\", 6.1d)", "java": "g.addV(\"data\").property(\"double\", 2.1d).addV(\"data\").property(\"double\", 4.1d).addV(\"data\").property(\"double\", 6.1d)", @@ -3822,6 +4059,7 @@ "canonical": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).mean()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DOUBLE)).mean()", "dotnet": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Mean()", + "dotnet_parameterize": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Mean()", "go": "g.V().Values(\"double\").Is(gremlingo.P.TypeOf(gremlingo.GType.Double)).Mean()", "groovy": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).mean()", "java": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).mean()", @@ -3839,6 +4077,7 @@ "canonical": "g.addV(\"data\").property(\"double\", 3.2d).addV(\"data\").property(\"double\", 1.8d).addV(\"data\").property(\"double\", 2.5d)", "anonymized": "g.addV(string0).property(string1, double0).addV(string0).property(string1, double1).addV(string0).property(string1, double2)", "dotnet": "g.AddV((string) \"data\").Property(\"double\", 3.2d).AddV((string) \"data\").Property(\"double\", 1.8d).AddV((string) \"data\").Property(\"double\", 2.5d)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"double\", 3.2d).AddV((string) \"data\").Property(\"double\", 1.8d).AddV((string) \"data\").Property(\"double\", 2.5d)", "go": "g.AddV(\"data\").Property(\"double\", 3.2).AddV(\"data\").Property(\"double\", 1.8).AddV(\"data\").Property(\"double\", 2.5)", "groovy": "g.addV(\"data\").property(\"double\", 3.2d).addV(\"data\").property(\"double\", 1.8d).addV(\"data\").property(\"double\", 2.5d)", "java": "g.addV(\"data\").property(\"double\", 3.2d).addV(\"data\").property(\"double\", 1.8d).addV(\"data\").property(\"double\", 2.5d)", @@ -3851,6 +4090,7 @@ "canonical": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).order().by(Order.asc)", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DOUBLE)).order().by(Order.asc)", "dotnet": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Order().By(Order.Asc)", + "dotnet_parameterize": "g.V().Values(\"double\").Is(P.TypeOf(GType.Double)).Order().By(Order.Asc)", "go": "g.V().Values(\"double\").Is(gremlingo.P.TypeOf(gremlingo.GType.Double)).Order().By(gremlingo.Order.Asc)", "groovy": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).order().by(Order.asc)", "java": "g.V().values(\"double\").is(P.typeOf(GType.DOUBLE)).order().by(Order.asc)", @@ -3868,6 +4108,7 @@ "canonical": "g.inject(5.5d).is(P.typeOf(GType.DOUBLE)).groupCount()", "anonymized": "g.inject(double0).is(P.typeOf(GType.DOUBLE)).groupCount()", "dotnet": "g.Inject(5.5d).Is(P.TypeOf(GType.Double)).GroupCount()", + "dotnet_parameterize": "g.Inject(5.5d).Is(P.TypeOf(GType.Double)).GroupCount()", "go": "g.Inject(5.5).Is(gremlingo.P.TypeOf(gremlingo.GType.Double)).GroupCount()", "groovy": "g.inject(5.5d).is(P.typeOf(GType.DOUBLE)).groupCount()", "java": "g.inject(5.5d).is(P.typeOf(GType.DOUBLE)).groupCount()", @@ -3885,6 +4126,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.DOUBLE))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DOUBLE))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Double))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Double))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Double))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.DOUBLE))", "java": "g.V().values(\"age\").is(P.typeOf(GType.DOUBLE))", @@ -3902,6 +4144,7 @@ "canonical": "g.inject(Duration(9000,0))", "anonymized": "g.inject(duration0)", "dotnet": "g.Inject(TimeSpan.FromTicks(90000000000L))", + "dotnet_parameterize": "g.Inject(TimeSpan.FromTicks(90000000000L))", "go": "g.Inject(time.Duration(9000000000000))", "groovy": "g.inject(Duration.ofSeconds(9000, 0))", "java": "g.inject(Duration.ofSeconds(9000, 0))", @@ -3918,6 +4161,7 @@ "canonical": "g.inject(Duration(0,0))", "anonymized": "g.inject(duration0)", "dotnet": "g.Inject(TimeSpan.FromTicks(0L))", + "dotnet_parameterize": "g.Inject(TimeSpan.FromTicks(0L))", "go": "g.Inject(time.Duration(0))", "groovy": "g.inject(Duration.ofSeconds(0, 0))", "java": "g.inject(Duration.ofSeconds(0, 0))", @@ -3934,6 +4178,7 @@ "canonical": "g.inject(Duration(0,500000000))", "anonymized": "g.inject(duration0)", "dotnet": "g.Inject(TimeSpan.FromTicks(5000000L))", + "dotnet_parameterize": "g.Inject(TimeSpan.FromTicks(5000000L))", "go": "g.Inject(time.Duration(500000000))", "groovy": "g.inject(Duration.ofSeconds(0, 500000000))", "java": "g.inject(Duration.ofSeconds(0, 500000000))", @@ -3950,6 +4195,7 @@ "canonical": "g.inject(Duration(30,0))", "anonymized": "g.inject(duration0)", "dotnet": "g.Inject(TimeSpan.FromTicks(300000000L))", + "dotnet_parameterize": "g.Inject(TimeSpan.FromTicks(300000000L))", "go": "g.Inject(time.Duration(30000000000))", "groovy": "g.inject(Duration.ofSeconds(30, 0))", "java": "g.inject(Duration.ofSeconds(30, 0))", @@ -3966,6 +4212,7 @@ "canonical": "g.inject(Duration(30,0,false))", "anonymized": "g.inject(duration0)", "dotnet": "g.Inject(TimeSpan.FromTicks(300000000L).Negate())", + "dotnet_parameterize": "g.Inject(TimeSpan.FromTicks(300000000L).Negate())", "go": "g.Inject(time.Duration(-30000000000))", "groovy": "g.inject(Duration.ofSeconds(30, 0).negated())", "java": "g.inject(Duration.ofSeconds(30, 0).negated())", @@ -3982,6 +4229,7 @@ "canonical": "g.inject(Duration(1,500000000,false))", "anonymized": "g.inject(duration0)", "dotnet": "g.Inject(TimeSpan.FromTicks(15000000L).Negate())", + "dotnet_parameterize": "g.Inject(TimeSpan.FromTicks(15000000L).Negate())", "go": "g.Inject(time.Duration(-1500000000))", "groovy": "g.inject(Duration.ofSeconds(1, 500000000).negated())", "java": "g.inject(Duration.ofSeconds(1, 500000000).negated())", @@ -3998,6 +4246,7 @@ "canonical": "g.addV(\"data\").property(\"length\", Duration(9000,0))", "anonymized": "g.addV(string0).property(string1, duration0)", "dotnet": "g.AddV((string) \"data\").Property(\"length\", TimeSpan.FromTicks(90000000000L))", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"length\", TimeSpan.FromTicks(90000000000L))", "go": "g.AddV(\"data\").Property(\"length\", time.Duration(9000000000000))", "groovy": "g.addV(\"data\").property(\"length\", Duration.ofSeconds(9000, 0))", "java": "g.addV(\"data\").property(\"length\", Duration.ofSeconds(9000, 0))", @@ -4009,6 +4258,7 @@ "canonical": "g.V().values(\"length\").is(P.typeOf(GType.DURATION))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DURATION))", "dotnet": "g.V().Values(\"length\").Is(P.TypeOf(GType.Duration))", + "dotnet_parameterize": "g.V().Values(\"length\").Is(P.TypeOf(GType.Duration))", "go": "g.V().Values(\"length\").Is(gremlingo.P.TypeOf(gremlingo.GType.Duration))", "groovy": "g.V().values(\"length\").is(P.typeOf(GType.DURATION))", "java": "g.V().values(\"length\").is(P.typeOf(GType.DURATION))", @@ -4026,6 +4276,7 @@ "canonical": "g.inject(Duration(9000,0)).is(P.gt(Duration(3600,0)))", "anonymized": "g.inject(duration0).is(P.gt(duration1))", "dotnet": "g.Inject(TimeSpan.FromTicks(90000000000L)).Is(P.Gt(TimeSpan.FromTicks(36000000000L)))", + "dotnet_parameterize": "g.Inject(TimeSpan.FromTicks(90000000000L)).Is(P.Gt(TimeSpan.FromTicks(36000000000L)))", "go": "g.Inject(time.Duration(9000000000000)).Is(gremlingo.P.Gt(time.Duration(3600000000000)))", "groovy": "g.inject(Duration.ofSeconds(9000, 0)).is(P.gt(Duration.ofSeconds(3600, 0)))", "java": "g.inject(Duration.ofSeconds(9000, 0)).is(P.gt(Duration.ofSeconds(3600, 0)))", @@ -4042,6 +4293,7 @@ "canonical": "g.addV(\"data\").property(\"float\", 2.5)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"float\", 2.5)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"float\", 2.5)", "go": "g.AddV(\"data\").Property(\"float\", 2.5)", "groovy": "g.addV(\"data\").property(\"float\", 2.5)", "java": "g.addV(\"data\").property(\"float\", 2.5)", @@ -4054,6 +4306,7 @@ "canonical": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT))", "anonymized": "g.V().values(string0).asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT))", "dotnet": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float))", + "dotnet_parameterize": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float))", "go": "g.V().Values(\"float\").AsNumber(gremlingo.GType.Float).Is(gremlingo.P.TypeOf(gremlingo.GType.Float))", "groovy": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT))", "java": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT))", @@ -4071,6 +4324,7 @@ "canonical": "g.addV(\"data\").property(\"float\", 3.0)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"float\", 3.0)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"float\", 3.0)", "go": "g.AddV(\"data\").Property(\"float\", 3.0)", "groovy": "g.addV(\"data\").property(\"float\", 3.0)", "java": "g.addV(\"data\").property(\"float\", 3.0)", @@ -4083,6 +4337,7 @@ "canonical": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).math(\"_ * 2\")", "anonymized": "g.V().values(string0).asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).math(string1)", "dotnet": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Math(\"_ * 2\")", + "dotnet_parameterize": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Math(\"_ * 2\")", "go": "g.V().Values(\"float\").AsNumber(gremlingo.GType.Float).Is(gremlingo.P.TypeOf(gremlingo.GType.Float)).Math(\"_ * 2\")", "groovy": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).math(\"_ * 2\")", "java": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).math(\"_ * 2\")", @@ -4100,6 +4355,7 @@ "canonical": "g.addV(\"data\").property(\"float\", 1.5)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"float\", 1.5)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"float\", 1.5)", "go": "g.AddV(\"data\").Property(\"float\", 1.5)", "groovy": "g.addV(\"data\").property(\"float\", 1.5)", "java": "g.addV(\"data\").property(\"float\", 1.5)", @@ -4112,6 +4368,7 @@ "canonical": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).is(P.eq(1.5))", "anonymized": "g.V().values(string0).asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).is(P.eq(number0))", "dotnet": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Is(P.Eq(1.5))", + "dotnet_parameterize": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Is(P.Eq(1.5))", "go": "g.V().Values(\"float\").AsNumber(gremlingo.GType.Float).Is(gremlingo.P.TypeOf(gremlingo.GType.Float)).Is(gremlingo.P.Eq(1.5))", "groovy": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).is(P.eq(1.5))", "java": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).is(P.eq(1.5))", @@ -4129,6 +4386,7 @@ "canonical": "g.addV(\"data\").property(\"float\", 1.5).addV(\"data\").property(\"float\", 2.5).addV(\"data\").property(\"float\", 3.0)", "anonymized": "g.addV(string0).property(string1, number0).addV(string0).property(string1, number1).addV(string0).property(string1, number2)", "dotnet": "g.AddV((string) \"data\").Property(\"float\", 1.5).AddV((string) \"data\").Property(\"float\", 2.5).AddV((string) \"data\").Property(\"float\", 3.0)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"float\", 1.5).AddV((string) \"data\").Property(\"float\", 2.5).AddV((string) \"data\").Property(\"float\", 3.0)", "go": "g.AddV(\"data\").Property(\"float\", 1.5).AddV(\"data\").Property(\"float\", 2.5).AddV(\"data\").Property(\"float\", 3.0)", "groovy": "g.addV(\"data\").property(\"float\", 1.5).addV(\"data\").property(\"float\", 2.5).addV(\"data\").property(\"float\", 3.0)", "java": "g.addV(\"data\").property(\"float\", 1.5).addV(\"data\").property(\"float\", 2.5).addV(\"data\").property(\"float\", 3.0)", @@ -4141,6 +4399,7 @@ "canonical": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).sum()", "anonymized": "g.V().values(string0).asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).sum()", "dotnet": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Sum()", + "dotnet_parameterize": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Sum()", "go": "g.V().Values(\"float\").AsNumber(gremlingo.GType.Float).Is(gremlingo.P.TypeOf(gremlingo.GType.Float)).Sum()", "groovy": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).sum()", "java": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).sum()", @@ -4158,6 +4417,7 @@ "canonical": "g.addV(\"data\").property(\"float\", 4.5)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"float\", 4.5)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"float\", 4.5)", "go": "g.AddV(\"data\").Property(\"float\", 4.5)", "groovy": "g.addV(\"data\").property(\"float\", 4.5)", "java": "g.addV(\"data\").property(\"float\", 4.5)", @@ -4170,6 +4430,7 @@ "canonical": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).project(\"original\", \"multiplied\").by(__.identity()).by(__.math(\"_ * 10\"))", "anonymized": "g.V().values(string0).asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).project(string1, string2).by(__.identity()).by(__.math(string3))", "dotnet": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Project(\"original\", \"multiplied\").By(__.Identity()).By(__.Math(\"_ * 10\"))", + "dotnet_parameterize": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Project(\"original\", \"multiplied\").By(__.Identity()).By(__.Math(\"_ * 10\"))", "go": "g.V().Values(\"float\").AsNumber(gremlingo.GType.Float).Is(gremlingo.P.TypeOf(gremlingo.GType.Float)).Project(\"original\", \"multiplied\").By(gremlingo.T__.Identity()).By(gremlingo.T__.Math(\"_ * 10\"))", "groovy": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).project(\"original\", \"multiplied\").by(__.identity()).by(__.math(\"_ * 10\"))", "java": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).project(\"original\", \"multiplied\").by(__.identity()).by(__.math(\"_ * 10\"))", @@ -4187,6 +4448,7 @@ "canonical": "g.addV(\"data\").property(\"float\", 0.5).addV(\"data\").property(\"float\", 1.5)", "anonymized": "g.addV(string0).property(string1, number0).addV(string0).property(string1, number1)", "dotnet": "g.AddV((string) \"data\").Property(\"float\", 0.5).AddV((string) \"data\").Property(\"float\", 1.5)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"float\", 0.5).AddV((string) \"data\").Property(\"float\", 1.5)", "go": "g.AddV(\"data\").Property(\"float\", 0.5).AddV(\"data\").Property(\"float\", 1.5)", "groovy": "g.addV(\"data\").property(\"float\", 0.5).addV(\"data\").property(\"float\", 1.5)", "java": "g.addV(\"data\").property(\"float\", 0.5).addV(\"data\").property(\"float\", 1.5)", @@ -4199,6 +4461,7 @@ "canonical": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).where(__.is(P.gt(1.0)))", "anonymized": "g.V().values(string0).asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).where(__.is(P.gt(number0)))", "dotnet": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Where(__.Is(P.Gt(1.0)))", + "dotnet_parameterize": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Where(__.Is(P.Gt(1.0)))", "go": "g.V().Values(\"float\").AsNumber(gremlingo.GType.Float).Is(gremlingo.P.TypeOf(gremlingo.GType.Float)).Where(gremlingo.T__.Is(gremlingo.P.Gt(1.0)))", "groovy": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).where(__.is(P.gt(1.0)))", "java": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).where(__.is(P.gt(1.0)))", @@ -4216,6 +4479,7 @@ "canonical": "g.addV(\"data\").property(\"float\", 3.0)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"float\", 3.0)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"float\", 3.0)", "go": "g.AddV(\"data\").Property(\"float\", 3.0)", "groovy": "g.addV(\"data\").property(\"float\", 3.0)", "java": "g.addV(\"data\").property(\"float\", 3.0)", @@ -4228,6 +4492,7 @@ "canonical": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).choose(__.is(P.eq(3.0)), __.constant(\"three\"), __.constant(\"other\"))", "anonymized": "g.V().values(string0).asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).choose(__.is(P.eq(number0)), __.constant(string1), __.constant(string2))", "dotnet": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Choose(__.Is(P.Eq(3.0)), __.Constant(\"three\"), __.Constant(\"other\"))", + "dotnet_parameterize": "g.V().Values(\"float\").AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).Choose(__.Is(P.Eq(3.0)), __.Constant(\"three\"), __.Constant(\"other\"))", "go": "g.V().Values(\"float\").AsNumber(gremlingo.GType.Float).Is(gremlingo.P.TypeOf(gremlingo.GType.Float)).Choose(gremlingo.T__.Is(gremlingo.P.Eq(3.0)), gremlingo.T__.Constant(\"three\"), gremlingo.T__.Constant(\"other\"))", "groovy": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).choose(__.is(P.eq(3.0)), __.constant(\"three\"), __.constant(\"other\"))", "java": "g.V().values(\"float\").asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).choose(__.is(P.eq(3.0)), __.constant(\"three\"), __.constant(\"other\"))", @@ -4245,6 +4510,7 @@ "canonical": "g.inject(2.0).asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).groupCount()", "anonymized": "g.inject(number0).asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).groupCount()", "dotnet": "g.Inject(2.0).AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).GroupCount()", + "dotnet_parameterize": "g.Inject(2.0).AsNumber(GType.Float).Is(P.TypeOf(GType.Float)).GroupCount()", "go": "g.Inject(2.0).AsNumber(gremlingo.GType.Float).Is(gremlingo.P.TypeOf(gremlingo.GType.Float)).GroupCount()", "groovy": "g.inject(2.0).asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).groupCount()", "java": "g.inject(2.0).asNumber(GType.FLOAT).is(P.typeOf(GType.FLOAT)).groupCount()", @@ -4262,6 +4528,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.FLOAT))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.FLOAT))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Float))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Float))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Float))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.FLOAT))", "java": "g.V().values(\"age\").is(P.typeOf(GType.FLOAT))", @@ -4279,6 +4546,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.INT))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.INT))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Int))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.INT))", "java": "g.V().values(\"age\").is(P.typeOf(GType.INT))", @@ -4296,6 +4564,7 @@ "canonical": "g.V().has(\"age\", P.typeOf(GType.INT)).values(\"name\")", "anonymized": "g.V().has(string0, P.typeOf(GType.INT)).values(string1)", "dotnet": "g.V().Has(\"age\", P.TypeOf(GType.Int)).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"age\", P.TypeOf(GType.Int)).Values(\"name\")", "go": "g.V().Has(\"age\", gremlingo.P.TypeOf(gremlingo.GType.Int)).Values(\"name\")", "groovy": "g.V().has(\"age\", P.typeOf(GType.INT)).values(\"name\")", "java": "g.V().has(\"age\", P.typeOf(GType.INT)).values(\"name\")", @@ -4313,6 +4582,7 @@ "canonical": "g.V().where(__.values(\"age\").is(P.typeOf(GType.INT))).values(\"name\")", "anonymized": "g.V().where(__.values(string0).is(P.typeOf(GType.INT))).values(string1)", "dotnet": "g.V().Where(__.Values(\"age\").Is(P.TypeOf(GType.Int))).Values(\"name\")", + "dotnet_parameterize": "g.V().Where(__.Values(\"age\").Is(P.TypeOf(GType.Int))).Values(\"name\")", "go": "g.V().Where(gremlingo.T__.Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Int))).Values(\"name\")", "groovy": "g.V().where(__.values(\"age\").is(P.typeOf(GType.INT))).values(\"name\")", "java": "g.V().where(__.values(\"age\").is(P.typeOf(GType.INT))).values(\"name\")", @@ -4330,6 +4600,7 @@ "canonical": "g.V().values(\"name\", \"age\").is(P.typeOf(GType.INT)).math(\"_ + 1\")", "anonymized": "g.V().values(string0, string1).is(P.typeOf(GType.INT)).math(string2)", "dotnet": "g.V().Values(\"name\", \"age\").Is(P.TypeOf(GType.Int)).Math(\"_ + 1\")", + "dotnet_parameterize": "g.V().Values(\"name\", \"age\").Is(P.TypeOf(GType.Int)).Math(\"_ + 1\")", "go": "g.V().Values(\"name\", \"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Int)).Math(\"_ + 1\")", "groovy": "g.V().values(\"name\", \"age\").is(P.typeOf(GType.INT)).math(\"_ + 1\")", "java": "g.V().values(\"name\", \"age\").is(P.typeOf(GType.INT)).math(\"_ + 1\")", @@ -4347,6 +4618,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.INT)).sum()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.INT)).sum()", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int)).Sum()", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int)).Sum()", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Int)).Sum()", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.INT)).sum()", "java": "g.V().values(\"age\").is(P.typeOf(GType.INT)).sum()", @@ -4364,6 +4636,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.INT)).min()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.INT)).min()", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int)).Min()", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int)).Min()", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Int)).Min()", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.INT)).min()", "java": "g.V().values(\"age\").is(P.typeOf(GType.INT)).min()", @@ -4381,6 +4654,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.INT)).max()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.INT)).max()", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int)).Max()", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int)).Max()", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Int)).Max()", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.INT)).max()", "java": "g.V().values(\"age\").is(P.typeOf(GType.INT)).max()", @@ -4398,6 +4672,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.INT)).mean()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.INT)).mean()", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int)).Mean()", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int)).Mean()", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Int)).Mean()", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.INT)).mean()", "java": "g.V().values(\"age\").is(P.typeOf(GType.INT)).mean()", @@ -4415,6 +4690,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.INT)).order().by(Order.desc)", "anonymized": "g.V().values(string0).is(P.typeOf(GType.INT)).order().by(Order.desc)", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int)).Order().By(Order.Desc)", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int)).Order().By(Order.Desc)", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Int)).Order().By(gremlingo.Order.Desc)", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.INT)).order().by(Order.desc)", "java": "g.V().values(\"age\").is(P.typeOf(GType.INT)).order().by(Order.desc)", @@ -4432,6 +4708,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.INT)).groupCount()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.INT)).groupCount()", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int)).GroupCount()", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Int)).GroupCount()", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Int)).GroupCount()", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.INT)).groupCount()", "java": "g.V().values(\"age\").is(P.typeOf(GType.INT)).groupCount()", @@ -4449,6 +4726,7 @@ "canonical": "g.V().values(\"name\").fold().is(P.typeOf(GType.LIST)).count()", "anonymized": "g.V().values(string0).fold().is(P.typeOf(GType.LIST)).count()", "dotnet": "g.V().Values(\"name\").Fold().Is(P.TypeOf(GType.List)).Count()", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Is(P.TypeOf(GType.List)).Count()", "go": "g.V().Values(\"name\").Fold().Is(gremlingo.P.TypeOf(gremlingo.GType.List)).Count()", "groovy": "g.V().values(\"name\").fold().is(P.typeOf(GType.LIST)).count()", "java": "g.V().values(\"name\").fold().is(P.typeOf(GType.LIST)).count()", @@ -4466,6 +4744,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.LIST))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.LIST))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.List))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.List))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.List))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.LIST))", "java": "g.V().values(\"age\").is(P.typeOf(GType.LIST))", @@ -4483,6 +4762,7 @@ "canonical": "g.addV(\"data\").property(\"list\", [\"a\", \"b\", \"c\"])", "anonymized": "g.addV(string0).property(string1, list0)", "dotnet": "g.AddV((string) \"data\").Property(\"list\", new List { \"a\", \"b\", \"c\" })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"list\", new List { \"a\", \"b\", \"c\" })", "go": "g.AddV(\"data\").Property(\"list\", []interface{}{\"a\", \"b\", \"c\"})", "groovy": "g.addV(\"data\").property(\"list\", [\"a\", \"b\", \"c\"])", "java": "g.addV(\"data\").property(\"list\", new ArrayList() {{ add(\"a\"); add(\"b\"); add(\"c\"); }})", @@ -4495,6 +4775,7 @@ "canonical": "g.V().values(\"list\").is(P.typeOf(GType.LIST))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.LIST))", "dotnet": "g.V().Values(\"list\").Is(P.TypeOf(GType.List))", + "dotnet_parameterize": "g.V().Values(\"list\").Is(P.TypeOf(GType.List))", "go": "g.V().Values(\"list\").Is(gremlingo.P.TypeOf(gremlingo.GType.List))", "groovy": "g.V().values(\"list\").is(P.typeOf(GType.LIST))", "java": "g.V().values(\"list\").is(P.typeOf(GType.LIST))", @@ -4512,6 +4793,7 @@ "canonical": "g.addV(\"data\").property(\"name\", \"test\").property(\"list\", [1, 2, 3])", "anonymized": "g.addV(string0).property(string1, string2).property(string3, list0)", "dotnet": "g.AddV((string) \"data\").Property(\"name\", \"test\").Property(\"list\", new List { 1, 2, 3 })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"name\", \"test\").Property(\"list\", new List { 1, 2, 3 })", "go": "g.AddV(\"data\").Property(\"name\", \"test\").Property(\"list\", []interface{}{1, 2, 3})", "groovy": "g.addV(\"data\").property(\"name\", \"test\").property(\"list\", [1, 2, 3])", "java": "g.addV(\"data\").property(\"name\", \"test\").property(\"list\", new ArrayList() {{ add(1); add(2); add(3); }})", @@ -4524,6 +4806,7 @@ "canonical": "g.V().has(\"list\", P.typeOf(GType.LIST)).values(\"name\")", "anonymized": "g.V().has(string0, P.typeOf(GType.LIST)).values(string1)", "dotnet": "g.V().Has(\"list\", P.TypeOf(GType.List)).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"list\", P.TypeOf(GType.List)).Values(\"name\")", "go": "g.V().Has(\"list\", gremlingo.P.TypeOf(gremlingo.GType.List)).Values(\"name\")", "groovy": "g.V().has(\"list\", P.typeOf(GType.LIST)).values(\"name\")", "java": "g.V().has(\"list\", P.typeOf(GType.LIST)).values(\"name\")", @@ -4541,6 +4824,7 @@ "canonical": "g.addV(\"data\").property(\"list\", [\"x\", \"y\", \"z\"])", "anonymized": "g.addV(string0).property(string1, list0)", "dotnet": "g.AddV((string) \"data\").Property(\"list\", new List { \"x\", \"y\", \"z\" })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"list\", new List { \"x\", \"y\", \"z\" })", "go": "g.AddV(\"data\").Property(\"list\", []interface{}{\"x\", \"y\", \"z\"})", "groovy": "g.addV(\"data\").property(\"list\", [\"x\", \"y\", \"z\"])", "java": "g.addV(\"data\").property(\"list\", new ArrayList() {{ add(\"x\"); add(\"y\"); add(\"z\"); }})", @@ -4553,6 +4837,7 @@ "canonical": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).unfold()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.LIST)).unfold()", "dotnet": "g.V().Values(\"list\").Is(P.TypeOf(GType.List)).Unfold()", + "dotnet_parameterize": "g.V().Values(\"list\").Is(P.TypeOf(GType.List)).Unfold()", "go": "g.V().Values(\"list\").Is(gremlingo.P.TypeOf(gremlingo.GType.List)).Unfold()", "groovy": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).unfold()", "java": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).unfold()", @@ -4570,6 +4855,7 @@ "canonical": "g.addV(\"data\").property(\"list\", [1, 2, 3, 4, 5])", "anonymized": "g.addV(string0).property(string1, list0)", "dotnet": "g.AddV((string) \"data\").Property(\"list\", new List { 1, 2, 3, 4, 5 })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"list\", new List { 1, 2, 3, 4, 5 })", "go": "g.AddV(\"data\").Property(\"list\", []interface{}{1, 2, 3, 4, 5})", "groovy": "g.addV(\"data\").property(\"list\", [1, 2, 3, 4, 5])", "java": "g.addV(\"data\").property(\"list\", new ArrayList() {{ add(1); add(2); add(3); add(4); add(5); }})", @@ -4582,6 +4868,7 @@ "canonical": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).count(Scope.local)", "anonymized": "g.V().values(string0).is(P.typeOf(GType.LIST)).count(Scope.local)", "dotnet": "g.V().Values(\"list\").Is(P.TypeOf(GType.List)).Count(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"list\").Is(P.TypeOf(GType.List)).Count(Scope.Local)", "go": "g.V().Values(\"list\").Is(gremlingo.P.TypeOf(gremlingo.GType.List)).Count(gremlingo.Scope.Local)", "groovy": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).count(Scope.local)", "java": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).count(Scope.local)", @@ -4599,6 +4886,7 @@ "canonical": "g.addV(\"data\").property(\"list\", [\"first\", \"second\", \"third\", \"fourth\"])", "anonymized": "g.addV(string0).property(string1, list0)", "dotnet": "g.AddV((string) \"data\").Property(\"list\", new List { \"first\", \"second\", \"third\", \"fourth\" })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"list\", new List { \"first\", \"second\", \"third\", \"fourth\" })", "go": "g.AddV(\"data\").Property(\"list\", []interface{}{\"first\", \"second\", \"third\", \"fourth\"})", "groovy": "g.addV(\"data\").property(\"list\", [\"first\", \"second\", \"third\", \"fourth\"])", "java": "g.addV(\"data\").property(\"list\", new ArrayList() {{ add(\"first\"); add(\"second\"); add(\"third\"); add(\"fourth\"); }})", @@ -4611,6 +4899,7 @@ "canonical": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).unfold().range(1, 3)", "anonymized": "g.V().values(string0).is(P.typeOf(GType.LIST)).unfold().range(number0, number1)", "dotnet": "g.V().Values(\"list\").Is(P.TypeOf(GType.List)).Unfold().Range(1, 3)", + "dotnet_parameterize": "g.V().Values(\"list\").Is(P.TypeOf(GType.List)).Unfold().Range(1, 3)", "go": "g.V().Values(\"list\").Is(gremlingo.P.TypeOf(gremlingo.GType.List)).Unfold().Range(1, 3)", "groovy": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).unfold().range(1, 3)", "java": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).unfold().range(1, 3)", @@ -4628,6 +4917,7 @@ "canonical": "g.addV(\"data\").property(\"list\", [\"apple\", \"banana\"])", "anonymized": "g.addV(string0).property(string1, list0)", "dotnet": "g.AddV((string) \"data\").Property(\"list\", new List { \"apple\", \"banana\" })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"list\", new List { \"apple\", \"banana\" })", "go": "g.AddV(\"data\").Property(\"list\", []interface{}{\"apple\", \"banana\"})", "groovy": "g.addV(\"data\").property(\"list\", [\"apple\", \"banana\"])", "java": "g.addV(\"data\").property(\"list\", new ArrayList() {{ add(\"apple\"); add(\"banana\"); }})", @@ -4640,6 +4930,7 @@ "canonical": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).project(\"original\", \"size\").by(__.identity()).by(__.count(Scope.local))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.LIST)).project(string1, string2).by(__.identity()).by(__.count(Scope.local))", "dotnet": "g.V().Values(\"list\").Is(P.TypeOf(GType.List)).Project(\"original\", \"size\").By(__.Identity()).By(__.Count(Scope.Local))", + "dotnet_parameterize": "g.V().Values(\"list\").Is(P.TypeOf(GType.List)).Project(\"original\", \"size\").By(__.Identity()).By(__.Count(Scope.Local))", "go": "g.V().Values(\"list\").Is(gremlingo.P.TypeOf(gremlingo.GType.List)).Project(\"original\", \"size\").By(gremlingo.T__.Identity()).By(gremlingo.T__.Count(gremlingo.Scope.Local))", "groovy": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).project(\"original\", \"size\").by(__.identity()).by(__.count(Scope.local))", "java": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).project(\"original\", \"size\").by(__.identity()).by(__.count(Scope.local))", @@ -4657,6 +4948,7 @@ "canonical": "g.addV(\"data\").property(\"list\", [1]).addV(\"data\").property(\"list\", [1, 2, 3])", "anonymized": "g.addV(string0).property(string1, list0).addV(string0).property(string1, list1)", "dotnet": "g.AddV((string) \"data\").Property(\"list\", new List { 1 }).AddV((string) \"data\").Property(\"list\", new List { 1, 2, 3 })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"list\", new List { 1 }).AddV((string) \"data\").Property(\"list\", new List { 1, 2, 3 })", "go": "g.AddV(\"data\").Property(\"list\", []interface{}{1}).AddV(\"data\").Property(\"list\", []interface{}{1, 2, 3})", "groovy": "g.addV(\"data\").property(\"list\", [1]).addV(\"data\").property(\"list\", [1, 2, 3])", "java": "g.addV(\"data\").property(\"list\", new ArrayList() {{ add(1); }}).addV(\"data\").property(\"list\", new ArrayList() {{ add(1); add(2); add(3); }})", @@ -4669,6 +4961,7 @@ "canonical": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).where(__.count(Scope.local).is(P.gt(2)))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.LIST)).where(__.count(Scope.local).is(P.gt(number0)))", "dotnet": "g.V().Values(\"list\").Is(P.TypeOf(GType.List)).Where(__.Count(Scope.Local).Is(P.Gt(2)))", + "dotnet_parameterize": "g.V().Values(\"list\").Is(P.TypeOf(GType.List)).Where(__.Count(Scope.Local).Is(P.Gt(2)))", "go": "g.V().Values(\"list\").Is(gremlingo.P.TypeOf(gremlingo.GType.List)).Where(gremlingo.T__.Count(gremlingo.Scope.Local).Is(gremlingo.P.Gt(2)))", "groovy": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).where(__.count(Scope.local).is(P.gt(2)))", "java": "g.V().values(\"list\").is(P.typeOf(GType.LIST)).where(__.count(Scope.local).is(P.gt(2)))", @@ -4686,6 +4979,7 @@ "canonical": "g.inject([\"test\"]).is(P.typeOf(GType.LIST)).groupCount()", "anonymized": "g.inject(list0).is(P.typeOf(GType.LIST)).groupCount()", "dotnet": "g.Inject(new List { \"test\" }).Is(P.TypeOf(GType.List)).GroupCount()", + "dotnet_parameterize": "g.Inject(new List { \"test\" }).Is(P.TypeOf(GType.List)).GroupCount()", "go": "g.Inject([]interface{}{\"test\"}).Is(gremlingo.P.TypeOf(gremlingo.GType.List)).GroupCount()", "groovy": "g.inject([\"test\"]).is(P.typeOf(GType.LIST)).groupCount()", "java": "g.inject(new ArrayList() {{ add(\"test\"); }}).is(P.typeOf(GType.LIST)).groupCount()", @@ -4703,6 +4997,7 @@ "canonical": "g.addV(\"data\").property(\"long\", 1l)", "anonymized": "g.addV(string0).property(string1, long0)", "dotnet": "g.AddV((string) \"data\").Property(\"long\", 1l)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"long\", 1l)", "go": "g.AddV(\"data\").Property(\"long\", int64(1))", "groovy": "g.addV(\"data\").property(\"long\", 1l)", "java": "g.addV(\"data\").property(\"long\", 1l)", @@ -4715,6 +5010,7 @@ "canonical": "g.V().values(\"long\").is(P.typeOf(GType.LONG))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.LONG))", "dotnet": "g.V().Values(\"long\").Is(P.TypeOf(GType.Long))", + "dotnet_parameterize": "g.V().Values(\"long\").Is(P.TypeOf(GType.Long))", "go": "g.V().Values(\"long\").Is(gremlingo.P.TypeOf(gremlingo.GType.Long))", "groovy": "g.V().values(\"long\").is(P.typeOf(GType.LONG))", "java": "g.V().values(\"long\").is(P.typeOf(GType.LONG))", @@ -4732,6 +5028,7 @@ "canonical": "g.addV(\"data\").property(\"name\", \"test\").property(\"long\", 1l)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, long0)", "dotnet": "g.AddV((string) \"data\").Property(\"name\", \"test\").Property(\"long\", 1l)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"name\", \"test\").Property(\"long\", 1l)", "go": "g.AddV(\"data\").Property(\"name\", \"test\").Property(\"long\", int64(1))", "groovy": "g.addV(\"data\").property(\"name\", \"test\").property(\"long\", 1l)", "java": "g.addV(\"data\").property(\"name\", \"test\").property(\"long\", 1l)", @@ -4744,6 +5041,7 @@ "canonical": "g.V().has(\"long\", P.typeOf(GType.LONG)).values(\"name\")", "anonymized": "g.V().has(string0, P.typeOf(GType.LONG)).values(string1)", "dotnet": "g.V().Has(\"long\", P.TypeOf(GType.Long)).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"long\", P.TypeOf(GType.Long)).Values(\"name\")", "go": "g.V().Has(\"long\", gremlingo.P.TypeOf(gremlingo.GType.Long)).Values(\"name\")", "groovy": "g.V().has(\"long\", P.typeOf(GType.LONG)).values(\"name\")", "java": "g.V().has(\"long\", P.typeOf(GType.LONG)).values(\"name\")", @@ -4761,6 +5059,7 @@ "canonical": "g.addV(\"data\").property(\"long\", 5l)", "anonymized": "g.addV(string0).property(string1, long0)", "dotnet": "g.AddV((string) \"data\").Property(\"long\", 5l)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"long\", 5l)", "go": "g.AddV(\"data\").Property(\"long\", int64(5))", "groovy": "g.addV(\"data\").property(\"long\", 5l)", "java": "g.addV(\"data\").property(\"long\", 5l)", @@ -4773,6 +5072,7 @@ "canonical": "g.V().values(\"long\").is(P.typeOf(GType.LONG)).math(\"_ * 2\")", "anonymized": "g.V().values(string0).is(P.typeOf(GType.LONG)).math(string1)", "dotnet": "g.V().Values(\"long\").Is(P.TypeOf(GType.Long)).Math(\"_ * 2\")", + "dotnet_parameterize": "g.V().Values(\"long\").Is(P.TypeOf(GType.Long)).Math(\"_ * 2\")", "go": "g.V().Values(\"long\").Is(gremlingo.P.TypeOf(gremlingo.GType.Long)).Math(\"_ * 2\")", "groovy": "g.V().values(\"long\").is(P.typeOf(GType.LONG)).math(\"_ * 2\")", "java": "g.V().values(\"long\").is(P.typeOf(GType.LONG)).math(\"_ * 2\")", @@ -4790,6 +5090,7 @@ "canonical": "g.addV(\"data\").property(\"long\", 10l)", "anonymized": "g.addV(string0).property(string1, long0)", "dotnet": "g.AddV((string) \"data\").Property(\"long\", 10l)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"long\", 10l)", "go": "g.AddV(\"data\").Property(\"long\", int64(10))", "groovy": "g.addV(\"data\").property(\"long\", 10l)", "java": "g.addV(\"data\").property(\"long\", 10l)", @@ -4802,6 +5103,7 @@ "canonical": "g.V().values(\"long\").is(P.typeOf(GType.LONG)).is(P.gt(5l))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.LONG)).is(P.gt(long0))", "dotnet": "g.V().Values(\"long\").Is(P.TypeOf(GType.Long)).Is(P.Gt(5l))", + "dotnet_parameterize": "g.V().Values(\"long\").Is(P.TypeOf(GType.Long)).Is(P.Gt(5l))", "go": "g.V().Values(\"long\").Is(gremlingo.P.TypeOf(gremlingo.GType.Long)).Is(gremlingo.P.Gt(int64(5)))", "groovy": "g.V().values(\"long\").is(P.typeOf(GType.LONG)).is(P.gt(5l))", "java": "g.V().values(\"long\").is(P.typeOf(GType.LONG)).is(P.gt(5l))", @@ -4819,6 +5121,7 @@ "canonical": "g.addV(\"data\").property(\"long\", 1l).addV(\"data\").property(\"long\", 2l).addV(\"data\").property(\"long\", 3l)", "anonymized": "g.addV(string0).property(string1, long0).addV(string0).property(string1, long1).addV(string0).property(string1, long2)", "dotnet": "g.AddV((string) \"data\").Property(\"long\", 1l).AddV((string) \"data\").Property(\"long\", 2l).AddV((string) \"data\").Property(\"long\", 3l)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"long\", 1l).AddV((string) \"data\").Property(\"long\", 2l).AddV((string) \"data\").Property(\"long\", 3l)", "go": "g.AddV(\"data\").Property(\"long\", int64(1)).AddV(\"data\").Property(\"long\", int64(2)).AddV(\"data\").Property(\"long\", int64(3))", "groovy": "g.addV(\"data\").property(\"long\", 1l).addV(\"data\").property(\"long\", 2l).addV(\"data\").property(\"long\", 3l)", "java": "g.addV(\"data\").property(\"long\", 1l).addV(\"data\").property(\"long\", 2l).addV(\"data\").property(\"long\", 3l)", @@ -4831,6 +5134,7 @@ "canonical": "g.V().values(\"long\").is(P.typeOf(GType.LONG)).sum()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.LONG)).sum()", "dotnet": "g.V().Values(\"long\").Is(P.TypeOf(GType.Long)).Sum()", + "dotnet_parameterize": "g.V().Values(\"long\").Is(P.TypeOf(GType.Long)).Sum()", "go": "g.V().Values(\"long\").Is(gremlingo.P.TypeOf(gremlingo.GType.Long)).Sum()", "groovy": "g.V().values(\"long\").is(P.typeOf(GType.LONG)).sum()", "java": "g.V().values(\"long\").is(P.typeOf(GType.LONG)).sum()", @@ -4848,6 +5152,7 @@ "canonical": "g.addV(\"data\").property(\"long\", 100l)", "anonymized": "g.addV(string0).property(string1, long0)", "dotnet": "g.AddV((string) \"data\").Property(\"long\", 100l)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"long\", 100l)", "go": "g.AddV(\"data\").Property(\"long\", int64(100))", "groovy": "g.addV(\"data\").property(\"long\", 100l)", "java": "g.addV(\"data\").property(\"long\", 100l)", @@ -4860,6 +5165,7 @@ "canonical": "g.V().values(\"long\").is(P.typeOf(GType.LONG)).local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.V().values(string0).is(P.typeOf(GType.LONG)).local(__.aggregate(string1)).cap(string1)", "dotnet": "g.V().Values(\"long\").Is(P.TypeOf(GType.Long)).Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.V().Values(\"long\").Is(P.TypeOf(GType.Long)).Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.V().Values(\"long\").Is(gremlingo.P.TypeOf(gremlingo.GType.Long)).Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.V().values(\"long\").is(P.typeOf(GType.LONG)).local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.V().values(\"long\").is(P.typeOf(GType.LONG)).local(__.aggregate(\"a\")).cap(\"a\")", @@ -4877,6 +5183,7 @@ "canonical": "g.V().hasLabel(\"person\").valueMap().is(P.typeOf(GType.MAP)).count()", "anonymized": "g.V().hasLabel(string0).valueMap().is(P.typeOf(GType.MAP)).count()", "dotnet": "g.V().HasLabel(\"person\").ValueMap().Is(P.TypeOf(GType.Map)).Count()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").ValueMap().Is(P.TypeOf(GType.Map)).Count()", "go": "g.V().HasLabel(\"person\").ValueMap().Is(gremlingo.P.TypeOf(gremlingo.GType.Map)).Count()", "groovy": "g.V().hasLabel(\"person\").valueMap().is(P.typeOf(GType.MAP)).count()", "java": "g.V().hasLabel(\"person\").valueMap().is(P.typeOf(GType.MAP)).count()", @@ -4894,6 +5201,7 @@ "canonical": "g.V().groupCount().by(T.label).is(P.typeOf(GType.MAP))", "anonymized": "g.V().groupCount().by(T.label).is(P.typeOf(GType.MAP))", "dotnet": "g.V().GroupCount().By(T.Label).Is(P.TypeOf(GType.Map))", + "dotnet_parameterize": "g.V().GroupCount().By(T.Label).Is(P.TypeOf(GType.Map))", "go": "g.V().GroupCount().By(gremlingo.T.Label).Is(gremlingo.P.TypeOf(gremlingo.GType.Map))", "groovy": "g.V().groupCount().by(T.label).is(P.typeOf(GType.MAP))", "java": "g.V().groupCount().by(T.label).is(P.typeOf(GType.MAP))", @@ -4911,6 +5219,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.MAP))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.MAP))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Map))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Map))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Map))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.MAP))", "java": "g.V().values(\"age\").is(P.typeOf(GType.MAP))", @@ -4928,6 +5237,7 @@ "canonical": "g.addV(\"data\").property(\"map\", [\"key1\":\"1\", \"key2\":\"2\"])", "anonymized": "g.addV(string0).property(string1, map0)", "dotnet": "g.AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"key1\", \"1\" }, { \"key2\", \"2\" }})", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"key1\", \"1\" }, { \"key2\", \"2\" }})", "go": "g.AddV(\"data\").Property(\"map\", map[interface{}]interface{}{\"key1\": \"1\", \"key2\": \"2\" })", "groovy": "g.addV(\"data\").property(\"map\", [\"key1\":\"1\", \"key2\":\"2\"])", "java": "g.addV(\"data\").property(\"map\", new LinkedHashMap() {{ put(\"key1\", \"1\"); put(\"key2\", \"2\"); }})", @@ -4940,6 +5250,7 @@ "canonical": "g.V().values(\"map\").is(P.typeOf(GType.MAP))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.MAP))", "dotnet": "g.V().Values(\"map\").Is(P.TypeOf(GType.Map))", + "dotnet_parameterize": "g.V().Values(\"map\").Is(P.TypeOf(GType.Map))", "go": "g.V().Values(\"map\").Is(gremlingo.P.TypeOf(gremlingo.GType.Map))", "groovy": "g.V().values(\"map\").is(P.typeOf(GType.MAP))", "java": "g.V().values(\"map\").is(P.typeOf(GType.MAP))", @@ -4957,6 +5268,7 @@ "canonical": "g.addV(\"data\").property(\"name\", \"test\").property(\"map\", [\"a\":1, \"b\":2])", "anonymized": "g.addV(string0).property(string1, string2).property(string3, map0)", "dotnet": "g.AddV((string) \"data\").Property(\"name\", \"test\").Property(\"map\", new Dictionary {{ \"a\", 1 }, { \"b\", 2 }})", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"name\", \"test\").Property(\"map\", new Dictionary {{ \"a\", 1 }, { \"b\", 2 }})", "go": "g.AddV(\"data\").Property(\"name\", \"test\").Property(\"map\", map[interface{}]interface{}{\"a\": 1, \"b\": 2 })", "groovy": "g.addV(\"data\").property(\"name\", \"test\").property(\"map\", [\"a\":1, \"b\":2])", "java": "g.addV(\"data\").property(\"name\", \"test\").property(\"map\", new LinkedHashMap() {{ put(\"a\", 1); put(\"b\", 2); }})", @@ -4969,6 +5281,7 @@ "canonical": "g.V().has(\"map\", P.typeOf(GType.MAP)).values(\"name\")", "anonymized": "g.V().has(string0, P.typeOf(GType.MAP)).values(string1)", "dotnet": "g.V().Has(\"map\", P.TypeOf(GType.Map)).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"map\", P.TypeOf(GType.Map)).Values(\"name\")", "go": "g.V().Has(\"map\", gremlingo.P.TypeOf(gremlingo.GType.Map)).Values(\"name\")", "groovy": "g.V().has(\"map\", P.typeOf(GType.MAP)).values(\"name\")", "java": "g.V().has(\"map\", P.typeOf(GType.MAP)).values(\"name\")", @@ -4986,6 +5299,7 @@ "canonical": "g.addV(\"data\").property(\"map\", [\"a\":1, \"b\":2, \"c\":3])", "anonymized": "g.addV(string0).property(string1, map0)", "dotnet": "g.AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"a\", 1 }, { \"b\", 2 }, { \"c\", 3 }})", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"a\", 1 }, { \"b\", 2 }, { \"c\", 3 }})", "go": "g.AddV(\"data\").Property(\"map\", map[interface{}]interface{}{\"a\": 1, \"b\": 2, \"c\": 3 })", "groovy": "g.addV(\"data\").property(\"map\", [\"a\":1, \"b\":2, \"c\":3])", "java": "g.addV(\"data\").property(\"map\", new LinkedHashMap() {{ put(\"a\", 1); put(\"b\", 2); put(\"c\", 3); }})", @@ -4998,6 +5312,7 @@ "canonical": "g.V().values(\"map\").is(P.typeOf(GType.MAP)).count(Scope.local)", "anonymized": "g.V().values(string0).is(P.typeOf(GType.MAP)).count(Scope.local)", "dotnet": "g.V().Values(\"map\").Is(P.TypeOf(GType.Map)).Count(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"map\").Is(P.TypeOf(GType.Map)).Count(Scope.Local)", "go": "g.V().Values(\"map\").Is(gremlingo.P.TypeOf(gremlingo.GType.Map)).Count(gremlingo.Scope.Local)", "groovy": "g.V().values(\"map\").is(P.typeOf(GType.MAP)).count(Scope.local)", "java": "g.V().values(\"map\").is(P.typeOf(GType.MAP)).count(Scope.local)", @@ -5015,6 +5330,7 @@ "canonical": "g.addV(\"data\").property(\"map\", [\"city\":\"NYC\", \"country\":\"USA\"])", "anonymized": "g.addV(string0).property(string1, map0)", "dotnet": "g.AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"city\", \"NYC\" }, { \"country\", \"USA\" }})", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"city\", \"NYC\" }, { \"country\", \"USA\" }})", "go": "g.AddV(\"data\").Property(\"map\", map[interface{}]interface{}{\"city\": \"NYC\", \"country\": \"USA\" })", "groovy": "g.addV(\"data\").property(\"map\", [\"city\":\"NYC\", \"country\":\"USA\"])", "java": "g.addV(\"data\").property(\"map\", new LinkedHashMap() {{ put(\"city\", \"NYC\"); put(\"country\", \"USA\"); }})", @@ -5027,6 +5343,7 @@ "canonical": "g.V().values(\"map\").is(P.typeOf(GType.MAP)).select(Column.values)", "anonymized": "g.V().values(string0).is(P.typeOf(GType.MAP)).select(Column.values)", "dotnet": "g.V().Values(\"map\").Is(P.TypeOf(GType.Map)).Select(Column.Values)", + "dotnet_parameterize": "g.V().Values(\"map\").Is(P.TypeOf(GType.Map)).Select(Column.Values)", "go": "g.V().Values(\"map\").Is(gremlingo.P.TypeOf(gremlingo.GType.Map)).Select(gremlingo.Column.Values)", "groovy": "g.V().values(\"map\").is(P.typeOf(GType.MAP)).select(Column.values)", "java": "g.V().values(\"map\").is(P.typeOf(GType.MAP)).select(Column.values)", @@ -5044,6 +5361,7 @@ "canonical": "g.addV(\"data\").property(\"map\", [\"single\":\"value\"]).addV(\"data\").property(\"map\", [\"key1\":\"1\", \"key2\":\"2\"])", "anonymized": "g.addV(string0).property(string1, map0).addV(string0).property(string1, map1)", "dotnet": "g.AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"single\", \"value\" }}).AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"key1\", \"1\" }, { \"key2\", \"2\" }})", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"single\", \"value\" }}).AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"key1\", \"1\" }, { \"key2\", \"2\" }})", "go": "g.AddV(\"data\").Property(\"map\", map[interface{}]interface{}{\"single\": \"value\" }).AddV(\"data\").Property(\"map\", map[interface{}]interface{}{\"key1\": \"1\", \"key2\": \"2\" })", "groovy": "g.addV(\"data\").property(\"map\", [\"single\":\"value\"]).addV(\"data\").property(\"map\", [\"key1\":\"1\", \"key2\":\"2\"])", "java": "g.addV(\"data\").property(\"map\", new LinkedHashMap() {{ put(\"single\", \"value\"); }}).addV(\"data\").property(\"map\", new LinkedHashMap() {{ put(\"key1\", \"1\"); put(\"key2\", \"2\"); }})", @@ -5056,6 +5374,7 @@ "canonical": "g.V().values(\"map\").is(P.typeOf(GType.MAP)).where(__.count(Scope.local).is(P.gt(1)))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.MAP)).where(__.count(Scope.local).is(P.gt(number0)))", "dotnet": "g.V().Values(\"map\").Is(P.TypeOf(GType.Map)).Where(__.Count(Scope.Local).Is(P.Gt(1)))", + "dotnet_parameterize": "g.V().Values(\"map\").Is(P.TypeOf(GType.Map)).Where(__.Count(Scope.Local).Is(P.Gt(1)))", "go": "g.V().Values(\"map\").Is(gremlingo.P.TypeOf(gremlingo.GType.Map)).Where(gremlingo.T__.Count(gremlingo.Scope.Local).Is(gremlingo.P.Gt(1)))", "groovy": "g.V().values(\"map\").is(P.typeOf(GType.MAP)).where(__.count(Scope.local).is(P.gt(1)))", "java": "g.V().values(\"map\").is(P.typeOf(GType.MAP)).where(__.count(Scope.local).is(P.gt(1)))", @@ -5073,6 +5392,7 @@ "canonical": "g.addV(\"data\").property(\"map\", [\"a\":1]).addV(\"data\").property(\"map\", [\"b\":2, \"c\":3])", "anonymized": "g.addV(string0).property(string1, map0).addV(string0).property(string1, map1)", "dotnet": "g.AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"a\", 1 }}).AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"b\", 2 }, { \"c\", 3 }})", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"a\", 1 }}).AddV((string) \"data\").Property(\"map\", new Dictionary {{ \"b\", 2 }, { \"c\", 3 }})", "go": "g.AddV(\"data\").Property(\"map\", map[interface{}]interface{}{\"a\": 1 }).AddV(\"data\").Property(\"map\", map[interface{}]interface{}{\"b\": 2, \"c\": 3 })", "groovy": "g.addV(\"data\").property(\"map\", [\"a\":1]).addV(\"data\").property(\"map\", [\"b\":2, \"c\":3])", "java": "g.addV(\"data\").property(\"map\", new LinkedHashMap() {{ put(\"a\", 1); }}).addV(\"data\").property(\"map\", new LinkedHashMap() {{ put(\"b\", 2); put(\"c\", 3); }})", @@ -5085,6 +5405,7 @@ "canonical": "g.V().values(\"map\").is(P.typeOf(GType.MAP)).fold()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.MAP)).fold()", "dotnet": "g.V().Values(\"map\").Is(P.TypeOf(GType.Map)).Fold()", + "dotnet_parameterize": "g.V().Values(\"map\").Is(P.TypeOf(GType.Map)).Fold()", "go": "g.V().Values(\"map\").Is(gremlingo.P.TypeOf(gremlingo.GType.Map)).Fold()", "groovy": "g.V().values(\"map\").is(P.typeOf(GType.MAP)).fold()", "java": "g.V().values(\"map\").is(P.typeOf(GType.MAP)).fold()", @@ -5102,6 +5423,7 @@ "canonical": "g.V().values(\"name\").aggregate(\"x\").cap(\"x\").is(P.typeOf(GType.SET))", "anonymized": "g.V().values(string0).aggregate(string1).cap(string1).is(P.typeOf(GType.SET))", "dotnet": "g.V().Values(\"name\").Aggregate(\"x\").Cap(\"x\").Is(P.TypeOf(GType.Set))", + "dotnet_parameterize": "g.V().Values(\"name\").Aggregate(\"x\").Cap(\"x\").Is(P.TypeOf(GType.Set))", "go": "g.V().Values(\"name\").Aggregate(\"x\").Cap(\"x\").Is(gremlingo.P.TypeOf(gremlingo.GType.Set))", "groovy": "g.V().values(\"name\").aggregate(\"x\").cap(\"x\").is(P.typeOf(GType.SET))", "java": "g.V().values(\"name\").aggregate(\"x\").cap(\"x\").is(P.typeOf(GType.SET))", @@ -5119,6 +5441,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.SET))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.SET))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Set))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Set))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Set))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.SET))", "java": "g.V().values(\"age\").is(P.typeOf(GType.SET))", @@ -5136,6 +5459,7 @@ "canonical": "g.V().valueMap().select(Column.keys).dedup().is(P.typeOf(GType.SET))", "anonymized": "g.V().valueMap().select(Column.keys).dedup().is(P.typeOf(GType.SET))", "dotnet": "g.V().ValueMap().Select(Column.Keys).Dedup().Is(P.TypeOf(GType.Set))", + "dotnet_parameterize": "g.V().ValueMap().Select(Column.Keys).Dedup().Is(P.TypeOf(GType.Set))", "go": "g.V().ValueMap().Select(gremlingo.Column.Keys).Dedup().Is(gremlingo.P.TypeOf(gremlingo.GType.Set))", "groovy": "g.V().valueMap().select(Column.keys).dedup().is(P.typeOf(GType.SET))", "java": "g.V().valueMap().select(Column.keys).dedup().is(P.typeOf(GType.SET))", @@ -5153,6 +5477,7 @@ "canonical": "g.addV(\"data\").property(\"set\", {\"a\", \"b\", \"c\"})", "anonymized": "g.addV(string0).property(string1, set0)", "dotnet": "g.AddV((string) \"data\").Property(\"set\", new HashSet { \"a\", \"b\", \"c\" })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"set\", new HashSet { \"a\", \"b\", \"c\" })", "go": "g.AddV(\"data\").Property(\"set\", gremlingo.NewSimpleSet(\"a\", \"b\", \"c\"))", "groovy": "g.addV(\"data\").property(\"set\", [\"a\", \"b\", \"c\"] as Set)", "java": "g.addV(\"data\").property(\"set\", new HashSet() {{ add(\"a\"); add(\"b\"); add(\"c\"); }})", @@ -5165,6 +5490,7 @@ "canonical": "g.V().values(\"set\").is(P.typeOf(GType.SET))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.SET))", "dotnet": "g.V().Values(\"set\").Is(P.TypeOf(GType.Set))", + "dotnet_parameterize": "g.V().Values(\"set\").Is(P.TypeOf(GType.Set))", "go": "g.V().Values(\"set\").Is(gremlingo.P.TypeOf(gremlingo.GType.Set))", "groovy": "g.V().values(\"set\").is(P.typeOf(GType.SET))", "java": "g.V().values(\"set\").is(P.typeOf(GType.SET))", @@ -5182,6 +5508,7 @@ "canonical": "g.addV(\"data\").property(\"name\", \"test\").property(\"set\", {1, 2, 3})", "anonymized": "g.addV(string0).property(string1, string2).property(string3, set0)", "dotnet": "g.AddV((string) \"data\").Property(\"name\", \"test\").Property(\"set\", new HashSet { 1, 2, 3 })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"name\", \"test\").Property(\"set\", new HashSet { 1, 2, 3 })", "go": "g.AddV(\"data\").Property(\"name\", \"test\").Property(\"set\", gremlingo.NewSimpleSet(1, 2, 3))", "groovy": "g.addV(\"data\").property(\"name\", \"test\").property(\"set\", [1, 2, 3] as Set)", "java": "g.addV(\"data\").property(\"name\", \"test\").property(\"set\", new HashSet() {{ add(1); add(2); add(3); }})", @@ -5194,6 +5521,7 @@ "canonical": "g.V().has(\"set\", P.typeOf(GType.SET)).values(\"name\")", "anonymized": "g.V().has(string0, P.typeOf(GType.SET)).values(string1)", "dotnet": "g.V().Has(\"set\", P.TypeOf(GType.Set)).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"set\", P.TypeOf(GType.Set)).Values(\"name\")", "go": "g.V().Has(\"set\", gremlingo.P.TypeOf(gremlingo.GType.Set)).Values(\"name\")", "groovy": "g.V().has(\"set\", P.typeOf(GType.SET)).values(\"name\")", "java": "g.V().has(\"set\", P.typeOf(GType.SET)).values(\"name\")", @@ -5211,6 +5539,7 @@ "canonical": "g.addV(\"data\").property(\"set\", {\"x\", \"y\", \"z\"})", "anonymized": "g.addV(string0).property(string1, set0)", "dotnet": "g.AddV((string) \"data\").Property(\"set\", new HashSet { \"x\", \"y\", \"z\" })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"set\", new HashSet { \"x\", \"y\", \"z\" })", "go": "g.AddV(\"data\").Property(\"set\", gremlingo.NewSimpleSet(\"x\", \"y\", \"z\"))", "groovy": "g.addV(\"data\").property(\"set\", [\"x\", \"y\", \"z\"] as Set)", "java": "g.addV(\"data\").property(\"set\", new HashSet() {{ add(\"x\"); add(\"y\"); add(\"z\"); }})", @@ -5223,6 +5552,7 @@ "canonical": "g.V().values(\"set\").is(P.typeOf(GType.SET)).unfold()", "anonymized": "g.V().values(string0).is(P.typeOf(GType.SET)).unfold()", "dotnet": "g.V().Values(\"set\").Is(P.TypeOf(GType.Set)).Unfold()", + "dotnet_parameterize": "g.V().Values(\"set\").Is(P.TypeOf(GType.Set)).Unfold()", "go": "g.V().Values(\"set\").Is(gremlingo.P.TypeOf(gremlingo.GType.Set)).Unfold()", "groovy": "g.V().values(\"set\").is(P.typeOf(GType.SET)).unfold()", "java": "g.V().values(\"set\").is(P.typeOf(GType.SET)).unfold()", @@ -5240,6 +5570,7 @@ "canonical": "g.addV(\"data\").property(\"set\", {1, 2, 3, 4, 5})", "anonymized": "g.addV(string0).property(string1, set0)", "dotnet": "g.AddV((string) \"data\").Property(\"set\", new HashSet { 1, 2, 3, 4, 5 })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"set\", new HashSet { 1, 2, 3, 4, 5 })", "go": "g.AddV(\"data\").Property(\"set\", gremlingo.NewSimpleSet(1, 2, 3, 4, 5))", "groovy": "g.addV(\"data\").property(\"set\", [1, 2, 3, 4, 5] as Set)", "java": "g.addV(\"data\").property(\"set\", new HashSet() {{ add(1); add(2); add(3); add(4); add(5); }})", @@ -5252,6 +5583,7 @@ "canonical": "g.V().values(\"set\").is(P.typeOf(GType.SET)).count(Scope.local)", "anonymized": "g.V().values(string0).is(P.typeOf(GType.SET)).count(Scope.local)", "dotnet": "g.V().Values(\"set\").Is(P.TypeOf(GType.Set)).Count(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"set\").Is(P.TypeOf(GType.Set)).Count(Scope.Local)", "go": "g.V().Values(\"set\").Is(gremlingo.P.TypeOf(gremlingo.GType.Set)).Count(gremlingo.Scope.Local)", "groovy": "g.V().values(\"set\").is(P.typeOf(GType.SET)).count(Scope.local)", "java": "g.V().values(\"set\").is(P.typeOf(GType.SET)).count(Scope.local)", @@ -5269,6 +5601,7 @@ "canonical": "g.addV(\"data\").property(\"set\", {1, 2}).addV(\"data\").property(\"set\", {1, 2, 3})", "anonymized": "g.addV(string0).property(string1, set0).addV(string0).property(string1, set1)", "dotnet": "g.AddV((string) \"data\").Property(\"set\", new HashSet { 1, 2 }).AddV((string) \"data\").Property(\"set\", new HashSet { 1, 2, 3 })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"set\", new HashSet { 1, 2 }).AddV((string) \"data\").Property(\"set\", new HashSet { 1, 2, 3 })", "go": "g.AddV(\"data\").Property(\"set\", gremlingo.NewSimpleSet(1, 2)).AddV(\"data\").Property(\"set\", gremlingo.NewSimpleSet(1, 2, 3))", "groovy": "g.addV(\"data\").property(\"set\", [1, 2] as Set).addV(\"data\").property(\"set\", [1, 2, 3] as Set)", "java": "g.addV(\"data\").property(\"set\", new HashSet() {{ add(1); add(2); }}).addV(\"data\").property(\"set\", new HashSet() {{ add(1); add(2); add(3); }})", @@ -5281,6 +5614,7 @@ "canonical": "g.V().values(\"set\").is(P.typeOf(GType.SET)).where(__.count(Scope.local).is(P.eq(3)))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.SET)).where(__.count(Scope.local).is(P.eq(number0)))", "dotnet": "g.V().Values(\"set\").Is(P.TypeOf(GType.Set)).Where(__.Count(Scope.Local).Is(P.Eq(3)))", + "dotnet_parameterize": "g.V().Values(\"set\").Is(P.TypeOf(GType.Set)).Where(__.Count(Scope.Local).Is(P.Eq(3)))", "go": "g.V().Values(\"set\").Is(gremlingo.P.TypeOf(gremlingo.GType.Set)).Where(gremlingo.T__.Count(gremlingo.Scope.Local).Is(gremlingo.P.Eq(3)))", "groovy": "g.V().values(\"set\").is(P.typeOf(GType.SET)).where(__.count(Scope.local).is(P.eq(3)))", "java": "g.V().values(\"set\").is(P.typeOf(GType.SET)).where(__.count(Scope.local).is(P.eq(3)))", @@ -5298,6 +5632,7 @@ "canonical": "g.addV(\"data\").property(\"set\", {\"first\", \"second\", \"third\", \"fourth\"})", "anonymized": "g.addV(string0).property(string1, set0)", "dotnet": "g.AddV((string) \"data\").Property(\"set\", new HashSet { \"first\", \"second\", \"third\", \"fourth\" })", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"set\", new HashSet { \"first\", \"second\", \"third\", \"fourth\" })", "go": "g.AddV(\"data\").Property(\"set\", gremlingo.NewSimpleSet(\"first\", \"second\", \"third\", \"fourth\"))", "groovy": "g.addV(\"data\").property(\"set\", [\"first\", \"second\", \"third\", \"fourth\"] as Set)", "java": "g.addV(\"data\").property(\"set\", new HashSet() {{ add(\"first\"); add(\"second\"); add(\"third\"); add(\"fourth\"); }})", @@ -5310,6 +5645,7 @@ "canonical": "g.V().values(\"set\").is(P.typeOf(GType.SET)).unfold().limit(2)", "anonymized": "g.V().values(string0).is(P.typeOf(GType.SET)).unfold().limit(number0)", "dotnet": "g.V().Values(\"set\").Is(P.TypeOf(GType.Set)).Unfold().Limit(2)", + "dotnet_parameterize": "g.V().Values(\"set\").Is(P.TypeOf(GType.Set)).Unfold().Limit(2)", "go": "g.V().Values(\"set\").Is(gremlingo.P.TypeOf(gremlingo.GType.Set)).Unfold().Limit(2)", "groovy": "g.V().values(\"set\").is(P.typeOf(GType.SET)).unfold().limit(2)", "java": "g.V().values(\"set\").is(P.typeOf(GType.SET)).unfold().limit(2)", @@ -5327,6 +5663,7 @@ "canonical": "g.inject({\"test\"}).is(P.typeOf(GType.SET)).groupCount()", "anonymized": "g.inject(set0).is(P.typeOf(GType.SET)).groupCount()", "dotnet": "g.Inject(new HashSet { \"test\" }).Is(P.TypeOf(GType.Set)).GroupCount()", + "dotnet_parameterize": "g.Inject(new HashSet { \"test\" }).Is(P.TypeOf(GType.Set)).GroupCount()", "go": "g.Inject(gremlingo.NewSimpleSet(\"test\")).Is(gremlingo.P.TypeOf(gremlingo.GType.Set)).GroupCount()", "groovy": "g.inject([\"test\"] as Set).is(P.typeOf(GType.SET)).groupCount()", "java": "g.inject(new HashSet() {{ add(\"test\"); }}).is(P.typeOf(GType.SET)).groupCount()", @@ -5344,6 +5681,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 100)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 100)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 100)", "go": "g.AddV(\"data\").Property(\"int\", 100)", "groovy": "g.addV(\"data\").property(\"int\", 100)", "java": "g.addV(\"data\").property(\"int\", 100)", @@ -5356,6 +5694,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT))", "anonymized": "g.V().values(string0).asNumber(GType.SHORT).is(P.typeOf(GType.SHORT))", "dotnet": "g.V().Values(\"int\").AsNumber(GType.Short).Is(P.TypeOf(GType.Short))", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.Short).Is(P.TypeOf(GType.Short))", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.Short).Is(gremlingo.P.TypeOf(gremlingo.GType.Short))", "groovy": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT))", "java": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT))", @@ -5373,6 +5712,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 50)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 50)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 50)", "go": "g.AddV(\"data\").Property(\"int\", 50)", "groovy": "g.addV(\"data\").property(\"int\", 50)", "java": "g.addV(\"data\").property(\"int\", 50)", @@ -5385,6 +5725,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).math(\"_ * 10\")", "anonymized": "g.V().values(string0).asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).math(string1)", "dotnet": "g.V().Values(\"int\").AsNumber(GType.Short).Is(P.TypeOf(GType.Short)).Math(\"_ * 10\")", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.Short).Is(P.TypeOf(GType.Short)).Math(\"_ * 10\")", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.Short).Is(gremlingo.P.TypeOf(gremlingo.GType.Short)).Math(\"_ * 10\")", "groovy": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).math(\"_ * 10\")", "java": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).math(\"_ * 10\")", @@ -5402,6 +5743,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 25)", "anonymized": "g.addV(string0).property(string1, number0)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 25)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 25)", "go": "g.AddV(\"data\").Property(\"int\", 25)", "groovy": "g.addV(\"data\").property(\"int\", 25)", "java": "g.addV(\"data\").property(\"int\", 25)", @@ -5414,6 +5756,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).is(P.between(20, 30))", "anonymized": "g.V().values(string0).asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).is(P.between(number0, number1))", "dotnet": "g.V().Values(\"int\").AsNumber(GType.Short).Is(P.TypeOf(GType.Short)).Is(P.Between(20, 30))", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.Short).Is(P.TypeOf(GType.Short)).Is(P.Between(20, 30))", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.Short).Is(gremlingo.P.TypeOf(gremlingo.GType.Short)).Is(gremlingo.P.Between(20, 30))", "groovy": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).is(P.between(20, 30))", "java": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).is(P.between(20, 30))", @@ -5431,6 +5774,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 10).addV(\"data\").property(\"int\", 20).addV(\"data\").property(\"int\", 30)", "anonymized": "g.addV(string0).property(string1, number0).addV(string0).property(string1, number1).addV(string0).property(string1, number2)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 10).AddV((string) \"data\").Property(\"int\", 20).AddV((string) \"data\").Property(\"int\", 30)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 10).AddV((string) \"data\").Property(\"int\", 20).AddV((string) \"data\").Property(\"int\", 30)", "go": "g.AddV(\"data\").Property(\"int\", 10).AddV(\"data\").Property(\"int\", 20).AddV(\"data\").Property(\"int\", 30)", "groovy": "g.addV(\"data\").property(\"int\", 10).addV(\"data\").property(\"int\", 20).addV(\"data\").property(\"int\", 30)", "java": "g.addV(\"data\").property(\"int\", 10).addV(\"data\").property(\"int\", 20).addV(\"data\").property(\"int\", 30)", @@ -5443,6 +5787,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).min()", "anonymized": "g.V().values(string0).asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).min()", "dotnet": "g.V().Values(\"int\").AsNumber(GType.Short).Is(P.TypeOf(GType.Short)).Min()", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.Short).Is(P.TypeOf(GType.Short)).Min()", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.Short).Is(gremlingo.P.TypeOf(gremlingo.GType.Short)).Min()", "groovy": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).min()", "java": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).min()", @@ -5460,6 +5805,7 @@ "canonical": "g.addV(\"data\").property(\"int\", 15).addV(\"data\").property(\"int\", 25).addV(\"data\").property(\"int\", 35)", "anonymized": "g.addV(string0).property(string1, number0).addV(string0).property(string1, number1).addV(string0).property(string1, number2)", "dotnet": "g.AddV((string) \"data\").Property(\"int\", 15).AddV((string) \"data\").Property(\"int\", 25).AddV((string) \"data\").Property(\"int\", 35)", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"int\", 15).AddV((string) \"data\").Property(\"int\", 25).AddV((string) \"data\").Property(\"int\", 35)", "go": "g.AddV(\"data\").Property(\"int\", 15).AddV(\"data\").Property(\"int\", 25).AddV(\"data\").Property(\"int\", 35)", "groovy": "g.addV(\"data\").property(\"int\", 15).addV(\"data\").property(\"int\", 25).addV(\"data\").property(\"int\", 35)", "java": "g.addV(\"data\").property(\"int\", 15).addV(\"data\").property(\"int\", 25).addV(\"data\").property(\"int\", 35)", @@ -5472,6 +5818,7 @@ "canonical": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).max()", "anonymized": "g.V().values(string0).asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).max()", "dotnet": "g.V().Values(\"int\").AsNumber(GType.Short).Is(P.TypeOf(GType.Short)).Max()", + "dotnet_parameterize": "g.V().Values(\"int\").AsNumber(GType.Short).Is(P.TypeOf(GType.Short)).Max()", "go": "g.V().Values(\"int\").AsNumber(gremlingo.GType.Short).Is(gremlingo.P.TypeOf(gremlingo.GType.Short)).Max()", "groovy": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).max()", "java": "g.V().values(\"int\").asNumber(GType.SHORT).is(P.typeOf(GType.SHORT)).max()", @@ -5489,6 +5836,7 @@ "canonical": "g.inject(42).asNumber(GType.SHORT).is(P.typeOf(GType.SHORT))", "anonymized": "g.inject(number0).asNumber(GType.SHORT).is(P.typeOf(GType.SHORT))", "dotnet": "g.Inject(42).AsNumber(GType.Short).Is(P.TypeOf(GType.Short))", + "dotnet_parameterize": "g.Inject(42).AsNumber(GType.Short).Is(P.TypeOf(GType.Short))", "go": "g.Inject(42).AsNumber(gremlingo.GType.Short).Is(gremlingo.P.TypeOf(gremlingo.GType.Short))", "groovy": "g.inject(42).asNumber(GType.SHORT).is(P.typeOf(GType.SHORT))", "java": "g.inject(42).asNumber(GType.SHORT).is(P.typeOf(GType.SHORT))", @@ -5506,6 +5854,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.SHORT))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.SHORT))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Short))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Short))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Short))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.SHORT))", "java": "g.V().values(\"age\").is(P.typeOf(GType.SHORT))", @@ -5523,6 +5872,7 @@ "canonical": "g.addV(\"data\").property(\"uuid\", UUID(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "anonymized": "g.addV(string0).property(string1, string2)", "dotnet": "g.AddV((string) \"data\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "go": "g.AddV(\"data\").Property(\"uuid\", uuid.MustParse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "groovy": "g.addV(\"data\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "java": "g.addV(\"data\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", @@ -5535,6 +5885,7 @@ "canonical": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.UUID))", "dotnet": "g.V().Values(\"uuid\").Is(P.TypeOf(GType.UUID))", + "dotnet_parameterize": "g.V().Values(\"uuid\").Is(P.TypeOf(GType.UUID))", "go": "g.V().Values(\"uuid\").Is(gremlingo.P.TypeOf(gremlingo.GType.UUID))", "groovy": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID))", "java": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID))", @@ -5552,6 +5903,7 @@ "canonical": "g.addV(\"data\").property(\"name\", \"test\").property(\"uuid\", UUID(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4)", "dotnet": "g.AddV((string) \"data\").Property(\"name\", \"test\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"name\", \"test\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "go": "g.AddV(\"data\").Property(\"name\", \"test\").Property(\"uuid\", uuid.MustParse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "groovy": "g.addV(\"data\").property(\"name\", \"test\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "java": "g.addV(\"data\").property(\"name\", \"test\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", @@ -5564,6 +5916,7 @@ "canonical": "g.V().has(\"uuid\", P.typeOf(GType.UUID)).values(\"name\")", "anonymized": "g.V().has(string0, P.typeOf(GType.UUID)).values(string1)", "dotnet": "g.V().Has(\"uuid\", P.TypeOf(GType.UUID)).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"uuid\", P.TypeOf(GType.UUID)).Values(\"name\")", "go": "g.V().Has(\"uuid\", gremlingo.P.TypeOf(gremlingo.GType.UUID)).Values(\"name\")", "groovy": "g.V().has(\"uuid\", P.typeOf(GType.UUID)).values(\"name\")", "java": "g.V().has(\"uuid\", P.typeOf(GType.UUID)).values(\"name\")", @@ -5581,6 +5934,7 @@ "canonical": "g.addV(\"data\").property(\"uuid\", UUID(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "anonymized": "g.addV(string0).property(string1, string2)", "dotnet": "g.AddV((string) \"data\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "go": "g.AddV(\"data\").Property(\"uuid\", uuid.MustParse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "groovy": "g.addV(\"data\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "java": "g.addV(\"data\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", @@ -5593,6 +5947,7 @@ "canonical": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).project(\"original\", \"type\").by(__.identity()).by(__.constant(\"uuid\"))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.UUID)).project(string1, string2).by(__.identity()).by(__.constant(string0))", "dotnet": "g.V().Values(\"uuid\").Is(P.TypeOf(GType.UUID)).Project(\"original\", \"type\").By(__.Identity()).By(__.Constant(\"uuid\"))", + "dotnet_parameterize": "g.V().Values(\"uuid\").Is(P.TypeOf(GType.UUID)).Project(\"original\", \"type\").By(__.Identity()).By(__.Constant(\"uuid\"))", "go": "g.V().Values(\"uuid\").Is(gremlingo.P.TypeOf(gremlingo.GType.UUID)).Project(\"original\", \"type\").By(gremlingo.T__.Identity()).By(gremlingo.T__.Constant(\"uuid\"))", "groovy": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).project(\"original\", \"type\").by(__.identity()).by(__.constant(\"uuid\"))", "java": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).project(\"original\", \"type\").by(__.identity()).by(__.constant(\"uuid\"))", @@ -5610,6 +5965,7 @@ "canonical": "g.addV(\"data\").property(\"uuid\", UUID(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "anonymized": "g.addV(string0).property(string1, string2)", "dotnet": "g.AddV((string) \"data\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "go": "g.AddV(\"data\").Property(\"uuid\", uuid.MustParse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "groovy": "g.addV(\"data\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "java": "g.addV(\"data\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", @@ -5622,6 +5978,7 @@ "canonical": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).where(__.is(P.eq(UUID(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.UUID)).where(__.is(P.eq(string1)))", "dotnet": "g.V().Values(\"uuid\").Is(P.TypeOf(GType.UUID)).Where(__.Is(P.Eq(Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))))", + "dotnet_parameterize": "g.V().Values(\"uuid\").Is(P.TypeOf(GType.UUID)).Where(__.Is(P.Eq(Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))))", "go": "g.V().Values(\"uuid\").Is(gremlingo.P.TypeOf(gremlingo.GType.UUID)).Where(gremlingo.T__.Is(gremlingo.P.Eq(uuid.MustParse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))))", "groovy": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).where(__.is(P.eq(UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))))", "java": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).where(__.is(P.eq(UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))))", @@ -5639,6 +5996,7 @@ "canonical": "g.addV(\"data\").property(\"uuid\", UUID(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "anonymized": "g.addV(string0).property(string1, string2)", "dotnet": "g.AddV((string) \"data\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "go": "g.AddV(\"data\").Property(\"uuid\", uuid.MustParse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "groovy": "g.addV(\"data\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "java": "g.addV(\"data\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", @@ -5651,6 +6009,7 @@ "canonical": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).choose(__.is(P.eq(UUID(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))), __.constant(\"match\"), __.constant(\"noMatch\"))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.UUID)).choose(__.is(P.eq(string1)), __.constant(string2), __.constant(string3))", "dotnet": "g.V().Values(\"uuid\").Is(P.TypeOf(GType.UUID)).Choose(__.Is(P.Eq(Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))), __.Constant(\"match\"), __.Constant(\"noMatch\"))", + "dotnet_parameterize": "g.V().Values(\"uuid\").Is(P.TypeOf(GType.UUID)).Choose(__.Is(P.Eq(Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))), __.Constant(\"match\"), __.Constant(\"noMatch\"))", "go": "g.V().Values(\"uuid\").Is(gremlingo.P.TypeOf(gremlingo.GType.UUID)).Choose(gremlingo.T__.Is(gremlingo.P.Eq(uuid.MustParse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))), gremlingo.T__.Constant(\"match\"), gremlingo.T__.Constant(\"noMatch\"))", "groovy": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).choose(__.is(P.eq(UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))), __.constant(\"match\"), __.constant(\"noMatch\"))", "java": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).choose(__.is(P.eq(UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))), __.constant(\"match\"), __.constant(\"noMatch\"))", @@ -5668,6 +6027,7 @@ "canonical": "g.addV(\"data\").property(\"uuid\", UUID(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "anonymized": "g.addV(string0).property(string1, string2)", "dotnet": "g.AddV((string) \"data\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "go": "g.AddV(\"data\").Property(\"uuid\", uuid.MustParse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "groovy": "g.addV(\"data\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "java": "g.addV(\"data\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", @@ -5680,6 +6040,7 @@ "canonical": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.V().values(string0).is(P.typeOf(GType.UUID)).local(__.aggregate(string1)).cap(string1)", "dotnet": "g.V().Values(\"uuid\").Is(P.TypeOf(GType.UUID)).Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.V().Values(\"uuid\").Is(P.TypeOf(GType.UUID)).Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.V().Values(\"uuid\").Is(gremlingo.P.TypeOf(gremlingo.GType.UUID)).Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).local(__.aggregate(\"a\")).cap(\"a\")", @@ -5697,6 +6058,7 @@ "canonical": "g.addV(\"data\").property(\"uuid\", UUID(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "anonymized": "g.addV(string0).property(string1, string2)", "dotnet": "g.AddV((string) \"data\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", + "dotnet_parameterize": "g.AddV((string) \"data\").Property(\"uuid\", Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "go": "g.AddV(\"data\").Property(\"uuid\", uuid.MustParse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "groovy": "g.addV(\"data\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "java": "g.addV(\"data\").property(\"uuid\", UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", @@ -5709,6 +6071,7 @@ "canonical": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).aggregate(\"a\").cap(\"a\")", "anonymized": "g.V().values(string0).is(P.typeOf(GType.UUID)).aggregate(string1).cap(string1)", "dotnet": "g.V().Values(\"uuid\").Is(P.TypeOf(GType.UUID)).Aggregate(\"a\").Cap(\"a\")", + "dotnet_parameterize": "g.V().Values(\"uuid\").Is(P.TypeOf(GType.UUID)).Aggregate(\"a\").Cap(\"a\")", "go": "g.V().Values(\"uuid\").Is(gremlingo.P.TypeOf(gremlingo.GType.UUID)).Aggregate(\"a\").Cap(\"a\")", "groovy": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).aggregate(\"a\").cap(\"a\")", "java": "g.V().values(\"uuid\").is(P.typeOf(GType.UUID)).aggregate(\"a\").cap(\"a\")", @@ -5726,6 +6089,7 @@ "canonical": "g.inject(UUID(\"f47af10b-58cc-4372-a567-0f02b2f3d479\")).is(P.typeOf(GType.UUID)).groupCount()", "anonymized": "g.inject(string0).is(P.typeOf(GType.UUID)).groupCount()", "dotnet": "g.Inject(Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\")).Is(P.TypeOf(GType.UUID)).GroupCount()", + "dotnet_parameterize": "g.Inject(Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\")).Is(P.TypeOf(GType.UUID)).GroupCount()", "go": "g.Inject(uuid.MustParse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\")).Is(gremlingo.P.TypeOf(gremlingo.GType.UUID)).GroupCount()", "groovy": "g.inject(UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\")).is(P.typeOf(GType.UUID)).groupCount()", "java": "g.inject(UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\")).is(P.typeOf(GType.UUID)).groupCount()", @@ -5743,6 +6107,7 @@ "canonical": "g.inject(UUID(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "anonymized": "g.inject(string0)", "dotnet": "g.Inject(Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", + "dotnet_parameterize": "g.Inject(Guid.Parse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "go": "g.Inject(uuid.MustParse(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "groovy": "g.inject(UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", "java": "g.inject(UUID.fromString(\"f47af10b-58cc-4372-a567-0f02b2f3d479\"))", @@ -5760,6 +6125,7 @@ "canonical": "g.inject(UUID())", "anonymized": "g.inject(string0)", "dotnet": "g.Inject(Guid.NewGuid())", + "dotnet_parameterize": "g.Inject(Guid.NewGuid())", "go": "g.Inject(uuid.New())", "groovy": "g.inject(UUID.randomUUID())", "java": "g.inject(UUID.randomUUID())", @@ -5777,6 +6143,7 @@ "canonical": "g.V().aggregate(\"x\").by(\"name\").by(\"age\").cap(\"x\")", "anonymized": "g.V().aggregate(string0).by(string1).by(string2).cap(string0)", "dotnet": "g.V().Aggregate(\"x\").By(\"name\").By(\"age\").Cap(\"x\")", + "dotnet_parameterize": "g.V().Aggregate(\"x\").By(\"name\").By(\"age\").Cap(\"x\")", "go": "g.V().Aggregate(\"x\").By(\"name\").By(\"age\").Cap(\"x\")", "groovy": "g.V().aggregate(\"x\").by(\"name\").by(\"age\").cap(\"x\")", "java": "g.V().aggregate(\"x\").by(\"name\").by(\"age\").cap(\"x\")", @@ -5794,6 +6161,7 @@ "canonical": "g.V().local(__.aggregate(\"x\").by(\"name\").by(\"age\")).cap(\"x\")", "anonymized": "g.V().local(__.aggregate(string0).by(string1).by(string2)).cap(string0)", "dotnet": "g.V().Local(__.Aggregate(\"x\").By(\"name\").By(\"age\")).Cap(\"x\")", + "dotnet_parameterize": "g.V().Local(__.Aggregate(\"x\").By(\"name\").By(\"age\")).Cap(\"x\")", "go": "g.V().Local(gremlingo.T__.Aggregate(\"x\").By(\"name\").By(\"age\")).Cap(\"x\")", "groovy": "g.V().local(__.aggregate(\"x\").by(\"name\").by(\"age\")).cap(\"x\")", "java": "g.V().local(__.aggregate(\"x\").by(\"name\").by(\"age\")).cap(\"x\")", @@ -5811,6 +6179,7 @@ "canonical": "g.V().values(\"age\").all(P.gt(32))", "anonymized": "g.V().values(string0).all(P.gt(number0))", "dotnet": "g.V().Values(\"age\").All(P.Gt(32))", + "dotnet_parameterize": "g.V().Values(\"age\").All(P.Gt(32))", "go": "g.V().Values(\"age\").All(gremlingo.P.Gt(32))", "groovy": "g.V().values(\"age\").all(P.gt(32))", "java": "g.V().values(\"age\").all(P.gt(32))", @@ -5828,6 +6197,7 @@ "canonical": "g.V().values(\"age\").where(__.is(P.gt(33))).fold().all(P.gt(33))", "anonymized": "g.V().values(string0).where(__.is(P.gt(number0))).fold().all(P.gt(number0))", "dotnet": "g.V().Values(\"age\").Where(__.Is(P.Gt(33))).Fold().All(P.Gt(33))", + "dotnet_parameterize": "g.V().Values(\"age\").Where(__.Is(P.Gt(33))).Fold().All(P.Gt(33))", "go": "g.V().Values(\"age\").Where(gremlingo.T__.Is(gremlingo.P.Gt(33))).Fold().All(gremlingo.P.Gt(33))", "groovy": "g.V().values(\"age\").where(__.is(P.gt(33))).fold().all(P.gt(33))", "java": "g.V().values(\"age\").where(__.is(P.gt(33))).fold().all(P.gt(33))", @@ -5845,6 +6215,7 @@ "canonical": "g.V().values(\"age\").order().by(Order.desc).fold().all(P.gt(10))", "anonymized": "g.V().values(string0).order().by(Order.desc).fold().all(P.gt(number0))", "dotnet": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().All(P.Gt(10))", + "dotnet_parameterize": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().All(P.Gt(10))", "go": "g.V().Values(\"age\").Order().By(gremlingo.Order.Desc).Fold().All(gremlingo.P.Gt(10))", "groovy": "g.V().values(\"age\").order().by(Order.desc).fold().all(P.gt(10))", "java": "g.V().values(\"age\").order().by(Order.desc).fold().all(P.gt(10))", @@ -5862,6 +6233,7 @@ "canonical": "g.V().values(\"age\").order().by(Order.desc).fold().all(P.gt(30))", "anonymized": "g.V().values(string0).order().by(Order.desc).fold().all(P.gt(number0))", "dotnet": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().All(P.Gt(30))", + "dotnet_parameterize": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().All(P.Gt(30))", "go": "g.V().Values(\"age\").Order().By(gremlingo.Order.Desc).Fold().All(gremlingo.P.Gt(30))", "groovy": "g.V().values(\"age\").order().by(Order.desc).fold().all(P.gt(30))", "java": "g.V().values(\"age\").order().by(Order.desc).fold().all(P.gt(30))", @@ -5879,6 +6251,7 @@ "canonical": "g.inject([\"abc\", \"bcd\"]).all(P.eq(\"bcd\"))", "anonymized": "g.inject(list0).all(P.eq(string0))", "dotnet": "g.Inject(new List { \"abc\", \"bcd\" }).All(P.Eq(\"bcd\"))", + "dotnet_parameterize": "g.Inject(new List { \"abc\", \"bcd\" }).All(P.Eq(\"bcd\"))", "go": "g.Inject([]interface{}{\"abc\", \"bcd\"}).All(gremlingo.P.Eq(\"bcd\"))", "groovy": "g.inject([\"abc\", \"bcd\"]).all(P.eq(\"bcd\"))", "java": "g.inject(new ArrayList() {{ add(\"abc\"); add(\"bcd\"); }}).all(P.eq(\"bcd\"))", @@ -5896,6 +6269,7 @@ "canonical": "g.inject([\"bcd\", \"bcd\"]).all(P.eq(\"bcd\"))", "anonymized": "g.inject(list0).all(P.eq(string0))", "dotnet": "g.Inject(new List { \"bcd\", \"bcd\" }).All(P.Eq(\"bcd\"))", + "dotnet_parameterize": "g.Inject(new List { \"bcd\", \"bcd\" }).All(P.Eq(\"bcd\"))", "go": "g.Inject([]interface{}{\"bcd\", \"bcd\"}).All(gremlingo.P.Eq(\"bcd\"))", "groovy": "g.inject([\"bcd\", \"bcd\"]).all(P.eq(\"bcd\"))", "java": "g.inject(new ArrayList() {{ add(\"bcd\"); add(\"bcd\"); }}).all(P.eq(\"bcd\"))", @@ -5913,6 +6287,7 @@ "canonical": "g.inject([null, \"abc\"]).all(TextP.startingWith(\"a\"))", "anonymized": "g.inject(list0).all(TextP.startingWith(string0))", "dotnet": "g.Inject(new List { null, \"abc\" }).All(TextP.StartingWith(\"a\"))", + "dotnet_parameterize": "g.Inject(new List { null, \"abc\" }).All(TextP.StartingWith(\"a\"))", "go": "g.Inject([]interface{}{nil, \"abc\"}).All(gremlingo.TextP.StartingWith(\"a\"))", "groovy": "g.inject([null, \"abc\"]).all(TextP.startingWith(\"a\"))", "java": "g.inject(new ArrayList() {{ add(null); add(\"abc\"); }}).all(TextP.startingWith(\"a\"))", @@ -5930,6 +6305,7 @@ "canonical": "g.inject([5, 8, 10], [10, 7]).all(P.gte(7))", "anonymized": "g.inject(list0, list1).all(P.gte(number0))", "dotnet": "g.Inject(new List { 5, 8, 10 }, new List { 10, 7 }).All(P.Gte(7))", + "dotnet_parameterize": "g.Inject(new List { 5, 8, 10 }, new List { 10, 7 }).All(P.Gte(7))", "go": "g.Inject([]interface{}{5, 8, 10}, []interface{}{10, 7}).All(gremlingo.P.Gte(7))", "groovy": "g.inject([5, 8, 10], [10, 7]).all(P.gte(7))", "java": "g.inject(new ArrayList() {{ add(5); add(8); add(10); }}, new ArrayList() {{ add(10); add(7); }}).all(P.gte(7))", @@ -5947,6 +6323,7 @@ "canonical": "g.inject(null).all(P.eq(null))", "anonymized": "g.inject(object0).all(P.eq(object0))", "dotnet": "g.Inject(null).All(P.Eq(null))", + "dotnet_parameterize": "g.Inject(null).All(P.Eq(null))", "go": "g.Inject(nil).All(gremlingo.P.Eq(nil))", "groovy": "g.inject(null).all(P.eq(null))", "java": "g.inject(null).all(P.eq(null))", @@ -5964,6 +6341,7 @@ "canonical": "g.inject(7).all(P.eq(7))", "anonymized": "g.inject(number0).all(P.eq(number0))", "dotnet": "g.Inject(7).All(P.Eq(7))", + "dotnet_parameterize": "g.Inject(7).All(P.Eq(7))", "go": "g.Inject(7).All(gremlingo.P.Eq(7))", "groovy": "g.inject(7).all(P.eq(7))", "java": "g.inject(7).all(P.eq(7))", @@ -5981,6 +6359,7 @@ "canonical": "g.inject([null, null]).all(P.eq(null))", "anonymized": "g.inject(list0).all(P.eq(object0))", "dotnet": "g.Inject(new List { null, null }).All(P.Eq(null))", + "dotnet_parameterize": "g.Inject(new List { null, null }).All(P.Eq(null))", "go": "g.Inject([]interface{}{nil, nil}).All(gremlingo.P.Eq(nil))", "groovy": "g.inject([null, null]).all(P.eq(null))", "java": "g.inject(new ArrayList() {{ add(null); add(null); }}).all(P.eq(null))", @@ -5998,6 +6377,7 @@ "canonical": "g.inject([3, \"three\"]).all(P.eq(3))", "anonymized": "g.inject(list0).all(P.eq(number0))", "dotnet": "g.Inject(new List { 3, \"three\" }).All(P.Eq(3))", + "dotnet_parameterize": "g.Inject(new List { 3, \"three\" }).All(P.Eq(3))", "go": "g.Inject([]interface{}{3, \"three\"}).All(gremlingo.P.Eq(3))", "groovy": "g.inject([3, \"three\"]).all(P.eq(3))", "java": "g.inject(new ArrayList() {{ add(3); add(\"three\"); }}).all(P.eq(3))", @@ -6015,6 +6395,7 @@ "canonical": "g.V().and(__.has(\"age\", P.gt(27)), __.outE().count().is(P.gte(2))).values(\"name\")", "anonymized": "g.V().and(__.has(string0, P.gt(number0)), __.outE().count().is(P.gte(number1))).values(string1)", "dotnet": "g.V().And(__.Has(\"age\", P.Gt(27)), __.OutE().Count().Is(P.Gte(2))).Values(\"name\")", + "dotnet_parameterize": "g.V().And(__.Has(\"age\", P.Gt(27)), __.OutE().Count().Is(P.Gte(2))).Values(\"name\")", "go": "g.V().And(gremlingo.T__.Has(\"age\", gremlingo.P.Gt(27)), gremlingo.T__.OutE().Count().Is(gremlingo.P.Gte(2))).Values(\"name\")", "groovy": "g.V().and(__.has(\"age\", P.gt(27)), __.outE().count().is(P.gte(2))).values(\"name\")", "java": "g.V().and(__.has(\"age\", P.gt(27)), __.outE().count().is(P.gte(2))).values(\"name\")", @@ -6032,6 +6413,7 @@ "canonical": "g.V().and(__.outE(), __.has(T.label, \"person\").and().has(\"age\", P.gte(32))).values(\"name\")", "anonymized": "g.V().and(__.outE(), __.has(T.label, string0).and().has(string1, P.gte(number0))).values(string2)", "dotnet": "g.V().And(__.OutE(), __.Has(T.Label, \"person\").And().Has(\"age\", P.Gte(32))).Values(\"name\")", + "dotnet_parameterize": "g.V().And(__.OutE(), __.Has(T.Label, \"person\").And().Has(\"age\", P.Gte(32))).Values(\"name\")", "go": "g.V().And(gremlingo.T__.OutE(), gremlingo.T__.Has(gremlingo.T.Label, \"person\").And().Has(\"age\", gremlingo.P.Gte(32))).Values(\"name\")", "groovy": "g.V().and(__.outE(), __.has(T.label, \"person\").and().has(\"age\", P.gte(32))).values(\"name\")", "java": "g.V().and(__.outE(), __.has(T.label, \"person\").and().has(\"age\", P.gte(32))).values(\"name\")", @@ -6049,6 +6431,7 @@ "canonical": "g.V().as(\"a\").out(\"knows\").and().out(\"created\").in(\"created\").as(\"a\").values(\"name\")", "anonymized": "g.V().as(string0).out(string1).and().out(string2).in(string2).as(string0).values(string3)", "dotnet": "g.V().As(\"a\").Out(\"knows\").And().Out(\"created\").In(\"created\").As(\"a\").Values(\"name\")", + "dotnet_parameterize": "g.V().As(\"a\").Out(\"knows\").And().Out(\"created\").In(\"created\").As(\"a\").Values(\"name\")", "go": "g.V().As(\"a\").Out(\"knows\").And().Out(\"created\").In(\"created\").As(\"a\").Values(\"name\")", "groovy": "g.V().as(\"a\").out(\"knows\").and().out(\"created\").in(\"created\").as(\"a\").values(\"name\")", "java": "g.V().as(\"a\").out(\"knows\").and().out(\"created\").in(\"created\").as(\"a\").values(\"name\")", @@ -6066,6 +6449,7 @@ "canonical": "g.V().as(\"a\").and(__.select(\"a\"), __.select(\"a\"))", "anonymized": "g.V().as(string0).and(__.select(string0), __.select(string0))", "dotnet": "g.V().As(\"a\").And(__.Select(\"a\"), __.Select(\"a\"))", + "dotnet_parameterize": "g.V().As(\"a\").And(__.Select(\"a\"), __.Select(\"a\"))", "go": "g.V().As(\"a\").And(gremlingo.T__.Select(\"a\"), gremlingo.T__.Select(\"a\"))", "groovy": "g.V().as(\"a\").and(__.select(\"a\"), __.select(\"a\"))", "java": "g.V().as(\"a\").and(__.select(\"a\"), __.select(\"a\"))", @@ -6083,6 +6467,7 @@ "canonical": "g.V().has(\"name\", \"marko\").and().has(\"name\", \"marko\").and().has(\"name\", \"marko\")", "anonymized": "g.V().has(string0, string1).and().has(string0, string1).and().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"marko\").And().Has(\"name\", \"marko\").And().Has(\"name\", \"marko\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").And().Has(\"name\", \"marko\").And().Has(\"name\", \"marko\")", "go": "g.V().Has(\"name\", \"marko\").And().Has(\"name\", \"marko\").And().Has(\"name\", \"marko\")", "groovy": "g.V().has(\"name\", \"marko\").and().has(\"name\", \"marko\").and().has(\"name\", \"marko\")", "java": "g.V().has(\"name\", \"marko\").and().has(\"name\", \"marko\").and().has(\"name\", \"marko\")", @@ -6100,6 +6485,7 @@ "canonical": "g.V().values(\"age\").any(P.gt(32))", "anonymized": "g.V().values(string0).any(P.gt(number0))", "dotnet": "g.V().Values(\"age\").Any(P.Gt(32))", + "dotnet_parameterize": "g.V().Values(\"age\").Any(P.Gt(32))", "go": "g.V().Values(\"age\").Any(gremlingo.P.Gt(32))", "groovy": "g.V().values(\"age\").any(P.gt(32))", "java": "g.V().values(\"age\").any(P.gt(32))", @@ -6117,6 +6503,7 @@ "canonical": "g.V().values(\"age\").order().by(Order.desc).fold().any(P.eq(29))", "anonymized": "g.V().values(string0).order().by(Order.desc).fold().any(P.eq(number0))", "dotnet": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().Any(P.Eq(29))", + "dotnet_parameterize": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().Any(P.Eq(29))", "go": "g.V().Values(\"age\").Order().By(gremlingo.Order.Desc).Fold().Any(gremlingo.P.Eq(29))", "groovy": "g.V().values(\"age\").order().by(Order.desc).fold().any(P.eq(29))", "java": "g.V().values(\"age\").order().by(Order.desc).fold().any(P.eq(29))", @@ -6134,6 +6521,7 @@ "canonical": "g.V().values(\"age\").order().by(Order.desc).fold().any(P.gt(10))", "anonymized": "g.V().values(string0).order().by(Order.desc).fold().any(P.gt(number0))", "dotnet": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().Any(P.Gt(10))", + "dotnet_parameterize": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().Any(P.Gt(10))", "go": "g.V().Values(\"age\").Order().By(gremlingo.Order.Desc).Fold().Any(gremlingo.P.Gt(10))", "groovy": "g.V().values(\"age\").order().by(Order.desc).fold().any(P.gt(10))", "java": "g.V().values(\"age\").order().by(Order.desc).fold().any(P.gt(10))", @@ -6151,6 +6539,7 @@ "canonical": "g.V().values(\"age\").order().by(Order.desc).fold().any(P.gt(42))", "anonymized": "g.V().values(string0).order().by(Order.desc).fold().any(P.gt(number0))", "dotnet": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().Any(P.Gt(42))", + "dotnet_parameterize": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().Any(P.Gt(42))", "go": "g.V().Values(\"age\").Order().By(gremlingo.Order.Desc).Fold().Any(gremlingo.P.Gt(42))", "groovy": "g.V().values(\"age\").order().by(Order.desc).fold().any(P.gt(42))", "java": "g.V().values(\"age\").order().by(Order.desc).fold().any(P.gt(42))", @@ -6168,6 +6557,7 @@ "canonical": "g.inject([\"abc\", \"cde\"]).any(P.eq(\"bcd\"))", "anonymized": "g.inject(list0).any(P.eq(string0))", "dotnet": "g.Inject(new List { \"abc\", \"cde\" }).Any(P.Eq(\"bcd\"))", + "dotnet_parameterize": "g.Inject(new List { \"abc\", \"cde\" }).Any(P.Eq(\"bcd\"))", "go": "g.Inject([]interface{}{\"abc\", \"cde\"}).Any(gremlingo.P.Eq(\"bcd\"))", "groovy": "g.inject([\"abc\", \"cde\"]).any(P.eq(\"bcd\"))", "java": "g.inject(new ArrayList() {{ add(\"abc\"); add(\"cde\"); }}).any(P.eq(\"bcd\"))", @@ -6185,6 +6575,7 @@ "canonical": "g.inject([\"abc\", \"bcd\"]).any(P.eq(\"bcd\"))", "anonymized": "g.inject(list0).any(P.eq(string0))", "dotnet": "g.Inject(new List { \"abc\", \"bcd\" }).Any(P.Eq(\"bcd\"))", + "dotnet_parameterize": "g.Inject(new List { \"abc\", \"bcd\" }).Any(P.Eq(\"bcd\"))", "go": "g.Inject([]interface{}{\"abc\", \"bcd\"}).Any(gremlingo.P.Eq(\"bcd\"))", "groovy": "g.inject([\"abc\", \"bcd\"]).any(P.eq(\"bcd\"))", "java": "g.inject(new ArrayList() {{ add(\"abc\"); add(\"bcd\"); }}).any(P.eq(\"bcd\"))", @@ -6202,6 +6593,7 @@ "canonical": "g.inject([null, \"abc\"]).any(TextP.startingWith(\"a\"))", "anonymized": "g.inject(list0).any(TextP.startingWith(string0))", "dotnet": "g.Inject(new List { null, \"abc\" }).Any(TextP.StartingWith(\"a\"))", + "dotnet_parameterize": "g.Inject(new List { null, \"abc\" }).Any(TextP.StartingWith(\"a\"))", "go": "g.Inject([]interface{}{nil, \"abc\"}).Any(gremlingo.TextP.StartingWith(\"a\"))", "groovy": "g.inject([null, \"abc\"]).any(TextP.startingWith(\"a\"))", "java": "g.inject(new ArrayList() {{ add(null); add(\"abc\"); }}).any(TextP.startingWith(\"a\"))", @@ -6219,6 +6611,7 @@ "canonical": "g.inject([5, 8, 10], [10, 7]).any(P.eq(7))", "anonymized": "g.inject(list0, list1).any(P.eq(number0))", "dotnet": "g.Inject(new List { 5, 8, 10 }, new List { 10, 7 }).Any(P.Eq(7))", + "dotnet_parameterize": "g.Inject(new List { 5, 8, 10 }, new List { 10, 7 }).Any(P.Eq(7))", "go": "g.Inject([]interface{}{5, 8, 10}, []interface{}{10, 7}).Any(gremlingo.P.Eq(7))", "groovy": "g.inject([5, 8, 10], [10, 7]).any(P.eq(7))", "java": "g.inject(new ArrayList() {{ add(5); add(8); add(10); }}, new ArrayList() {{ add(10); add(7); }}).any(P.eq(7))", @@ -6236,6 +6629,7 @@ "canonical": "g.inject(null).any(P.eq(null))", "anonymized": "g.inject(object0).any(P.eq(object0))", "dotnet": "g.Inject(null).Any(P.Eq(null))", + "dotnet_parameterize": "g.Inject(null).Any(P.Eq(null))", "go": "g.Inject(nil).Any(gremlingo.P.Eq(nil))", "groovy": "g.inject(null).any(P.eq(null))", "java": "g.inject(null).any(P.eq(null))", @@ -6253,6 +6647,7 @@ "canonical": "g.inject(7).any(P.eq(7))", "anonymized": "g.inject(number0).any(P.eq(number0))", "dotnet": "g.Inject(7).Any(P.Eq(7))", + "dotnet_parameterize": "g.Inject(7).Any(P.Eq(7))", "go": "g.Inject(7).Any(gremlingo.P.Eq(7))", "groovy": "g.inject(7).any(P.eq(7))", "java": "g.inject(7).any(P.eq(7))", @@ -6270,6 +6665,7 @@ "canonical": "g.inject([null, null]).any(P.eq(null))", "anonymized": "g.inject(list0).any(P.eq(object0))", "dotnet": "g.Inject(new List { null, null }).Any(P.Eq(null))", + "dotnet_parameterize": "g.Inject(new List { null, null }).Any(P.Eq(null))", "go": "g.Inject([]interface{}{nil, nil}).Any(gremlingo.P.Eq(nil))", "groovy": "g.inject([null, null]).any(P.eq(null))", "java": "g.inject(new ArrayList() {{ add(null); add(null); }}).any(P.eq(null))", @@ -6287,6 +6683,7 @@ "canonical": "g.inject([3, \"three\"]).any(P.eq(3))", "anonymized": "g.inject(list0).any(P.eq(number0))", "dotnet": "g.Inject(new List { 3, \"three\" }).Any(P.Eq(3))", + "dotnet_parameterize": "g.Inject(new List { 3, \"three\" }).Any(P.Eq(3))", "go": "g.Inject([]interface{}{3, \"three\"}).Any(gremlingo.P.Eq(3))", "groovy": "g.inject([3, \"three\"]).any(P.eq(3))", "java": "g.inject(new ArrayList() {{ add(3); add(\"three\"); }}).any(P.eq(3))", @@ -6304,6 +6701,7 @@ "canonical": "g.V().coin(1.0)", "anonymized": "g.V().coin(number0)", "dotnet": "g.V().Coin(1.0)", + "dotnet_parameterize": "g.V().Coin(1.0)", "go": "g.V().Coin(1.0)", "groovy": "g.V().coin(1.0)", "java": "g.V().coin(1.0)", @@ -6321,6 +6719,7 @@ "canonical": "g.V().coin(1)", "anonymized": "g.V().coin(number0)", "dotnet": "g.V().Coin(1)", + "dotnet_parameterize": "g.V().Coin(1)", "go": "g.V().Coin(1)", "groovy": "g.V().coin(1)", "java": "g.V().coin(1)", @@ -6338,6 +6737,7 @@ "canonical": "g.V().coin(0.0)", "anonymized": "g.V().coin(number0)", "dotnet": "g.V().Coin(0.0)", + "dotnet_parameterize": "g.V().Coin(0.0)", "go": "g.V().Coin(0.0)", "groovy": "g.V().coin(0.0)", "java": "g.V().coin(0.0)", @@ -6355,6 +6755,7 @@ "canonical": "g.withStrategies(new SeedStrategy(seed:999999)).V().order().by(\"name\").coin(0.5)", "anonymized": "g.withStrategies(new SeedStrategy(seed:number0)).V().order().by(string0).coin(number1)", "dotnet": "g.WithStrategies(new SeedStrategy(seed: 999999)).V().Order().By(\"name\").Coin(0.5)", + "dotnet_parameterize": "g.WithStrategies(new SeedStrategy(seed: 999999)).V().Order().By(\"name\").Coin(0.5)", "go": "g.WithStrategies(gremlingo.SeedStrategy(gremlingo.SeedStrategyConfig{Seed: 999999})).V().Order().By(\"name\").Coin(0.5)", "groovy": "g.withStrategies(new SeedStrategy(seed:999999)).V().order().by(\"name\").coin(0.5)", "java": "g.withStrategies(SeedStrategy.build().seed(999999).create()).V().order().by(\"name\").coin(0.5)", @@ -6372,6 +6773,7 @@ "canonical": "g.V(vid1).out(\"created\").in(\"created\").cyclicPath()", "anonymized": "g.V(vid1).out(string0).in(string0).cyclicPath()", "dotnet": "g.V(vid1).Out(\"created\").In(\"created\").CyclicPath()", + "dotnet_parameterize": "g.V(vid1).Out(\"created\").In(\"created\").CyclicPath()", "go": "g.V(vid1).Out(\"created\").In(\"created\").CyclicPath()", "groovy": "g.V(vid1).out(\"created\").in(\"created\").cyclicPath()", "java": "g.V(vid1).out(\"created\").in(\"created\").cyclicPath()", @@ -6389,6 +6791,7 @@ "canonical": "g.V(vid1).both().both().cyclicPath().by('age')", "anonymized": "g.V(vid1).both().both().cyclicPath().by(string0)", "dotnet": "g.V(vid1).Both().Both().CyclicPath().By(\"age\")", + "dotnet_parameterize": "g.V(vid1).Both().Both().CyclicPath().By(\"age\")", "go": "g.V(vid1).Both().Both().CyclicPath().By(\"age\")", "groovy": "g.V(vid1).both().both().cyclicPath().by('age')", "java": "g.V(vid1).both().both().cyclicPath().by(\"age\")", @@ -6406,6 +6809,7 @@ "canonical": "g.V(vid1).out(\"created\").in(\"created\").cyclicPath().path()", "anonymized": "g.V(vid1).out(string0).in(string0).cyclicPath().path()", "dotnet": "g.V(vid1).Out(\"created\").In(\"created\").CyclicPath().Path()", + "dotnet_parameterize": "g.V(vid1).Out(\"created\").In(\"created\").CyclicPath().Path()", "go": "g.V(vid1).Out(\"created\").In(\"created\").CyclicPath().Path()", "groovy": "g.V(vid1).out(\"created\").in(\"created\").cyclicPath().path()", "java": "g.V(vid1).out(\"created\").in(\"created\").cyclicPath().path()", @@ -6423,6 +6827,7 @@ "canonical": "g.V(vid1).as(\"a\").out(\"created\").as(\"b\").in(\"created\").as(\"c\").cyclicPath().from(\"a\").to(\"b\").path()", "anonymized": "g.V(vid1).as(string0).out(string1).as(string2).in(string1).as(string3).cyclicPath().from(string0).to(string2).path()", "dotnet": "g.V(vid1).As(\"a\").Out(\"created\").As(\"b\").In(\"created\").As(\"c\").CyclicPath().From(\"a\").To(\"b\").Path()", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Out(\"created\").As(\"b\").In(\"created\").As(\"c\").CyclicPath().From(\"a\").To(\"b\").Path()", "go": "g.V(vid1).As(\"a\").Out(\"created\").As(\"b\").In(\"created\").As(\"c\").CyclicPath().From(\"a\").To(\"b\").Path()", "groovy": "g.V(vid1).as(\"a\").out(\"created\").as(\"b\").in(\"created\").as(\"c\").cyclicPath().from(\"a\").to(\"b\").path()", "java": "g.V(vid1).as(\"a\").out(\"created\").as(\"b\").in(\"created\").as(\"c\").cyclicPath().from(\"a\").to(\"b\").path()", @@ -6440,6 +6845,7 @@ "canonical": "g.inject(0).V().both().coalesce(__.has('name', 'marko').both(), __.constant(0)).cyclicPath().path()", "anonymized": "g.inject(number0).V().both().coalesce(__.has(string0, string1).both(), __.constant(number0)).cyclicPath().path()", "dotnet": "g.Inject(0).V().Both().Coalesce(__.Has(\"name\", \"marko\").Both(), __.Constant(0)).CyclicPath().Path()", + "dotnet_parameterize": "g.Inject(0).V().Both().Coalesce(__.Has(\"name\", \"marko\").Both(), __.Constant(0)).CyclicPath().Path()", "go": "g.Inject(0).V().Both().Coalesce(gremlingo.T__.Has(\"name\", \"marko\").Both(), gremlingo.T__.Constant(0)).CyclicPath().Path()", "groovy": "g.inject(0).V().both().coalesce(__.has('name', 'marko').both(), __.constant(0)).cyclicPath().path()", "java": "g.inject(0).V().both().coalesce(__.has(\"name\", \"marko\").both(), __.constant(0)).cyclicPath().path()", @@ -6457,6 +6863,7 @@ "canonical": "g.V().out().in().values(\"name\").fold().dedup(Scope.local).unfold()", "anonymized": "g.V().out().in().values(string0).fold().dedup(Scope.local).unfold()", "dotnet": "g.V().Out().In().Values(\"name\").Fold().Dedup(Scope.Local).Unfold()", + "dotnet_parameterize": "g.V().Out().In().Values(\"name\").Fold().Dedup(Scope.Local).Unfold()", "go": "g.V().Out().In().Values(\"name\").Fold().Dedup(gremlingo.Scope.Local).Unfold()", "groovy": "g.V().out().in().values(\"name\").fold().dedup(Scope.local).unfold()", "java": "g.V().out().in().values(\"name\").fold().dedup(Scope.local).unfold()", @@ -6474,6 +6881,7 @@ "canonical": "g.V().out().map(__.in().values(\"name\").fold().dedup(Scope.local))", "anonymized": "g.V().out().map(__.in().values(string0).fold().dedup(Scope.local))", "dotnet": "g.V().Out().Map(__.In().Values(\"name\").Fold().Dedup(Scope.Local))", + "dotnet_parameterize": "g.V().Out().Map(__.In().Values(\"name\").Fold().Dedup(Scope.Local))", "go": "g.V().Out().Map(gremlingo.T__.In().Values(\"name\").Fold().Dedup(gremlingo.Scope.Local))", "groovy": "g.V().out().map(__.in().values(\"name\").fold().dedup(Scope.local))", "java": "g.V().out().map(__.in().values(\"name\").fold().dedup(Scope.local))", @@ -6491,6 +6899,7 @@ "canonical": "g.V().out().as(\"x\").in().as(\"y\").select(\"x\", \"y\").by(\"name\").fold().dedup(Scope.local, \"x\", \"y\").unfold()", "anonymized": "g.V().out().as(string0).in().as(string1).select(string0, string1).by(string2).fold().dedup(Scope.local, string0, string1).unfold()", "dotnet": "g.V().Out().As(\"x\").In().As(\"y\").Select(\"x\", \"y\").By(\"name\").Fold().Dedup(Scope.Local, \"x\", \"y\").Unfold()", + "dotnet_parameterize": "g.V().Out().As(\"x\").In().As(\"y\").Select(\"x\", \"y\").By(\"name\").Fold().Dedup(Scope.Local, \"x\", \"y\").Unfold()", "go": "g.V().Out().As(\"x\").In().As(\"y\").Select(\"x\", \"y\").By(\"name\").Fold().Dedup(gremlingo.Scope.Local, \"x\", \"y\").Unfold()", "groovy": "g.V().out().as(\"x\").in().as(\"y\").select(\"x\", \"y\").by(\"name\").fold().dedup(Scope.local, \"x\", \"y\").unfold()", "java": "g.V().out().as(\"x\").in().as(\"y\").select(\"x\", \"y\").by(\"name\").fold().dedup(Scope.local, \"x\", \"y\").unfold()", @@ -6508,6 +6917,7 @@ "canonical": "g.V().both().dedup().values(\"name\")", "anonymized": "g.V().both().dedup().values(string0)", "dotnet": "g.V().Both().Dedup().Values(\"name\")", + "dotnet_parameterize": "g.V().Both().Dedup().Values(\"name\")", "go": "g.V().Both().Dedup().Values(\"name\")", "groovy": "g.V().both().dedup().values(\"name\")", "java": "g.V().both().dedup().values(\"name\")", @@ -6525,6 +6935,7 @@ "canonical": "g.V().both().has(T.label, \"software\").dedup().by(\"lang\").values(\"name\")", "anonymized": "g.V().both().has(T.label, string0).dedup().by(string1).values(string2)", "dotnet": "g.V().Both().Has(T.Label, \"software\").Dedup().By(\"lang\").Values(\"name\")", + "dotnet_parameterize": "g.V().Both().Has(T.Label, \"software\").Dedup().By(\"lang\").Values(\"name\")", "go": "g.V().Both().Has(gremlingo.T.Label, \"software\").Dedup().By(\"lang\").Values(\"name\")", "groovy": "g.V().both().has(T.label, \"software\").dedup().by(\"lang\").values(\"name\")", "java": "g.V().both().has(T.label, \"software\").dedup().by(\"lang\").values(\"name\")", @@ -6542,6 +6953,7 @@ "canonical": "g.V().both().both().values(\"name\").dedup()", "anonymized": "g.V().both().both().values(string0).dedup()", "dotnet": "g.V().Both().Both().Values(\"name\").Dedup()", + "dotnet_parameterize": "g.V().Both().Both().Values(\"name\").Dedup()", "go": "g.V().Both().Both().Values(\"name\").Dedup()", "groovy": "g.V().both().both().values(\"name\").dedup()", "java": "g.V().both().both().values(\"name\").dedup()", @@ -6559,6 +6971,7 @@ "canonical": "g.V().both().both().dedup()", "anonymized": "g.V().both().both().dedup()", "dotnet": "g.V().Both().Both().Dedup()", + "dotnet_parameterize": "g.V().Both().Both().Dedup()", "go": "g.V().Both().Both().Dedup()", "groovy": "g.V().both().both().dedup()", "java": "g.V().both().both().dedup()", @@ -6576,6 +6989,7 @@ "canonical": "g.V().both().both().dedup().by(T.label)", "anonymized": "g.V().both().both().dedup().by(T.label)", "dotnet": "g.V().Both().Both().Dedup().By(T.Label)", + "dotnet_parameterize": "g.V().Both().Both().Dedup().By(T.Label)", "go": "g.V().Both().Both().Dedup().By(gremlingo.T.Label)", "groovy": "g.V().both().both().dedup().by(T.label)", "java": "g.V().both().both().dedup().by(T.label)", @@ -6593,6 +7007,7 @@ "canonical": "g.V().group().by(T.label).by(__.bothE().values(\"weight\").dedup().order().by(Order.asc).fold())", "anonymized": "g.V().group().by(T.label).by(__.bothE().values(string0).dedup().order().by(Order.asc).fold())", "dotnet": "g.V().Group().By(T.Label).By(__.BothE().Values(\"weight\").Dedup().Order().By(Order.Asc).Fold())", + "dotnet_parameterize": "g.V().Group().By(T.Label).By(__.BothE().Values(\"weight\").Dedup().Order().By(Order.Asc).Fold())", "go": "g.V().Group().By(gremlingo.T.Label).By(gremlingo.T__.BothE().Values(\"weight\").Dedup().Order().By(gremlingo.Order.Asc).Fold())", "groovy": "g.V().group().by(T.label).by(__.bothE().values(\"weight\").dedup().order().by(Order.asc).fold())", "java": "g.V().group().by(T.label).by(__.bothE().values(\"weight\").dedup().order().by(Order.asc).fold())", @@ -6610,6 +7025,7 @@ "canonical": "g.V().as(\"a\").both().as(\"b\").dedup(\"a\", \"b\").by(T.label).select(\"a\", \"b\")", "anonymized": "g.V().as(string0).both().as(string1).dedup(string0, string1).by(T.label).select(string0, string1)", "dotnet": "g.V().As(\"a\").Both().As(\"b\").Dedup(\"a\", \"b\").By(T.Label).Select(\"a\", \"b\")", + "dotnet_parameterize": "g.V().As(\"a\").Both().As(\"b\").Dedup(\"a\", \"b\").By(T.Label).Select(\"a\", \"b\")", "go": "g.V().As(\"a\").Both().As(\"b\").Dedup(\"a\", \"b\").By(gremlingo.T.Label).Select(\"a\", \"b\")", "groovy": "g.V().as(\"a\").both().as(\"b\").dedup(\"a\", \"b\").by(T.label).select(\"a\", \"b\")", "java": "g.V().as(\"a\").both().as(\"b\").dedup(\"a\", \"b\").by(T.label).select(\"a\", \"b\")", @@ -6627,6 +7043,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"name\", \"bob\").as(\"b\").addV(\"person\").property(\"name\", \"carol\").as(\"c\").addE(\"knows\").from(\"a\").to(\"b\").addE(\"likes\").from(\"a\").to(\"b\").addE(\"likes\").from(\"a\").to(\"c\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addV(string0).property(string1, string6).as(string7).addE(string8).from(string3).to(string5).addE(string9).from(string3).to(string5).addE(string9).from(string3).to(string7)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"bob\").As(\"b\").AddV((string) \"person\").Property(\"name\", \"carol\").As(\"c\").AddE((string) \"knows\").From(\"a\").To(\"b\").AddE((string) \"likes\").From(\"a\").To(\"b\").AddE((string) \"likes\").From(\"a\").To(\"c\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"bob\").As(\"b\").AddV((string) \"person\").Property(\"name\", \"carol\").As(\"c\").AddE((string) \"knows\").From(\"a\").To(\"b\").AddE((string) \"likes\").From(\"a\").To(\"b\").AddE((string) \"likes\").From(\"a\").To(\"c\")", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"name\", \"bob\").As(\"b\").AddV(\"person\").Property(\"name\", \"carol\").As(\"c\").AddE(\"knows\").From(\"a\").To(\"b\").AddE(\"likes\").From(\"a\").To(\"b\").AddE(\"likes\").From(\"a\").To(\"c\")", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"name\", \"bob\").as(\"b\").addV(\"person\").property(\"name\", \"carol\").as(\"c\").addE(\"knows\").from(\"a\").to(\"b\").addE(\"likes\").from(\"a\").to(\"b\").addE(\"likes\").from(\"a\").to(\"c\")", "java": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"name\", \"bob\").as(\"b\").addV(\"person\").property(\"name\", \"carol\").as(\"c\").addE(\"knows\").from(\"a\").to(\"b\").addE(\"likes\").from(\"a\").to(\"b\").addE(\"likes\").from(\"a\").to(\"c\")", @@ -6639,6 +7056,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").in().as(\"c\").dedup(\"a\", \"b\").path().by(\"name\")", "anonymized": "g.V().as(string0).out().as(string1).in().as(string2).dedup(string0, string1).path().by(string3)", "dotnet": "g.V().As(\"a\").Out().As(\"b\").In().As(\"c\").Dedup(\"a\", \"b\").Path().By(\"name\")", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").In().As(\"c\").Dedup(\"a\", \"b\").Path().By(\"name\")", "go": "g.V().As(\"a\").Out().As(\"b\").In().As(\"c\").Dedup(\"a\", \"b\").Path().By(\"name\")", "groovy": "g.V().as(\"a\").out().as(\"b\").in().as(\"c\").dedup(\"a\", \"b\").path().by(\"name\")", "java": "g.V().as(\"a\").out().as(\"b\").in().as(\"c\").dedup(\"a\", \"b\").path().by(\"name\")", @@ -6656,6 +7074,7 @@ "canonical": "g.V().outE().as(\"e\").inV().as(\"v\").select(\"e\").order().by(\"weight\", Order.asc).select(\"v\").values(\"name\").dedup()", "anonymized": "g.V().outE().as(string0).inV().as(string1).select(string0).order().by(string2, Order.asc).select(string1).values(string3).dedup()", "dotnet": "g.V().OutE().As(\"e\").InV().As(\"v\").Select(\"e\").Order().By(\"weight\", Order.Asc).Select(\"v\").Values(\"name\").Dedup()", + "dotnet_parameterize": "g.V().OutE().As(\"e\").InV().As(\"v\").Select(\"e\").Order().By(\"weight\", Order.Asc).Select(\"v\").Values(\"name\").Dedup()", "go": "g.V().OutE().As(\"e\").InV().As(\"v\").Select(\"e\").Order().By(\"weight\", gremlingo.Order.Asc).Select(\"v\").Values(\"name\").Dedup()", "groovy": "g.V().outE().as(\"e\").inV().as(\"v\").select(\"e\").order().by(\"weight\", Order.asc).select(\"v\").values(\"name\").dedup()", "java": "g.V().outE().as(\"e\").inV().as(\"v\").select(\"e\").order().by(\"weight\", Order.asc).select(\"v\").values(\"name\").dedup()", @@ -6673,6 +7092,7 @@ "canonical": "g.V().both().both().dedup().by(__.outE().count()).values(\"name\")", "anonymized": "g.V().both().both().dedup().by(__.outE().count()).values(string0)", "dotnet": "g.V().Both().Both().Dedup().By(__.OutE().Count()).Values(\"name\")", + "dotnet_parameterize": "g.V().Both().Both().Dedup().By(__.OutE().Count()).Values(\"name\")", "go": "g.V().Both().Both().Dedup().By(gremlingo.T__.OutE().Count()).Values(\"name\")", "groovy": "g.V().both().both().dedup().by(__.outE().count()).values(\"name\")", "java": "g.V().both().both().dedup().by(__.outE().count()).values(\"name\")", @@ -6690,6 +7110,7 @@ "canonical": "g.V().groupCount().select(Column.values).unfold().dedup()", "anonymized": "g.V().groupCount().select(Column.values).unfold().dedup()", "dotnet": "g.V().GroupCount().Select(Column.Values).Unfold().Dedup()", + "dotnet_parameterize": "g.V().GroupCount().Select(Column.Values).Unfold().Dedup()", "go": "g.V().GroupCount().Select(gremlingo.Column.Values).Unfold().Dedup()", "groovy": "g.V().groupCount().select(Column.values).unfold().dedup()", "java": "g.V().groupCount().select(Column.values).unfold().dedup()", @@ -6707,6 +7128,7 @@ "canonical": "g.V().as(\"a\").repeat(__.both()).times(3).emit().values(\"name\").as(\"b\").group().by(__.select(\"a\")).by(__.select(\"b\").dedup().order().fold()).select(Column.values).unfold().dedup()", "anonymized": "g.V().as(string0).repeat(__.both()).times(number0).emit().values(string1).as(string2).group().by(__.select(string0)).by(__.select(string2).dedup().order().fold()).select(Column.values).unfold().dedup()", "dotnet": "g.V().As(\"a\").Repeat(__.Both()).Times(3).Emit().Values(\"name\").As(\"b\").Group().By(__.Select(\"a\")).By(__.Select(\"b\").Dedup().Order().Fold()).Select(Column.Values).Unfold().Dedup()", + "dotnet_parameterize": "g.V().As(\"a\").Repeat(__.Both()).Times(3).Emit().Values(\"name\").As(\"b\").Group().By(__.Select(\"a\")).By(__.Select(\"b\").Dedup().Order().Fold()).Select(Column.Values).Unfold().Dedup()", "go": "g.V().As(\"a\").Repeat(gremlingo.T__.Both()).Times(3).Emit().Values(\"name\").As(\"b\").Group().By(gremlingo.T__.Select(\"a\")).By(gremlingo.T__.Select(\"b\").Dedup().Order().Fold()).Select(gremlingo.Column.Values).Unfold().Dedup()", "groovy": "g.V().as(\"a\").repeat(__.both()).times(3).emit().values(\"name\").as(\"b\").group().by(__.select(\"a\")).by(__.select(\"b\").dedup().order().fold()).select(Column.values).unfold().dedup()", "java": "g.V().as(\"a\").repeat(__.both()).times(3).emit().values(\"name\").as(\"b\").group().by(__.select(\"a\")).by(__.select(\"b\").dedup().order().fold()).select(Column.values).unfold().dedup()", @@ -6724,6 +7146,7 @@ "canonical": "g.V().repeat(__.dedup()).times(2).count()", "anonymized": "g.V().repeat(__.dedup()).times(number0).count()", "dotnet": "g.V().Repeat(__.Dedup()).Times(2).Count()", + "dotnet_parameterize": "g.V().Repeat(__.Dedup()).Times(2).Count()", "go": "g.V().Repeat(gremlingo.T__.Dedup()).Times(2).Count()", "groovy": "g.V().repeat(__.dedup()).times(2).count()", "java": "g.V().repeat(__.dedup()).times(2).count()", @@ -6741,6 +7164,7 @@ "canonical": "g.V().both().group().by().by(__.out().dedup().fold()).unfold().select(Column.values).unfold().out().order().by(\"name\").limit(1).values(\"name\")", "anonymized": "g.V().both().group().by().by(__.out().dedup().fold()).unfold().select(Column.values).unfold().out().order().by(string0).limit(number0).values(string0)", "dotnet": "g.V().Both().Group().By().By(__.Out().Dedup().Fold()).Unfold().Select(Column.Values).Unfold().Out().Order().By(\"name\").Limit(1).Values(\"name\")", + "dotnet_parameterize": "g.V().Both().Group().By().By(__.Out().Dedup().Fold()).Unfold().Select(Column.Values).Unfold().Out().Order().By(\"name\").Limit(1).Values(\"name\")", "go": "g.V().Both().Group().By().By(gremlingo.T__.Out().Dedup().Fold()).Unfold().Select(gremlingo.Column.Values).Unfold().Out().Order().By(\"name\").Limit(1).Values(\"name\")", "groovy": "g.V().both().group().by().by(__.out().dedup().fold()).unfold().select(Column.values).unfold().out().order().by(\"name\").limit(1).values(\"name\")", "java": "g.V().both().group().by().by(__.out().dedup().fold()).unfold().select(Column.values).unfold().out().order().by(\"name\").limit(1).values(\"name\")", @@ -6758,6 +7182,7 @@ "canonical": "g.V().bothE().properties().dedup().count()", "anonymized": "g.V().bothE().properties().dedup().count()", "dotnet": "g.V().BothE().Properties().Dedup().Count()", + "dotnet_parameterize": "g.V().BothE().Properties().Dedup().Count()", "go": "g.V().BothE().Properties().Dedup().Count()", "groovy": "g.V().bothE().properties().dedup().count()", "java": "g.V().bothE().properties().dedup().count()", @@ -6775,6 +7200,7 @@ "canonical": "g.V().both().properties().dedup().count()", "anonymized": "g.V().both().properties().dedup().count()", "dotnet": "g.V().Both().Properties().Dedup().Count()", + "dotnet_parameterize": "g.V().Both().Properties().Dedup().Count()", "go": "g.V().Both().Properties().Dedup().Count()", "groovy": "g.V().both().properties().dedup().count()", "java": "g.V().both().properties().dedup().count()", @@ -6792,6 +7218,7 @@ "canonical": "g.V().both().properties().properties().dedup().count()", "anonymized": "g.V().both().properties().properties().dedup().count()", "dotnet": "g.V().Both().Properties().Properties().Dedup().Count()", + "dotnet_parameterize": "g.V().Both().Properties().Properties().Dedup().Count()", "go": "g.V().Both().Properties().Properties().Dedup().Count()", "groovy": "g.V().both().properties().properties().dedup().count()", "java": "g.V().both().properties().properties().dedup().count()", @@ -6809,6 +7236,7 @@ "canonical": "g.V().order().by(\"name\", Order.desc).barrier().dedup().by(\"age\").values(\"name\")", "anonymized": "g.V().order().by(string0, Order.desc).barrier().dedup().by(string1).values(string0)", "dotnet": "g.V().Order().By(\"name\", Order.Desc).Barrier().Dedup().By(\"age\").Values(\"name\")", + "dotnet_parameterize": "g.V().Order().By(\"name\", Order.Desc).Barrier().Dedup().By(\"age\").Values(\"name\")", "go": "g.V().Order().By(\"name\", gremlingo.Order.Desc).Barrier().Dedup().By(\"age\").Values(\"name\")", "groovy": "g.V().order().by(\"name\", Order.desc).barrier().dedup().by(\"age\").values(\"name\")", "java": "g.V().order().by(\"name\", Order.desc).barrier().dedup().by(\"age\").values(\"name\")", @@ -6826,6 +7254,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().order().by(\"name\", Order.desc).barrier().dedup().by(\"age\").values(\"name\")", "anonymized": "g.withStrategies(ProductiveByStrategy).V().order().by(string0, Order.desc).barrier().dedup().by(string1).values(string0)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Order().By(\"name\", Order.Desc).Barrier().Dedup().By(\"age\").Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Order().By(\"name\", Order.Desc).Barrier().Dedup().By(\"age\").Values(\"name\")", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Order().By(\"name\", gremlingo.Order.Desc).Barrier().Dedup().By(\"age\").Values(\"name\")", "groovy": "g.withStrategies(ProductiveByStrategy).V().order().by(\"name\", Order.desc).barrier().dedup().by(\"age\").values(\"name\")", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().order().by(\"name\", Order.desc).barrier().dedup().by(\"age\").values(\"name\")", @@ -6843,6 +7272,7 @@ "canonical": "g.V().both().dedup().by(\"age\").values(\"name\")", "anonymized": "g.V().both().dedup().by(string0).values(string1)", "dotnet": "g.V().Both().Dedup().By(\"age\").Values(\"name\")", + "dotnet_parameterize": "g.V().Both().Dedup().By(\"age\").Values(\"name\")", "go": "g.V().Both().Dedup().By(\"age\").Values(\"name\")", "groovy": "g.V().both().dedup().by(\"age\").values(\"name\")", "java": "g.V().both().dedup().by(\"age\").values(\"name\")", @@ -6860,6 +7290,7 @@ "canonical": "g.V(vid1).as(\"a\").both().as(\"b\").both().as(\"c\").dedup(\"a\", \"b\").by(\"age\").select(\"a\", \"b\", \"c\").by(\"name\")", "anonymized": "g.V(vid1).as(string0).both().as(string1).both().as(string2).dedup(string0, string1).by(string3).select(string0, string1, string2).by(string4)", "dotnet": "g.V(vid1).As(\"a\").Both().As(\"b\").Both().As(\"c\").Dedup(\"a\", \"b\").By(\"age\").Select(\"a\", \"b\", \"c\").By(\"name\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Both().As(\"b\").Both().As(\"c\").Dedup(\"a\", \"b\").By(\"age\").Select(\"a\", \"b\", \"c\").By(\"name\")", "go": "g.V(vid1).As(\"a\").Both().As(\"b\").Both().As(\"c\").Dedup(\"a\", \"b\").By(\"age\").Select(\"a\", \"b\", \"c\").By(\"name\")", "groovy": "g.V(vid1).as(\"a\").both().as(\"b\").both().as(\"c\").dedup(\"a\", \"b\").by(\"age\").select(\"a\", \"b\", \"c\").by(\"name\")", "java": "g.V(vid1).as(\"a\").both().as(\"b\").both().as(\"c\").dedup(\"a\", \"b\").by(\"age\").select(\"a\", \"b\", \"c\").by(\"name\")", @@ -6877,6 +7308,7 @@ "canonical": "g.V(vid1).values(\"age\").dedup(Scope.local).unfold()", "anonymized": "g.V(vid1).values(string0).dedup(Scope.local).unfold()", "dotnet": "g.V(vid1).Values(\"age\").Dedup(Scope.Local).Unfold()", + "dotnet_parameterize": "g.V(vid1).Values(\"age\").Dedup(Scope.Local).Unfold()", "go": "g.V(vid1).Values(\"age\").Dedup(gremlingo.Scope.Local).Unfold()", "groovy": "g.V(vid1).values(\"age\").dedup(Scope.local).unfold()", "java": "g.V(vid1).values(\"age\").dedup(Scope.local).unfold()", @@ -6894,6 +7326,7 @@ "canonical": "g.addV('person').property('name', 'josh').addV('person').property('name', 'josh').addV('person').property('name', 'josh')", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string2).addV(string0).property(string1, string2)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"josh\").AddV((string) \"person\").Property(\"name\", \"josh\").AddV((string) \"person\").Property(\"name\", \"josh\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"josh\").AddV((string) \"person\").Property(\"name\", \"josh\").AddV((string) \"person\").Property(\"name\", \"josh\")", "go": "g.AddV(\"person\").Property(\"name\", \"josh\").AddV(\"person\").Property(\"name\", \"josh\").AddV(\"person\").Property(\"name\", \"josh\")", "groovy": "g.addV('person').property('name', 'josh').addV('person').property('name', 'josh').addV('person').property('name', 'josh')", "java": "g.addV(\"person\").property(\"name\", \"josh\").addV(\"person\").property(\"name\", \"josh\").addV(\"person\").property(\"name\", \"josh\")", @@ -6906,6 +7339,7 @@ "canonical": "g.V().properties(\"name\").dedup().count()", "anonymized": "g.V().properties(string0).dedup().count()", "dotnet": "g.V().Properties(\"name\").Dedup().Count()", + "dotnet_parameterize": "g.V().Properties(\"name\").Dedup().Count()", "go": "g.V().Properties(\"name\").Dedup().Count()", "groovy": "g.V().properties(\"name\").dedup().count()", "java": "g.V().properties(\"name\").dedup().count()", @@ -6923,6 +7357,7 @@ "canonical": "g.addV('person').property('name', 'josh').addV('person').property('name', 'josh').addV('person').property('name', 'josh')", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string2).addV(string0).property(string1, string2)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"josh\").AddV((string) \"person\").Property(\"name\", \"josh\").AddV((string) \"person\").Property(\"name\", \"josh\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"josh\").AddV((string) \"person\").Property(\"name\", \"josh\").AddV((string) \"person\").Property(\"name\", \"josh\")", "go": "g.AddV(\"person\").Property(\"name\", \"josh\").AddV(\"person\").Property(\"name\", \"josh\").AddV(\"person\").Property(\"name\", \"josh\")", "groovy": "g.addV('person').property('name', 'josh').addV('person').property('name', 'josh').addV('person').property('name', 'josh')", "java": "g.addV(\"person\").property(\"name\", \"josh\").addV(\"person\").property(\"name\", \"josh\").addV(\"person\").property(\"name\", \"josh\")", @@ -6935,6 +7370,7 @@ "canonical": "g.V().properties(\"name\").dedup().by(T.value).count()", "anonymized": "g.V().properties(string0).dedup().by(T.value).count()", "dotnet": "g.V().Properties(\"name\").Dedup().By(T.Value).Count()", + "dotnet_parameterize": "g.V().Properties(\"name\").Dedup().By(T.Value).Count()", "go": "g.V().Properties(\"name\").Dedup().By(gremlingo.T.Value).Count()", "groovy": "g.V().properties(\"name\").dedup().by(T.value).count()", "java": "g.V().properties(\"name\").dedup().by(T.value).count()", @@ -6952,6 +7388,7 @@ "canonical": "g.V().both().has(T.label, \"software\").dedup().by(\"lang\").by(\"name\").values(\"name\")", "anonymized": "g.V().both().has(T.label, string0).dedup().by(string1).by(string2).values(string2)", "dotnet": "g.V().Both().Has(T.Label, \"software\").Dedup().By(\"lang\").By(\"name\").Values(\"name\")", + "dotnet_parameterize": "g.V().Both().Has(T.Label, \"software\").Dedup().By(\"lang\").By(\"name\").Values(\"name\")", "go": "g.V().Both().Has(gremlingo.T.Label, \"software\").Dedup().By(\"lang\").By(\"name\").Values(\"name\")", "groovy": "g.V().both().has(T.label, \"software\").dedup().by(\"lang\").by(\"name\").values(\"name\")", "java": "g.V().both().has(T.label, \"software\").dedup().by(\"lang\").by(\"name\").values(\"name\")", @@ -6969,6 +7406,7 @@ "canonical": "g.V().count().discard()", "anonymized": "g.V().count().discard()", "dotnet": "g.V().Count().Discard()", + "dotnet_parameterize": "g.V().Count().Discard()", "go": "g.V().Count().Discard()", "groovy": "g.V().count().discard()", "java": "g.V().count().discard()", @@ -6986,6 +7424,7 @@ "canonical": "g.V().hasLabel(\"person\").discard()", "anonymized": "g.V().hasLabel(string0).discard()", "dotnet": "g.V().HasLabel(\"person\").Discard()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Discard()", "go": "g.V().HasLabel(\"person\").Discard()", "groovy": "g.V().hasLabel(\"person\").discard()", "java": "g.V().hasLabel(\"person\").discard()", @@ -7003,6 +7442,7 @@ "canonical": "g.V(vid1).out(\"created\").discard()", "anonymized": "g.V(vid1).out(string0).discard()", "dotnet": "g.V(vid1).Out(\"created\").Discard()", + "dotnet_parameterize": "g.V(vid1).Out(\"created\").Discard()", "go": "g.V(vid1).Out(\"created\").Discard()", "groovy": "g.V(vid1).out(\"created\").discard()", "java": "g.V(vid1).out(\"created\").discard()", @@ -7020,6 +7460,7 @@ "canonical": "g.V().discard()", "anonymized": "g.V().discard()", "dotnet": "g.V().Discard()", + "dotnet_parameterize": "g.V().Discard()", "go": "g.V().Discard()", "groovy": "g.V().discard()", "java": "g.V().discard()", @@ -7037,6 +7478,7 @@ "canonical": "g.V().discard().discard()", "anonymized": "g.V().discard().discard()", "dotnet": "g.V().Discard().Discard()", + "dotnet_parameterize": "g.V().Discard().Discard()", "go": "g.V().Discard().Discard()", "groovy": "g.V().discard().discard()", "java": "g.V().discard().discard()", @@ -7054,6 +7496,7 @@ "canonical": "g.V().discard().fold()", "anonymized": "g.V().discard().fold()", "dotnet": "g.V().Discard().Fold()", + "dotnet_parameterize": "g.V().Discard().Fold()", "go": "g.V().Discard().Fold()", "groovy": "g.V().discard().fold()", "java": "g.V().discard().fold()", @@ -7071,6 +7514,7 @@ "canonical": "g.V().discard().fold().discard()", "anonymized": "g.V().discard().fold().discard()", "dotnet": "g.V().Discard().Fold().Discard()", + "dotnet_parameterize": "g.V().Discard().Fold().Discard()", "go": "g.V().Discard().Fold().Discard()", "groovy": "g.V().discard().fold().discard()", "java": "g.V().discard().fold().discard()", @@ -7088,6 +7532,7 @@ "canonical": "g.V().discard().fold().constant(1)", "anonymized": "g.V().discard().fold().constant(number0)", "dotnet": "g.V().Discard().Fold().Constant(1)", + "dotnet_parameterize": "g.V().Discard().Fold().Constant(1)", "go": "g.V().Discard().Fold().Constant(1)", "groovy": "g.V().discard().fold().constant(1)", "java": "g.V().discard().fold().constant(1)", @@ -7105,6 +7550,7 @@ "canonical": "g.V().project(\"x\").by(__.coalesce(__.values(\"age\").is(P.gt(29)), __.discard())).select(\"x\")", "anonymized": "g.V().project(string0).by(__.coalesce(__.values(string1).is(P.gt(number0)), __.discard())).select(string0)", "dotnet": "g.V().Project(\"x\").By(__.Coalesce(__.Values(\"age\").Is(P.Gt(29)), __.Discard())).Select(\"x\")", + "dotnet_parameterize": "g.V().Project(\"x\").By(__.Coalesce(__.Values(\"age\").Is(P.Gt(29)), __.Discard())).Select(\"x\")", "go": "g.V().Project(\"x\").By(gremlingo.T__.Coalesce(gremlingo.T__.Values(\"age\").Is(gremlingo.P.Gt(29)), gremlingo.T__.Discard())).Select(\"x\")", "groovy": "g.V().project(\"x\").by(__.coalesce(__.values(\"age\").is(P.gt(29)), __.discard())).select(\"x\")", "java": "g.V().project(\"x\").by(__.coalesce(__.values(\"age\").is(P.gt(29)), __.discard())).select(\"x\")", @@ -7122,6 +7568,7 @@ "canonical": "g.addV().as(\"a\").addV().as(\"b\").addE(\"knows\").to(\"a\")", "anonymized": "g.addV().as(string0).addV().as(string1).addE(string2).to(string0)", "dotnet": "g.AddV().As(\"a\").AddV().As(\"b\").AddE((string) \"knows\").To(\"a\")", + "dotnet_parameterize": "g.AddV().As(\"a\").AddV().As(\"b\").AddE((string) \"knows\").To(\"a\")", "go": "g.AddV().As(\"a\").AddV().As(\"b\").AddE(\"knows\").To(\"a\")", "groovy": "g.addV().as(\"a\").addV().as(\"b\").addE(\"knows\").to(\"a\")", "java": "g.addV().as(\"a\").addV().as(\"b\").addE(\"knows\").to(\"a\")", @@ -7134,6 +7581,7 @@ "canonical": "g.V().drop()", "anonymized": "g.V().drop()", "dotnet": "g.V().Drop()", + "dotnet_parameterize": "g.V().Drop()", "go": "g.V().Drop()", "groovy": "g.V().drop()", "java": "g.V().drop()", @@ -7146,6 +7594,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -7158,6 +7607,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -7175,6 +7625,7 @@ "canonical": "g.addV().as(\"a\").addV().as(\"b\").addE(\"knows\").to(\"a\")", "anonymized": "g.addV().as(string0).addV().as(string1).addE(string2).to(string0)", "dotnet": "g.AddV().As(\"a\").AddV().As(\"b\").AddE((string) \"knows\").To(\"a\")", + "dotnet_parameterize": "g.AddV().As(\"a\").AddV().As(\"b\").AddE((string) \"knows\").To(\"a\")", "go": "g.AddV().As(\"a\").AddV().As(\"b\").AddE(\"knows\").To(\"a\")", "groovy": "g.addV().as(\"a\").addV().as(\"b\").addE(\"knows\").to(\"a\")", "java": "g.addV().as(\"a\").addV().as(\"b\").addE(\"knows\").to(\"a\")", @@ -7187,6 +7638,7 @@ "canonical": "g.V().outE().drop()", "anonymized": "g.V().outE().drop()", "dotnet": "g.V().OutE().Drop()", + "dotnet_parameterize": "g.V().OutE().Drop()", "go": "g.V().OutE().Drop()", "groovy": "g.V().outE().drop()", "java": "g.V().outE().drop()", @@ -7199,6 +7651,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -7211,6 +7664,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -7228,6 +7682,7 @@ "canonical": "g.addV().property(\"name\", \"bob\").addV().property(\"name\", \"alice\")", "anonymized": "g.addV().property(string0, string1).addV().property(string0, string2)", "dotnet": "g.AddV().Property(\"name\", \"bob\").AddV().Property(\"name\", \"alice\")", + "dotnet_parameterize": "g.AddV().Property(\"name\", \"bob\").AddV().Property(\"name\", \"alice\")", "go": "g.AddV().Property(\"name\", \"bob\").AddV().Property(\"name\", \"alice\")", "groovy": "g.addV().property(\"name\", \"bob\").addV().property(\"name\", \"alice\")", "java": "g.addV().property(\"name\", \"bob\").addV().property(\"name\", \"alice\")", @@ -7240,6 +7695,7 @@ "canonical": "g.V().properties().drop()", "anonymized": "g.V().properties().drop()", "dotnet": "g.V().Properties().Drop()", + "dotnet_parameterize": "g.V().Properties().Drop()", "go": "g.V().Properties().Drop()", "groovy": "g.V().properties().drop()", "java": "g.V().properties().drop()", @@ -7252,6 +7708,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -7264,6 +7721,7 @@ "canonical": "g.V().properties()", "anonymized": "g.V().properties()", "dotnet": "g.V().Properties()", + "dotnet_parameterize": "g.V().Properties()", "go": "g.V().Properties()", "groovy": "g.V().properties()", "java": "g.V().properties()", @@ -7281,6 +7739,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -7293,6 +7752,7 @@ "canonical": "g.E().properties(\"weight\").drop()", "anonymized": "g.E().properties(string0).drop()", "dotnet": "g.E().Properties(\"weight\").Drop()", + "dotnet_parameterize": "g.E().Properties(\"weight\").Drop()", "go": "g.E().Properties(\"weight\").Drop()", "groovy": "g.E().properties(\"weight\").drop()", "java": "g.E().properties(\"weight\").drop()", @@ -7305,6 +7765,7 @@ "canonical": "g.E().properties()", "anonymized": "g.E().properties()", "dotnet": "g.E().Properties()", + "dotnet_parameterize": "g.E().Properties()", "go": "g.E().Properties()", "groovy": "g.E().properties()", "java": "g.E().properties()", @@ -7322,6 +7783,7 @@ "canonical": "g.addV().property(\"name\", \"bob\").property(Cardinality.list, \"location\", \"ny\", \"startTime\", 2014, \"endTime\", 2016).property(Cardinality.list, \"location\", \"va\", \"startTime\", 2016).addV().property(\"name\", \"alice\").property(Cardinality.list, \"location\", \"va\", \"startTime\", 2014, \"endTime\", 2016).property(Cardinality.list, \"location\", \"ny\", \"startTime\", 2016)", "anonymized": "g.addV().property(string0, string1).property(Cardinality.list, string2, string3, string4, number0, string5, number1).property(Cardinality.list, string2, string6, string4, number1).addV().property(string0, string7).property(Cardinality.list, string2, string6, string4, number0, string5, number1).property(Cardinality.list, string2, string3, string4, number1)", "dotnet": "g.AddV().Property(\"name\", \"bob\").Property(Cardinality.List, \"location\", \"ny\", \"startTime\", 2014, \"endTime\", 2016).Property(Cardinality.List, \"location\", \"va\", \"startTime\", 2016).AddV().Property(\"name\", \"alice\").Property(Cardinality.List, \"location\", \"va\", \"startTime\", 2014, \"endTime\", 2016).Property(Cardinality.List, \"location\", \"ny\", \"startTime\", 2016)", + "dotnet_parameterize": "g.AddV().Property(\"name\", \"bob\").Property(Cardinality.List, \"location\", \"ny\", \"startTime\", 2014, \"endTime\", 2016).Property(Cardinality.List, \"location\", \"va\", \"startTime\", 2016).AddV().Property(\"name\", \"alice\").Property(Cardinality.List, \"location\", \"va\", \"startTime\", 2014, \"endTime\", 2016).Property(Cardinality.List, \"location\", \"ny\", \"startTime\", 2016)", "go": "g.AddV().Property(\"name\", \"bob\").Property(gremlingo.Cardinality.List, \"location\", \"ny\", \"startTime\", 2014, \"endTime\", 2016).Property(gremlingo.Cardinality.List, \"location\", \"va\", \"startTime\", 2016).AddV().Property(\"name\", \"alice\").Property(gremlingo.Cardinality.List, \"location\", \"va\", \"startTime\", 2014, \"endTime\", 2016).Property(gremlingo.Cardinality.List, \"location\", \"ny\", \"startTime\", 2016)", "groovy": "g.addV().property(\"name\", \"bob\").property(Cardinality.list, \"location\", \"ny\", \"startTime\", 2014, \"endTime\", 2016).property(Cardinality.list, \"location\", \"va\", \"startTime\", 2016).addV().property(\"name\", \"alice\").property(Cardinality.list, \"location\", \"va\", \"startTime\", 2014, \"endTime\", 2016).property(Cardinality.list, \"location\", \"ny\", \"startTime\", 2016)", "java": "g.addV().property(\"name\", \"bob\").property(Cardinality.list, \"location\", \"ny\", \"startTime\", 2014, \"endTime\", 2016).property(Cardinality.list, \"location\", \"va\", \"startTime\", 2016).addV().property(\"name\", \"alice\").property(Cardinality.list, \"location\", \"va\", \"startTime\", 2014, \"endTime\", 2016).property(Cardinality.list, \"location\", \"ny\", \"startTime\", 2016)", @@ -7334,6 +7796,7 @@ "canonical": "g.V().properties().properties(\"startTime\").drop()", "anonymized": "g.V().properties().properties(string0).drop()", "dotnet": "g.V().Properties().Properties(\"startTime\").Drop()", + "dotnet_parameterize": "g.V().Properties().Properties(\"startTime\").Drop()", "go": "g.V().Properties().Properties(\"startTime\").Drop()", "groovy": "g.V().properties().properties(\"startTime\").drop()", "java": "g.V().properties().properties(\"startTime\").drop()", @@ -7346,6 +7809,7 @@ "canonical": "g.V().properties().properties()", "anonymized": "g.V().properties().properties()", "dotnet": "g.V().Properties().Properties()", + "dotnet_parameterize": "g.V().Properties().Properties()", "go": "g.V().Properties().Properties()", "groovy": "g.V().properties().properties()", "java": "g.V().properties().properties()", @@ -7358,6 +7822,7 @@ "canonical": "g.V().properties().properties(\"startTime\")", "anonymized": "g.V().properties().properties(string0)", "dotnet": "g.V().Properties().Properties(\"startTime\")", + "dotnet_parameterize": "g.V().Properties().Properties(\"startTime\")", "go": "g.V().Properties().Properties(\"startTime\")", "groovy": "g.V().properties().properties(\"startTime\")", "java": "g.V().properties().properties(\"startTime\")", @@ -7375,6 +7840,7 @@ "canonical": "g.V().filter(__.is(0))", "anonymized": "g.V().filter(__.is(number0))", "dotnet": "g.V().Filter(__.Is(0))", + "dotnet_parameterize": "g.V().Filter(__.Is(0))", "go": "g.V().Filter(gremlingo.T__.Is(0))", "groovy": "g.V().filter(__.is(0))", "java": "g.V().filter(__.is(0))", @@ -7392,6 +7858,7 @@ "canonical": "g.V().filter(__.constant(0))", "anonymized": "g.V().filter(__.constant(number0))", "dotnet": "g.V().Filter(__.Constant(0))", + "dotnet_parameterize": "g.V().Filter(__.Constant(0))", "go": "g.V().Filter(gremlingo.T__.Constant(0))", "groovy": "g.V().filter(__.constant(0))", "java": "g.V().filter(__.constant(0))", @@ -7409,6 +7876,7 @@ "canonical": "g.V().filter(__.has(\"lang\", \"java\"))", "anonymized": "g.V().filter(__.has(string0, string1))", "dotnet": "g.V().Filter(__.Has(\"lang\", \"java\"))", + "dotnet_parameterize": "g.V().Filter(__.Has(\"lang\", \"java\"))", "go": "g.V().Filter(gremlingo.T__.Has(\"lang\", \"java\"))", "groovy": "g.V().filter(__.has(\"lang\", \"java\"))", "java": "g.V().filter(__.has(\"lang\", \"java\"))", @@ -7426,6 +7894,7 @@ "canonical": "g.V(vid1).filter(__.has(\"age\", P.gt(30)))", "anonymized": "g.V(vid1).filter(__.has(string0, P.gt(number0)))", "dotnet": "g.V(vid1).Filter(__.Has(\"age\", P.Gt(30)))", + "dotnet_parameterize": "g.V(vid1).Filter(__.Has(\"age\", P.Gt(30)))", "go": "g.V(vid1).Filter(gremlingo.T__.Has(\"age\", gremlingo.P.Gt(30)))", "groovy": "g.V(vid1).filter(__.has(\"age\", P.gt(30)))", "java": "g.V(vid1).filter(__.has(\"age\", P.gt(30)))", @@ -7443,6 +7912,7 @@ "canonical": "g.V(vid2).filter(__.has(\"age\", P.gt(30)))", "anonymized": "g.V(vid2).filter(__.has(string0, P.gt(number0)))", "dotnet": "g.V(vid2).Filter(__.Has(\"age\", P.Gt(30)))", + "dotnet_parameterize": "g.V(vid2).Filter(__.Has(\"age\", P.Gt(30)))", "go": "g.V(vid2).Filter(gremlingo.T__.Has(\"age\", gremlingo.P.Gt(30)))", "groovy": "g.V(vid2).filter(__.has(\"age\", P.gt(30)))", "java": "g.V(vid2).filter(__.has(\"age\", P.gt(30)))", @@ -7460,6 +7930,7 @@ "canonical": "g.V(vid1).out().filter(__.has(\"age\", P.gt(30)))", "anonymized": "g.V(vid1).out().filter(__.has(string0, P.gt(number0)))", "dotnet": "g.V(vid1).Out().Filter(__.Has(\"age\", P.Gt(30)))", + "dotnet_parameterize": "g.V(vid1).Out().Filter(__.Has(\"age\", P.Gt(30)))", "go": "g.V(vid1).Out().Filter(gremlingo.T__.Has(\"age\", gremlingo.P.Gt(30)))", "groovy": "g.V(vid1).out().filter(__.has(\"age\", P.gt(30)))", "java": "g.V(vid1).out().filter(__.has(\"age\", P.gt(30)))", @@ -7477,6 +7948,7 @@ "canonical": "g.V().filter(__.has(\"name\", TextP.startingWith(\"m\").or(TextP.startingWith(\"p\"))))", "anonymized": "g.V().filter(__.has(string0, TextP.startingWith(string1).or(TextP.startingWith(string2))))", "dotnet": "g.V().Filter(__.Has(\"name\", TextP.StartingWith(\"m\").Or(TextP.StartingWith(\"p\"))))", + "dotnet_parameterize": "g.V().Filter(__.Has(\"name\", TextP.StartingWith(\"m\").Or(TextP.StartingWith(\"p\"))))", "go": "g.V().Filter(gremlingo.T__.Has(\"name\", gremlingo.TextP.StartingWith(\"m\").Or(gremlingo.TextP.StartingWith(\"p\"))))", "groovy": "g.V().filter(__.has(\"name\", TextP.startingWith(\"m\").or(TextP.startingWith(\"p\"))))", "java": "g.V().filter(__.has(\"name\", TextP.startingWith(\"m\").or(TextP.startingWith(\"p\"))))", @@ -7494,6 +7966,7 @@ "canonical": "g.E().filter(__.is(0))", "anonymized": "g.E().filter(__.is(number0))", "dotnet": "g.E().Filter(__.Is(0))", + "dotnet_parameterize": "g.E().Filter(__.Is(0))", "go": "g.E().Filter(gremlingo.T__.Is(0))", "groovy": "g.E().filter(__.is(0))", "java": "g.E().filter(__.is(0))", @@ -7511,6 +7984,7 @@ "canonical": "g.E().filter(__.constant(0))", "anonymized": "g.E().filter(__.constant(number0))", "dotnet": "g.E().Filter(__.Constant(0))", + "dotnet_parameterize": "g.E().Filter(__.Constant(0))", "go": "g.E().Filter(gremlingo.T__.Constant(0))", "groovy": "g.E().filter(__.constant(0))", "java": "g.E().filter(__.constant(0))", @@ -7528,6 +8002,7 @@ "canonical": "g.V(vid1).has(\"name\")", "anonymized": "g.V(vid1).has(string0)", "dotnet": "g.V(vid1).Has(\"name\")", + "dotnet_parameterize": "g.V(vid1).Has(\"name\")", "go": "g.V(vid1).Has(\"name\")", "groovy": "g.V(vid1).has(\"name\")", "java": "g.V(vid1).has(\"name\")", @@ -7545,6 +8020,7 @@ "canonical": "g.V(vid1).has(\"circumference\")", "anonymized": "g.V(vid1).has(string0)", "dotnet": "g.V(vid1).Has(\"circumference\")", + "dotnet_parameterize": "g.V(vid1).Has(\"circumference\")", "go": "g.V(vid1).Has(\"circumference\")", "groovy": "g.V(vid1).has(\"circumference\")", "java": "g.V(vid1).has(\"circumference\")", @@ -7562,6 +8038,7 @@ "canonical": "g.V(vid1).has(\"name\", \"marko\")", "anonymized": "g.V(vid1).has(string0, string1)", "dotnet": "g.V(vid1).Has(\"name\", \"marko\")", + "dotnet_parameterize": "g.V(vid1).Has(\"name\", \"marko\")", "go": "g.V(vid1).Has(\"name\", \"marko\")", "groovy": "g.V(vid1).has(\"name\", \"marko\")", "java": "g.V(vid1).has(\"name\", \"marko\")", @@ -7579,6 +8056,7 @@ "canonical": "g.V(vid1).has(\"name\", xx1)", "anonymized": "g.V(vid1).has(string0, xx1)", "dotnet": "g.V(vid1).Has(\"name\", (object) xx1)", + "dotnet_parameterize": "g.V(vid1).Has(\"name\", new GValue(\"xx1\", (object) xx1))", "go": "g.V(vid1).Has(\"name\", xx1)", "groovy": "g.V(vid1).has(\"name\", xx1)", "java": "g.V(vid1).has(\"name\", xx1)", @@ -7596,6 +8074,7 @@ "canonical": "g.V(vid1).has(\"name\", \"marko\")", "anonymized": "g.V(vid1).has(string0, string1)", "dotnet": "g.V(vid1).Has(\"name\", \"marko\")", + "dotnet_parameterize": "g.V(vid1).Has(\"name\", \"marko\")", "go": "g.V(vid1).Has(\"name\", \"marko\")", "groovy": "g.V(vid1).has(\"name\", \"marko\")", "java": "g.V(vid1).has(\"name\", \"marko\")", @@ -7613,6 +8092,7 @@ "canonical": "g.V().has(\"name\", \"marko\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"marko\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\")", "go": "g.V().Has(\"name\", \"marko\")", "groovy": "g.V().has(\"name\", \"marko\")", "java": "g.V().has(\"name\", \"marko\")", @@ -7630,6 +8110,7 @@ "canonical": "g.V().has(\"name\", \"blah\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"blah\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"blah\")", "go": "g.V().Has(\"name\", \"blah\")", "groovy": "g.V().has(\"name\", \"blah\")", "java": "g.V().has(\"name\", \"blah\")", @@ -7647,6 +8128,7 @@ "canonical": "g.V().has(\"age\", P.gt(30))", "anonymized": "g.V().has(string0, P.gt(number0))", "dotnet": "g.V().Has(\"age\", P.Gt(30))", + "dotnet_parameterize": "g.V().Has(\"age\", P.Gt(30))", "go": "g.V().Has(\"age\", gremlingo.P.Gt(30))", "groovy": "g.V().has(\"age\", P.gt(30))", "java": "g.V().has(\"age\", P.gt(30))", @@ -7664,6 +8146,7 @@ "canonical": "g.V(vid1).has(\"age\", P.gt(30))", "anonymized": "g.V(vid1).has(string0, P.gt(number0))", "dotnet": "g.V(vid1).Has(\"age\", P.Gt(30))", + "dotnet_parameterize": "g.V(vid1).Has(\"age\", P.Gt(30))", "go": "g.V(vid1).Has(\"age\", gremlingo.P.Gt(30))", "groovy": "g.V(vid1).has(\"age\", P.gt(30))", "java": "g.V(vid1).has(\"age\", P.gt(30))", @@ -7681,6 +8164,7 @@ "canonical": "g.V().has(xx1, \"age\", P.gt(30))", "anonymized": "g.V().has(xx1, string0, P.gt(number0))", "dotnet": "g.V().Has((string) xx1, \"age\", P.Gt(30))", + "dotnet_parameterize": "g.V().Has(new GValue(\"xx1\", (string) xx1), \"age\", P.Gt(30))", "go": "g.V().Has(xx1, \"age\", gremlingo.P.Gt(30))", "groovy": "g.V().has(xx1, \"age\", P.gt(30))", "java": "g.V().has(xx1, \"age\", P.gt(30))", @@ -7698,6 +8182,7 @@ "canonical": "g.V(vid4).has(\"age\", P.gt(30))", "anonymized": "g.V(vid4).has(string0, P.gt(number0))", "dotnet": "g.V(vid4).Has(\"age\", P.Gt(30))", + "dotnet_parameterize": "g.V(vid4).Has(\"age\", P.Gt(30))", "go": "g.V(vid4).Has(\"age\", gremlingo.P.Gt(30))", "groovy": "g.V(vid4).has(\"age\", P.gt(30))", "java": "g.V(vid4).has(\"age\", P.gt(30))", @@ -7715,6 +8200,7 @@ "canonical": "g.V(vid1).has(\"age\", P.gt(30))", "anonymized": "g.V(vid1).has(string0, P.gt(number0))", "dotnet": "g.V(vid1).Has(\"age\", P.Gt(30))", + "dotnet_parameterize": "g.V(vid1).Has(\"age\", P.Gt(30))", "go": "g.V(vid1).Has(\"age\", gremlingo.P.Gt(30))", "groovy": "g.V(vid1).has(\"age\", P.gt(30))", "java": "g.V(vid1).has(\"age\", P.gt(30))", @@ -7732,6 +8218,7 @@ "canonical": "g.V(vid4).has(\"age\", P.gt(30))", "anonymized": "g.V(vid4).has(string0, P.gt(number0))", "dotnet": "g.V(vid4).Has(\"age\", P.Gt(30))", + "dotnet_parameterize": "g.V(vid4).Has(\"age\", P.Gt(30))", "go": "g.V(vid4).Has(\"age\", gremlingo.P.Gt(30))", "groovy": "g.V(vid4).has(\"age\", P.gt(30))", "java": "g.V(vid4).has(\"age\", P.gt(30))", @@ -7749,6 +8236,7 @@ "canonical": "g.V(vid2).has(\"age\", P.gt(30))", "anonymized": "g.V(vid2).has(string0, P.gt(number0))", "dotnet": "g.V(vid2).Has(\"age\", P.Gt(30))", + "dotnet_parameterize": "g.V(vid2).Has(\"age\", P.Gt(30))", "go": "g.V(vid2).Has(\"age\", gremlingo.P.Gt(30))", "groovy": "g.V(vid2).has(\"age\", P.gt(30))", "java": "g.V(vid2).has(\"age\", P.gt(30))", @@ -7766,6 +8254,7 @@ "canonical": "g.V().has(\"blah\")", "anonymized": "g.V().has(string0)", "dotnet": "g.V().Has(\"blah\")", + "dotnet_parameterize": "g.V().Has(\"blah\")", "go": "g.V().Has(\"blah\")", "groovy": "g.V().has(\"blah\")", "java": "g.V().has(\"blah\")", @@ -7783,6 +8272,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").values(\"age\")", "anonymized": "g.V().has(string0, string1, string2).values(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Values(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Values(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Values(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").values(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").values(\"age\")", @@ -7800,6 +8290,7 @@ "canonical": "g.V().has(\"person\", \"name\", xx1).values(\"age\")", "anonymized": "g.V().has(string0, string1, xx1).values(string2)", "dotnet": "g.V().Has(\"person\", \"name\", (object) xx1).Values(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", new GValue(\"xx1\", (object) xx1)).Values(\"age\")", "go": "g.V().Has(\"person\", \"name\", xx1).Values(\"age\")", "groovy": "g.V().has(\"person\", \"name\", xx1).values(\"age\")", "java": "g.V().has(\"person\", \"name\", xx1).values(\"age\")", @@ -7817,6 +8308,7 @@ "canonical": "g.V().has(xx1, \"name\", \"marko\").values(\"age\")", "anonymized": "g.V().has(xx1, string0, string1).values(string2)", "dotnet": "g.V().Has((string) xx1, \"name\", \"marko\").Values(\"age\")", + "dotnet_parameterize": "g.V().Has(new GValue(\"xx1\", (string) xx1), \"name\", \"marko\").Values(\"age\")", "go": "g.V().Has(xx1, \"name\", \"marko\").Values(\"age\")", "groovy": "g.V().has(xx1, \"name\", \"marko\").values(\"age\")", "java": "g.V().has(xx1, \"name\", \"marko\").values(\"age\")", @@ -7834,6 +8326,7 @@ "canonical": "g.V(vid1).outE().has(\"weight\", P.inside(0.0, 0.6)).inV()", "anonymized": "g.V(vid1).outE().has(string0, P.inside(number0, number1)).inV()", "dotnet": "g.V(vid1).OutE().Has(\"weight\", P.Inside(0.0, 0.6)).InV()", + "dotnet_parameterize": "g.V(vid1).OutE().Has(\"weight\", P.Inside(0.0, 0.6)).InV()", "go": "g.V(vid1).OutE().Has(\"weight\", gremlingo.P.Inside(0.0, 0.6)).InV()", "groovy": "g.V(vid1).outE().has(\"weight\", P.inside(0.0, 0.6)).inV()", "java": "g.V(vid1).outE().has(\"weight\", P.inside(0.0, 0.6)).inV()", @@ -7851,6 +8344,7 @@ "canonical": "g.E(eid11).outV().outE().has(T.id, eid10)", "anonymized": "g.E(eid11).outV().outE().has(T.id, eid10)", "dotnet": "g.E(eid11).OutV().OutE().Has(T.Id, (object) eid10)", + "dotnet_parameterize": "g.E(eid11).OutV().OutE().Has(T.Id, new GValue(\"eid10\", (object) eid10))", "go": "g.E(eid11).OutV().OutE().Has(gremlingo.T.Id, eid10)", "groovy": "g.E(eid11).outV().outE().has(T.id, eid10)", "java": "g.E(eid11).outV().outE().has(T.id, eid10)", @@ -7868,6 +8362,7 @@ "canonical": "g.E(eid11).outV().outE().has(T.id, eid10)", "anonymized": "g.E(eid11).outV().outE().has(T.id, eid10)", "dotnet": "g.E(eid11).OutV().OutE().Has(T.Id, (object) eid10)", + "dotnet_parameterize": "g.E(eid11).OutV().OutE().Has(T.Id, new GValue(\"eid10\", (object) eid10))", "go": "g.E(eid11).OutV().OutE().Has(gremlingo.T.Id, eid10)", "groovy": "g.E(eid11).outV().outE().has(T.id, eid10)", "java": "g.E(eid11).outV().outE().has(T.id, eid10)", @@ -7885,6 +8380,7 @@ "canonical": "g.V().has(\"location\")", "anonymized": "g.V().has(string0)", "dotnet": "g.V().Has(\"location\")", + "dotnet_parameterize": "g.V().Has(\"location\")", "go": "g.V().Has(\"location\")", "groovy": "g.V().has(\"location\")", "java": "g.V().has(\"location\")", @@ -7902,6 +8398,7 @@ "canonical": "g.V().has(\"age\", P.within(27)).count()", "anonymized": "g.V().has(string0, P.within(number0)).count()", "dotnet": "g.V().Has(\"age\", P.Within(27)).Count()", + "dotnet_parameterize": "g.V().Has(\"age\", P.Within(27)).Count()", "go": "g.V().Has(\"age\", gremlingo.P.Within(27)).Count()", "groovy": "g.V().has(\"age\", P.within(27)).count()", "java": "g.V().has(\"age\", P.within(27)).count()", @@ -7919,6 +8416,7 @@ "canonical": "g.V().has(\"age\", P.within(27, null)).count()", "anonymized": "g.V().has(string0, P.within(number0, object0)).count()", "dotnet": "g.V().Has(\"age\", P.Within(27, null)).Count()", + "dotnet_parameterize": "g.V().Has(\"age\", P.Within(27, null)).Count()", "go": "g.V().Has(\"age\", gremlingo.P.Within(27, nil)).Count()", "groovy": "g.V().has(\"age\", P.within(27, null)).count()", "java": "g.V().has(\"age\", P.within(27, null)).count()", @@ -7936,6 +8434,7 @@ "canonical": "g.V().has(\"age\", P.within(27, 29)).count()", "anonymized": "g.V().has(string0, P.within(number0, number1)).count()", "dotnet": "g.V().Has(\"age\", P.Within(27, 29)).Count()", + "dotnet_parameterize": "g.V().Has(\"age\", P.Within(27, 29)).Count()", "go": "g.V().Has(\"age\", gremlingo.P.Within(27, 29)).Count()", "groovy": "g.V().has(\"age\", P.within(27, 29)).count()", "java": "g.V().has(\"age\", P.within(27, 29)).count()", @@ -7953,6 +8452,7 @@ "canonical": "g.V().has(\"age\", P.without(27)).count()", "anonymized": "g.V().has(string0, P.without(number0)).count()", "dotnet": "g.V().Has(\"age\", P.Without(27)).Count()", + "dotnet_parameterize": "g.V().Has(\"age\", P.Without(27)).Count()", "go": "g.V().Has(\"age\", gremlingo.P.Without(27)).Count()", "groovy": "g.V().has(\"age\", P.without(27)).count()", "java": "g.V().has(\"age\", P.without(27)).count()", @@ -7970,6 +8470,7 @@ "canonical": "g.V().has(\"age\", P.without(27, 29)).count()", "anonymized": "g.V().has(string0, P.without(number0, number1)).count()", "dotnet": "g.V().Has(\"age\", P.Without(27, 29)).Count()", + "dotnet_parameterize": "g.V().Has(\"age\", P.Without(27, 29)).Count()", "go": "g.V().Has(\"age\", gremlingo.P.Without(27, 29)).Count()", "groovy": "g.V().has(\"age\", P.without(27, 29)).count()", "java": "g.V().has(\"age\", P.without(27, 29)).count()", @@ -7987,6 +8488,7 @@ "canonical": "g.V().has(\"person\", \"age\", P.within())", "anonymized": "g.V().has(string0, string1, P.within())", "dotnet": "g.V().Has(\"person\", \"age\", P.Within())", + "dotnet_parameterize": "g.V().Has(\"person\", \"age\", P.Within())", "go": "g.V().Has(\"person\", \"age\", gremlingo.P.Within())", "groovy": "g.V().has(\"person\", \"age\", P.within())", "java": "g.V().has(\"person\", \"age\", P.within())", @@ -8004,6 +8506,7 @@ "canonical": "g.V().has(\"person\", \"age\", P.without())", "anonymized": "g.V().has(string0, string1, P.without())", "dotnet": "g.V().Has(\"person\", \"age\", P.Without())", + "dotnet_parameterize": "g.V().Has(\"person\", \"age\", P.Without())", "go": "g.V().Has(\"person\", \"age\", gremlingo.P.Without())", "groovy": "g.V().has(\"person\", \"age\", P.without())", "java": "g.V().has(\"person\", \"age\", P.without())", @@ -8021,6 +8524,7 @@ "canonical": "g.V().has(\"name\", TextP.containing(\"ark\"))", "anonymized": "g.V().has(string0, TextP.containing(string1))", "dotnet": "g.V().Has(\"name\", TextP.Containing(\"ark\"))", + "dotnet_parameterize": "g.V().Has(\"name\", TextP.Containing(\"ark\"))", "go": "g.V().Has(\"name\", gremlingo.TextP.Containing(\"ark\"))", "groovy": "g.V().has(\"name\", TextP.containing(\"ark\"))", "java": "g.V().has(\"name\", TextP.containing(\"ark\"))", @@ -8038,6 +8542,7 @@ "canonical": "g.V().has(\"name\", TextP.startingWith(\"mar\"))", "anonymized": "g.V().has(string0, TextP.startingWith(string1))", "dotnet": "g.V().Has(\"name\", TextP.StartingWith(\"mar\"))", + "dotnet_parameterize": "g.V().Has(\"name\", TextP.StartingWith(\"mar\"))", "go": "g.V().Has(\"name\", gremlingo.TextP.StartingWith(\"mar\"))", "groovy": "g.V().has(\"name\", TextP.startingWith(\"mar\"))", "java": "g.V().has(\"name\", TextP.startingWith(\"mar\"))", @@ -8055,6 +8560,7 @@ "canonical": "g.V().has(\"name\", TextP.endingWith(\"as\"))", "anonymized": "g.V().has(string0, TextP.endingWith(string1))", "dotnet": "g.V().Has(\"name\", TextP.EndingWith(\"as\"))", + "dotnet_parameterize": "g.V().Has(\"name\", TextP.EndingWith(\"as\"))", "go": "g.V().Has(\"name\", gremlingo.TextP.EndingWith(\"as\"))", "groovy": "g.V().has(\"name\", TextP.endingWith(\"as\"))", "java": "g.V().has(\"name\", TextP.endingWith(\"as\"))", @@ -8072,6 +8578,7 @@ "canonical": "g.V().has(\"person\", \"name\", TextP.containing(\"o\").and(P.lt(\"m\")))", "anonymized": "g.V().has(string0, string1, TextP.containing(string2).and(P.lt(string3)))", "dotnet": "g.V().Has(\"person\", \"name\", TextP.Containing(\"o\").And(P.Lt(\"m\")))", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", TextP.Containing(\"o\").And(P.Lt(\"m\")))", "go": "g.V().Has(\"person\", \"name\", gremlingo.TextP.Containing(\"o\").And(gremlingo.P.Lt(\"m\")))", "groovy": "g.V().has(\"person\", \"name\", TextP.containing(\"o\").and(P.lt(\"m\")))", "java": "g.V().has(\"person\", \"name\", TextP.containing(\"o\").and(P.lt(\"m\")))", @@ -8089,6 +8596,7 @@ "canonical": "g.V().has(\"name\", P.gt(\"m\").and(TextP.containing(\"o\")))", "anonymized": "g.V().has(string0, P.gt(string1).and(TextP.containing(string2)))", "dotnet": "g.V().Has(\"name\", P.Gt(\"m\").And(TextP.Containing(\"o\")))", + "dotnet_parameterize": "g.V().Has(\"name\", P.Gt(\"m\").And(TextP.Containing(\"o\")))", "go": "g.V().Has(\"name\", gremlingo.P.Gt(\"m\").And(gremlingo.TextP.Containing(\"o\")))", "groovy": "g.V().has(\"name\", P.gt(\"m\").and(TextP.containing(\"o\")))", "java": "g.V().has(\"name\", P.gt(\"m\").and(TextP.containing(\"o\")))", @@ -8106,6 +8614,7 @@ "canonical": "g.V().has(\"name\", TextP.notContaining(\"ark\"))", "anonymized": "g.V().has(string0, TextP.notContaining(string1))", "dotnet": "g.V().Has(\"name\", TextP.NotContaining(\"ark\"))", + "dotnet_parameterize": "g.V().Has(\"name\", TextP.NotContaining(\"ark\"))", "go": "g.V().Has(\"name\", gremlingo.TextP.NotContaining(\"ark\"))", "groovy": "g.V().has(\"name\", TextP.notContaining(\"ark\"))", "java": "g.V().has(\"name\", TextP.notContaining(\"ark\"))", @@ -8123,6 +8632,7 @@ "canonical": "g.V().has(\"name\", TextP.notStartingWith(\"mar\"))", "anonymized": "g.V().has(string0, TextP.notStartingWith(string1))", "dotnet": "g.V().Has(\"name\", TextP.NotStartingWith(\"mar\"))", + "dotnet_parameterize": "g.V().Has(\"name\", TextP.NotStartingWith(\"mar\"))", "go": "g.V().Has(\"name\", gremlingo.TextP.NotStartingWith(\"mar\"))", "groovy": "g.V().has(\"name\", TextP.notStartingWith(\"mar\"))", "java": "g.V().has(\"name\", TextP.notStartingWith(\"mar\"))", @@ -8140,6 +8650,7 @@ "canonical": "g.V().has(\"name\", TextP.notEndingWith(\"as\"))", "anonymized": "g.V().has(string0, TextP.notEndingWith(string1))", "dotnet": "g.V().Has(\"name\", TextP.NotEndingWith(\"as\"))", + "dotnet_parameterize": "g.V().Has(\"name\", TextP.NotEndingWith(\"as\"))", "go": "g.V().Has(\"name\", gremlingo.TextP.NotEndingWith(\"as\"))", "groovy": "g.V().has(\"name\", TextP.notEndingWith(\"as\"))", "java": "g.V().has(\"name\", TextP.notEndingWith(\"as\"))", @@ -8157,6 +8668,7 @@ "canonical": "g.V().has(\"name\", TextP.regex(\"^mar\"))", "anonymized": "g.V().has(string0, TextP.regex(string1))", "dotnet": "g.V().Has(\"name\", TextP.Regex(\"^mar\"))", + "dotnet_parameterize": "g.V().Has(\"name\", TextP.Regex(\"^mar\"))", "go": "g.V().Has(\"name\", gremlingo.TextP.Regex(\"^mar\"))", "groovy": "g.V().has(\"name\", TextP.regex(\"^mar\"))", "java": "g.V().has(\"name\", TextP.regex(\"^mar\"))", @@ -8174,6 +8686,7 @@ "canonical": "g.V().has(\"name\", TextP.notRegex(\"^mar\"))", "anonymized": "g.V().has(string0, TextP.notRegex(string1))", "dotnet": "g.V().Has(\"name\", TextP.NotRegex(\"^mar\"))", + "dotnet_parameterize": "g.V().Has(\"name\", TextP.NotRegex(\"^mar\"))", "go": "g.V().Has(\"name\", gremlingo.TextP.NotRegex(\"^mar\"))", "groovy": "g.V().has(\"name\", TextP.notRegex(\"^mar\"))", "java": "g.V().has(\"name\", TextP.notRegex(\"^mar\"))", @@ -8191,6 +8704,7 @@ "canonical": "g.addV(\"software\").property(\"name\", \"Apache TinkerPop\u00a9\")", "anonymized": "g.addV(string0).property(string1, string2)", "dotnet": "g.AddV((string) \"software\").Property(\"name\", \"Apache TinkerPop\u00a9\")", + "dotnet_parameterize": "g.AddV((string) \"software\").Property(\"name\", \"Apache TinkerPop\u00a9\")", "go": "g.AddV(\"software\").Property(\"name\", \"Apache TinkerPop\u00a9\")", "groovy": "g.addV(\"software\").property(\"name\", \"Apache TinkerPop\u00a9\")", "java": "g.addV(\"software\").property(\"name\", \"Apache TinkerPop\u00a9\")", @@ -8203,6 +8717,7 @@ "canonical": "g.V().has(\"name\", TextP.regex(\"Tinker\")).values(\"name\")", "anonymized": "g.V().has(string0, TextP.regex(string1)).values(string0)", "dotnet": "g.V().Has(\"name\", TextP.Regex(\"Tinker\")).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"name\", TextP.Regex(\"Tinker\")).Values(\"name\")", "go": "g.V().Has(\"name\", gremlingo.TextP.Regex(\"Tinker\")).Values(\"name\")", "groovy": "g.V().has(\"name\", TextP.regex(\"Tinker\")).values(\"name\")", "java": "g.V().has(\"name\", TextP.regex(\"Tinker\")).values(\"name\")", @@ -8220,6 +8735,7 @@ "canonical": "g.addV(\"software\").property(\"name\", \"Apache TinkerPop\u00a9\")", "anonymized": "g.addV(string0).property(string1, string2)", "dotnet": "g.AddV((string) \"software\").Property(\"name\", \"Apache TinkerPop\u00a9\")", + "dotnet_parameterize": "g.AddV((string) \"software\").Property(\"name\", \"Apache TinkerPop\u00a9\")", "go": "g.AddV(\"software\").Property(\"name\", \"Apache TinkerPop\u00a9\")", "groovy": "g.addV(\"software\").property(\"name\", \"Apache TinkerPop\u00a9\")", "java": "g.addV(\"software\").property(\"name\", \"Apache TinkerPop\u00a9\")", @@ -8232,6 +8748,7 @@ "canonical": "g.V().has(\"name\", TextP.regex(\"Tinker.*\\u00A9\")).values(\"name\")", "anonymized": "g.V().has(string0, TextP.regex(string1)).values(string0)", "dotnet": "g.V().Has(\"name\", TextP.Regex(\"Tinker.*\\u00A9\")).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"name\", TextP.Regex(\"Tinker.*\\u00A9\")).Values(\"name\")", "go": "g.V().Has(\"name\", gremlingo.TextP.Regex(\"Tinker.*\\u00A9\")).Values(\"name\")", "groovy": "g.V().has(\"name\", TextP.regex(\"Tinker.*\\u00A9\")).values(\"name\")", "java": "g.V().has(\"name\", TextP.regex(\"Tinker.*\\u00A9\")).values(\"name\")", @@ -8249,6 +8766,7 @@ "canonical": "g.V().has(\"p\", P.neq(\"v\"))", "anonymized": "g.V().has(string0, P.neq(string1))", "dotnet": "g.V().Has(\"p\", P.Neq(\"v\"))", + "dotnet_parameterize": "g.V().Has(\"p\", P.Neq(\"v\"))", "go": "g.V().Has(\"p\", gremlingo.P.Neq(\"v\"))", "groovy": "g.V().has(\"p\", P.neq(\"v\"))", "java": "g.V().has(\"p\", P.neq(\"v\"))", @@ -8266,6 +8784,7 @@ "canonical": "g.V().has(\"age\", P.gt(18).and(P.lt(30)).or(P.gt(35)))", "anonymized": "g.V().has(string0, P.gt(number0).and(P.lt(number1)).or(P.gt(number2)))", "dotnet": "g.V().Has(\"age\", P.Gt(18).And(P.Lt(30)).Or(P.Gt(35)))", + "dotnet_parameterize": "g.V().Has(\"age\", P.Gt(18).And(P.Lt(30)).Or(P.Gt(35)))", "go": "g.V().Has(\"age\", gremlingo.P.Gt(18).And(gremlingo.P.Lt(30)).Or(gremlingo.P.Gt(35)))", "groovy": "g.V().has(\"age\", P.gt(18).and(P.lt(30)).or(P.gt(35)))", "java": "g.V().has(\"age\", P.gt(18).and(P.lt(30)).or(P.gt(35)))", @@ -8283,6 +8802,7 @@ "canonical": "g.V().has(\"age\", P.gt(18).and(P.lt(30)).and(P.lt(35)))", "anonymized": "g.V().has(string0, P.gt(number0).and(P.lt(number1)).and(P.lt(number2)))", "dotnet": "g.V().Has(\"age\", P.Gt(18).And(P.Lt(30)).And(P.Lt(35)))", + "dotnet_parameterize": "g.V().Has(\"age\", P.Gt(18).And(P.Lt(30)).And(P.Lt(35)))", "go": "g.V().Has(\"age\", gremlingo.P.Gt(18).And(gremlingo.P.Lt(30)).And(gremlingo.P.Lt(35)))", "groovy": "g.V().has(\"age\", P.gt(18).and(P.lt(30)).and(P.lt(35)))", "java": "g.V().has(\"age\", P.gt(18).and(P.lt(30)).and(P.lt(35)))", @@ -8300,6 +8820,7 @@ "canonical": "g.addV().property(\"k\", \"\u8f49\u6ce8\").addV().property(\"k\", \"\u2726\").addV().property(\"k\", \"\u2660\").addV().property(\"k\", \"A\")", "anonymized": "g.addV().property(string0, string1).addV().property(string0, string2).addV().property(string0, string3).addV().property(string0, string4)", "dotnet": "g.AddV().Property(\"k\", \"\u8f49\u6ce8\").AddV().Property(\"k\", \"\u2726\").AddV().Property(\"k\", \"\u2660\").AddV().Property(\"k\", \"A\")", + "dotnet_parameterize": "g.AddV().Property(\"k\", \"\u8f49\u6ce8\").AddV().Property(\"k\", \"\u2726\").AddV().Property(\"k\", \"\u2660\").AddV().Property(\"k\", \"A\")", "go": "g.AddV().Property(\"k\", \"\u8f49\u6ce8\").AddV().Property(\"k\", \"\u2726\").AddV().Property(\"k\", \"\u2660\").AddV().Property(\"k\", \"A\")", "groovy": "g.addV().property(\"k\", \"\u8f49\u6ce8\").addV().property(\"k\", \"\u2726\").addV().property(\"k\", \"\u2660\").addV().property(\"k\", \"A\")", "java": "g.addV().property(\"k\", \"\u8f49\u6ce8\").addV().property(\"k\", \"\u2726\").addV().property(\"k\", \"\u2660\").addV().property(\"k\", \"A\")", @@ -8312,6 +8833,7 @@ "canonical": "g.V().has(\"k\", P.within(\"\u8f49\u6ce8\", \"\u2726\", \"\u2660\")).values(\"k\")", "anonymized": "g.V().has(string0, P.within(string1, string2, string3)).values(string0)", "dotnet": "g.V().Has(\"k\", P.Within(\"\u8f49\u6ce8\", \"\u2726\", \"\u2660\")).Values(\"k\")", + "dotnet_parameterize": "g.V().Has(\"k\", P.Within(\"\u8f49\u6ce8\", \"\u2726\", \"\u2660\")).Values(\"k\")", "go": "g.V().Has(\"k\", gremlingo.P.Within(\"\u8f49\u6ce8\", \"\u2726\", \"\u2660\")).Values(\"k\")", "groovy": "g.V().has(\"k\", P.within(\"\u8f49\u6ce8\", \"\u2726\", \"\u2660\")).values(\"k\")", "java": "g.V().has(\"k\", P.within(\"\u8f49\u6ce8\", \"\u2726\", \"\u2660\")).values(\"k\")", @@ -8329,6 +8851,7 @@ "canonical": "g.V().has(null)", "anonymized": "g.V().has(string0)", "dotnet": "g.V().Has(null)", + "dotnet_parameterize": "g.V().Has(null)", "go": "g.V().Has(nil)", "groovy": "g.V().has(null)", "java": "g.V().has(null)", @@ -8346,6 +8869,7 @@ "canonical": "g.V().has(null, \"test-null-key\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has((string) null, \"test-null-key\")", + "dotnet_parameterize": "g.V().Has((string) null, \"test-null-key\")", "go": "g.V().Has(nil, \"test-null-key\")", "groovy": "g.V().has(null, \"test-null-key\")", "java": "g.V().has(null, \"test-null-key\")", @@ -8363,6 +8887,7 @@ "canonical": "g.E().has(null)", "anonymized": "g.E().has(string0)", "dotnet": "g.E().Has(null)", + "dotnet_parameterize": "g.E().Has(null)", "go": "g.E().Has(nil)", "groovy": "g.E().has(null)", "java": "g.E().has(null)", @@ -8380,6 +8905,7 @@ "canonical": "g.V().has(T.label, \"person\")", "anonymized": "g.V().has(T.label, string0)", "dotnet": "g.V().Has(T.Label, \"person\")", + "dotnet_parameterize": "g.V().Has(T.Label, \"person\")", "go": "g.V().Has(gremlingo.T.Label, \"person\")", "groovy": "g.V().has(T.label, \"person\")", "java": "g.V().has(T.label, \"person\")", @@ -8397,6 +8923,7 @@ "canonical": "g.V().has(T.label, P.eq(\"person\"))", "anonymized": "g.V().has(T.label, P.eq(string0))", "dotnet": "g.V().Has(T.Label, P.Eq(\"person\"))", + "dotnet_parameterize": "g.V().Has(T.Label, P.Eq(\"person\"))", "go": "g.V().Has(gremlingo.T.Label, gremlingo.P.Eq(\"person\"))", "groovy": "g.V().has(T.label, P.eq(\"person\"))", "java": "g.V().has(T.label, P.eq(\"person\"))", @@ -8414,6 +8941,7 @@ "canonical": "g.V().has(\"name\", null)", "anonymized": "g.V().has(string0, object0)", "dotnet": "g.V().Has(\"name\", (object) null)", + "dotnet_parameterize": "g.V().Has(\"name\", (object) null)", "go": "g.V().Has(\"name\", nil)", "groovy": "g.V().has(\"name\", null)", "java": "g.V().has(\"name\", null)", @@ -8431,6 +8959,7 @@ "canonical": "g.V().hasId(xx1).count()", "anonymized": "g.V().hasId(xx1).count()", "dotnet": "g.V().HasId(xx1).Count()", + "dotnet_parameterize": "g.V().HasId(xx1).Count()", "go": "g.V().HasId(xx1).Count()", "groovy": "g.V().hasId(xx1).count()", "java": "g.V().hasId(xx1).count()", @@ -8448,6 +8977,7 @@ "canonical": "g.V().hasId(P.within([])).count()", "anonymized": "g.V().hasId(P.within(list0)).count()", "dotnet": "g.V().HasId(P.Within(new List { })).Count()", + "dotnet_parameterize": "g.V().HasId(P.Within(new List { })).Count()", "go": "g.V().HasId(gremlingo.P.Within([]interface{}{})).Count()", "groovy": "g.V().hasId(P.within([])).count()", "java": "g.V().hasId(P.within(new ArrayList() {{ }})).count()", @@ -8465,6 +8995,7 @@ "canonical": "g.V().hasId(P.without([])).count()", "anonymized": "g.V().hasId(P.without(list0)).count()", "dotnet": "g.V().HasId(P.Without(new List { })).Count()", + "dotnet_parameterize": "g.V().HasId(P.Without(new List { })).Count()", "go": "g.V().HasId(gremlingo.P.Without([]interface{}{})).Count()", "groovy": "g.V().hasId(P.without([])).count()", "java": "g.V().hasId(P.without(new ArrayList() {{ }})).count()", @@ -8482,6 +9013,7 @@ "canonical": "g.V().not(__.hasId(P.within([]))).count()", "anonymized": "g.V().not(__.hasId(P.within(list0))).count()", "dotnet": "g.V().Not(__.HasId(P.Within(new List { }))).Count()", + "dotnet_parameterize": "g.V().Not(__.HasId(P.Within(new List { }))).Count()", "go": "g.V().Not(gremlingo.T__.HasId(gremlingo.P.Within([]interface{}{}))).Count()", "groovy": "g.V().not(__.hasId(P.within([]))).count()", "java": "g.V().not(__.hasId(P.within(new ArrayList() {{ }}))).count()", @@ -8499,6 +9031,7 @@ "canonical": "g.V().hasId(null)", "anonymized": "g.V().hasId(object0)", "dotnet": "g.V().HasId(null)", + "dotnet_parameterize": "g.V().HasId(null)", "go": "g.V().HasId(nil)", "groovy": "g.V().hasId(null)", "java": "g.V().hasId(null)", @@ -8516,6 +9049,7 @@ "canonical": "g.V().hasId(P.eq(null))", "anonymized": "g.V().hasId(P.eq(object0))", "dotnet": "g.V().HasId(P.Eq(null))", + "dotnet_parameterize": "g.V().HasId(P.Eq(null))", "go": "g.V().HasId(gremlingo.P.Eq(nil))", "groovy": "g.V().hasId(P.eq(null))", "java": "g.V().hasId(P.eq(null))", @@ -8533,6 +9067,7 @@ "canonical": "g.V().hasId(vid2, null)", "anonymized": "g.V().hasId(vid2, object0)", "dotnet": "g.V().HasId(vid2, null)", + "dotnet_parameterize": "g.V().HasId(vid2, null)", "go": "g.V().HasId(vid2, nil)", "groovy": "g.V().hasId(vid2, null)", "java": "g.V().hasId(vid2, null)", @@ -8550,6 +9085,7 @@ "canonical": "g.V().hasId(vid1, vid2)", "anonymized": "g.V().hasId(vid1, vid2)", "dotnet": "g.V().HasId(vid1, vid2)", + "dotnet_parameterize": "g.V().HasId(vid1, vid2)", "go": "g.V().HasId(vid1, vid2)", "groovy": "g.V().hasId(vid1, vid2)", "java": "g.V().hasId(vid1, vid2)", @@ -8567,6 +9103,7 @@ "canonical": "g.V().hasId(vid1, vid2)", "anonymized": "g.V().hasId(vid1, vid2)", "dotnet": "g.V().HasId(vid1, vid2)", + "dotnet_parameterize": "g.V().HasId(vid1, vid2)", "go": "g.V().HasId(vid1, vid2)", "groovy": "g.V().hasId(vid1, vid2)", "java": "g.V().hasId(vid1, vid2)", @@ -8584,6 +9121,7 @@ "canonical": "g.V().hasId(vid2, null)", "anonymized": "g.V().hasId(vid2, object0)", "dotnet": "g.V().HasId(vid2, null)", + "dotnet_parameterize": "g.V().HasId(vid2, null)", "go": "g.V().HasId(vid2, nil)", "groovy": "g.V().hasId(vid2, null)", "java": "g.V().hasId(vid2, null)", @@ -8601,6 +9139,7 @@ "canonical": "g.V().hasId(vid1, vid2, null)", "anonymized": "g.V().hasId(vid1, vid2, object0)", "dotnet": "g.V().HasId(vid1, vid2, null)", + "dotnet_parameterize": "g.V().HasId(vid1, vid2, null)", "go": "g.V().HasId(vid1, vid2, nil)", "groovy": "g.V().hasId(vid1, vid2, null)", "java": "g.V().hasId(vid1, vid2, null)", @@ -8618,6 +9157,7 @@ "canonical": "g.V().hasId(null, vid2)", "anonymized": "g.V().hasId(object0, vid2)", "dotnet": "g.V().HasId(null, vid2)", + "dotnet_parameterize": "g.V().HasId(null, vid2)", "go": "g.V().HasId(nil, vid2)", "groovy": "g.V().hasId(null, vid2)", "java": "g.V().hasId(null, vid2)", @@ -8635,6 +9175,7 @@ "canonical": "g.V().hasId(vid1).hasId(vid2)", "anonymized": "g.V().hasId(vid1).hasId(vid2)", "dotnet": "g.V().HasId(vid1).HasId(vid2)", + "dotnet_parameterize": "g.V().HasId(vid1).HasId(vid2)", "go": "g.V().HasId(vid1).HasId(vid2)", "groovy": "g.V().hasId(vid1).hasId(vid2)", "java": "g.V().hasId(vid1).hasId(vid2)", @@ -8652,6 +9193,7 @@ "canonical": "g.V().in().hasId(P.neq(xx1))", "anonymized": "g.V().in().hasId(P.neq(xx1))", "dotnet": "g.V().In().HasId(P.Neq(xx1))", + "dotnet_parameterize": "g.V().In().HasId(P.Neq(xx1))", "go": "g.V().In().HasId(gremlingo.P.Neq(xx1))", "groovy": "g.V().in().hasId(P.neq(xx1))", "java": "g.V().in().hasId(P.neq(xx1))", @@ -8669,6 +9211,7 @@ "canonical": "g.V(vid1).out().hasId(vid2)", "anonymized": "g.V(vid1).out().hasId(vid2)", "dotnet": "g.V(vid1).Out().HasId(vid2)", + "dotnet_parameterize": "g.V(vid1).Out().HasId(vid2)", "go": "g.V(vid1).Out().HasId(vid2)", "groovy": "g.V(vid1).out().hasId(vid2)", "java": "g.V(vid1).out().hasId(vid2)", @@ -8686,6 +9229,7 @@ "canonical": "g.V(vid1).out().hasId(vid2, vid3)", "anonymized": "g.V(vid1).out().hasId(vid2, vid3)", "dotnet": "g.V(vid1).Out().HasId(vid2, vid3)", + "dotnet_parameterize": "g.V(vid1).Out().HasId(vid2, vid3)", "go": "g.V(vid1).Out().HasId(vid2, vid3)", "groovy": "g.V(vid1).out().hasId(vid2, vid3)", "java": "g.V(vid1).out().hasId(vid2, vid3)", @@ -8703,6 +9247,7 @@ "canonical": "g.V(vid1).out().hasId(vid2, vid3)", "anonymized": "g.V(vid1).out().hasId(vid2, vid3)", "dotnet": "g.V(vid1).Out().HasId(vid2, vid3)", + "dotnet_parameterize": "g.V(vid1).Out().HasId(vid2, vid3)", "go": "g.V(vid1).Out().HasId(vid2, vid3)", "groovy": "g.V(vid1).out().hasId(vid2, vid3)", "java": "g.V(vid1).out().hasId(vid2, vid3)", @@ -8720,6 +9265,7 @@ "canonical": "g.V(vid1).out().hasId(vid2)", "anonymized": "g.V(vid1).out().hasId(vid2)", "dotnet": "g.V(vid1).Out().HasId(vid2)", + "dotnet_parameterize": "g.V(vid1).Out().HasId(vid2)", "go": "g.V(vid1).Out().HasId(vid2)", "groovy": "g.V(vid1).out().hasId(vid2)", "java": "g.V(vid1).out().hasId(vid2)", @@ -8737,6 +9283,7 @@ "canonical": "g.V(vid1).out().hasId(xx1)", "anonymized": "g.V(vid1).out().hasId(xx1)", "dotnet": "g.V(vid1).Out().HasId(xx1)", + "dotnet_parameterize": "g.V(vid1).Out().HasId(xx1)", "go": "g.V(vid1).Out().HasId(xx1)", "groovy": "g.V(vid1).out().hasId(xx1)", "java": "g.V(vid1).out().hasId(xx1)", @@ -8754,6 +9301,7 @@ "canonical": "g.V().hasId(vid1, vid2)", "anonymized": "g.V().hasId(vid1, vid2)", "dotnet": "g.V().HasId(vid1, vid2)", + "dotnet_parameterize": "g.V().HasId(vid1, vid2)", "go": "g.V().HasId(vid1, vid2)", "groovy": "g.V().hasId(vid1, vid2)", "java": "g.V().hasId(vid1, vid2)", @@ -8771,6 +9319,7 @@ "canonical": "g.V().hasId(xx1)", "anonymized": "g.V().hasId(xx1)", "dotnet": "g.V().HasId(xx1)", + "dotnet_parameterize": "g.V().HasId(xx1)", "go": "g.V().HasId(xx1)", "groovy": "g.V().hasId(xx1)", "java": "g.V().hasId(xx1)", @@ -8788,6 +9337,7 @@ "canonical": "g.V().both().properties().dedup().hasKey(\"age\").value()", "anonymized": "g.V().both().properties().dedup().hasKey(string0).value()", "dotnet": "g.V().Both().Properties().Dedup().HasKey(\"age\").Value()", + "dotnet_parameterize": "g.V().Both().Properties().Dedup().HasKey(\"age\").Value()", "go": "g.V().Both().Properties().Dedup().HasKey(\"age\").Value()", "groovy": "g.V().both().properties().dedup().hasKey(\"age\").value()", "java": "g.V().both().properties().dedup().hasKey(\"age\").value()", @@ -8805,6 +9355,7 @@ "canonical": "g.V().both().properties().dedup().hasKey(\"age\").hasValue(P.gt(30)).value()", "anonymized": "g.V().both().properties().dedup().hasKey(string0).hasValue(P.gt(number0)).value()", "dotnet": "g.V().Both().Properties().Dedup().HasKey(\"age\").HasValue(P.Gt(30)).Value()", + "dotnet_parameterize": "g.V().Both().Properties().Dedup().HasKey(\"age\").HasValue(P.Gt(30)).Value()", "go": "g.V().Both().Properties().Dedup().HasKey(\"age\").HasValue(gremlingo.P.Gt(30)).Value()", "groovy": "g.V().both().properties().dedup().hasKey(\"age\").hasValue(P.gt(30)).value()", "java": "g.V().both().properties().dedup().hasKey(\"age\").hasValue(P.gt(30)).value()", @@ -8817,6 +9368,7 @@ "canonical": "g.V().both().properties().dedup().hasKey(\"age\").hasValue(P.gt(30)).value()", "anonymized": "g.V().both().properties().dedup().hasKey(string0).hasValue(P.gt(number0)).value()", "dotnet": "g.V().Both().Properties().Dedup().HasKey(\"age\").HasValue(P.Gt(30)).Value()", + "dotnet_parameterize": "g.V().Both().Properties().Dedup().HasKey(\"age\").HasValue(P.Gt(30)).Value()", "go": "g.V().Both().Properties().Dedup().HasKey(\"age\").HasValue(gremlingo.P.Gt(30)).Value()", "groovy": "g.V().both().properties().dedup().hasKey(\"age\").hasValue(P.gt(30)).value()", "java": "g.V().both().properties().dedup().hasKey(\"age\").hasValue(P.gt(30)).value()", @@ -8834,6 +9386,7 @@ "canonical": "g.V().bothE().properties().dedup().hasKey(\"weight\").value()", "anonymized": "g.V().bothE().properties().dedup().hasKey(string0).value()", "dotnet": "g.V().BothE().Properties().Dedup().HasKey(\"weight\").Value()", + "dotnet_parameterize": "g.V().BothE().Properties().Dedup().HasKey(\"weight\").Value()", "go": "g.V().BothE().Properties().Dedup().HasKey(\"weight\").Value()", "groovy": "g.V().bothE().properties().dedup().hasKey(\"weight\").value()", "java": "g.V().bothE().properties().dedup().hasKey(\"weight\").value()", @@ -8851,6 +9404,7 @@ "canonical": "g.V().bothE().properties().dedup().hasKey(\"weight\").hasValue(P.lt(0.3)).value()", "anonymized": "g.V().bothE().properties().dedup().hasKey(string0).hasValue(P.lt(number0)).value()", "dotnet": "g.V().BothE().Properties().Dedup().HasKey(\"weight\").HasValue(P.Lt(0.3)).Value()", + "dotnet_parameterize": "g.V().BothE().Properties().Dedup().HasKey(\"weight\").HasValue(P.Lt(0.3)).Value()", "go": "g.V().BothE().Properties().Dedup().HasKey(\"weight\").HasValue(gremlingo.P.Lt(0.3)).Value()", "groovy": "g.V().bothE().properties().dedup().hasKey(\"weight\").hasValue(P.lt(0.3)).value()", "java": "g.V().bothE().properties().dedup().hasKey(\"weight\").hasValue(P.lt(0.3)).value()", @@ -8863,6 +9417,7 @@ "canonical": "g.V().bothE().properties().dedup().hasKey(\"weight\").hasValue(P.lt(0.3)).value()", "anonymized": "g.V().bothE().properties().dedup().hasKey(string0).hasValue(P.lt(number0)).value()", "dotnet": "g.V().BothE().Properties().Dedup().HasKey(\"weight\").HasValue(P.Lt(0.3)).Value()", + "dotnet_parameterize": "g.V().BothE().Properties().Dedup().HasKey(\"weight\").HasValue(P.Lt(0.3)).Value()", "go": "g.V().BothE().Properties().Dedup().HasKey(\"weight\").HasValue(gremlingo.P.Lt(0.3)).Value()", "groovy": "g.V().bothE().properties().dedup().hasKey(\"weight\").hasValue(P.lt(0.3)).value()", "java": "g.V().bothE().properties().dedup().hasKey(\"weight\").hasValue(P.lt(0.3)).value()", @@ -8880,6 +9435,7 @@ "canonical": "g.V().properties().hasKey(null)", "anonymized": "g.V().properties().hasKey(string0)", "dotnet": "g.V().Properties().HasKey((string) null)", + "dotnet_parameterize": "g.V().Properties().HasKey((string) null)", "go": "g.V().Properties().HasKey(nil)", "groovy": "g.V().properties().hasKey(null)", "java": "g.V().properties().hasKey(null)", @@ -8897,6 +9453,7 @@ "canonical": "g.V().properties().hasKey(null, null)", "anonymized": "g.V().properties().hasKey(string0, string0)", "dotnet": "g.V().Properties().HasKey(null, null)", + "dotnet_parameterize": "g.V().Properties().HasKey(null, null)", "go": "g.V().Properties().HasKey(nil, nil)", "groovy": "g.V().properties().hasKey(null, null)", "java": "g.V().properties().hasKey(null, null)", @@ -8914,6 +9471,7 @@ "canonical": "g.V().properties().hasKey(null, \"age\").value()", "anonymized": "g.V().properties().hasKey(string0, string1).value()", "dotnet": "g.V().Properties().HasKey(null, \"age\").Value()", + "dotnet_parameterize": "g.V().Properties().HasKey(null, \"age\").Value()", "go": "g.V().Properties().HasKey(nil, \"age\").Value()", "groovy": "g.V().properties().hasKey(null, \"age\").value()", "java": "g.V().properties().hasKey(null, \"age\").value()", @@ -8931,6 +9489,7 @@ "canonical": "g.E().properties().hasKey(null)", "anonymized": "g.E().properties().hasKey(string0)", "dotnet": "g.E().Properties().HasKey((string) null)", + "dotnet_parameterize": "g.E().Properties().HasKey((string) null)", "go": "g.E().Properties().HasKey(nil)", "groovy": "g.E().properties().hasKey(null)", "java": "g.E().properties().hasKey(null)", @@ -8948,6 +9507,7 @@ "canonical": "g.E().properties().hasKey(null, null)", "anonymized": "g.E().properties().hasKey(string0, string0)", "dotnet": "g.E().Properties().HasKey(null, null)", + "dotnet_parameterize": "g.E().Properties().HasKey(null, null)", "go": "g.E().Properties().HasKey(nil, nil)", "groovy": "g.E().properties().hasKey(null, null)", "java": "g.E().properties().hasKey(null, null)", @@ -8965,6 +9525,7 @@ "canonical": "g.E().properties().hasKey(null, \"weight\").value()", "anonymized": "g.E().properties().hasKey(string0, string1).value()", "dotnet": "g.E().Properties().HasKey(null, \"weight\").Value()", + "dotnet_parameterize": "g.E().Properties().HasKey(null, \"weight\").Value()", "go": "g.E().Properties().HasKey(nil, \"weight\").Value()", "groovy": "g.E().properties().hasKey(null, \"weight\").value()", "java": "g.E().properties().hasKey(null, \"weight\").value()", @@ -8982,6 +9543,7 @@ "canonical": "g.E(eid7).hasLabel(\"knows\")", "anonymized": "g.E(eid7).hasLabel(string0)", "dotnet": "g.E(eid7).HasLabel(\"knows\")", + "dotnet_parameterize": "g.E(eid7).HasLabel(\"knows\")", "go": "g.E(eid7).HasLabel(\"knows\")", "groovy": "g.E(eid7).hasLabel(\"knows\")", "java": "g.E(eid7).hasLabel(\"knows\")", @@ -8999,6 +9561,7 @@ "canonical": "g.E().hasLabel(\"knows\")", "anonymized": "g.E().hasLabel(string0)", "dotnet": "g.E().HasLabel(\"knows\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\")", "go": "g.E().HasLabel(\"knows\")", "groovy": "g.E().hasLabel(\"knows\")", "java": "g.E().hasLabel(\"knows\")", @@ -9016,6 +9579,7 @@ "canonical": "g.E().hasLabel(\"uses\", \"traverses\")", "anonymized": "g.E().hasLabel(string0, string1)", "dotnet": "g.E().HasLabel(\"uses\", \"traverses\")", + "dotnet_parameterize": "g.E().HasLabel(\"uses\", \"traverses\")", "go": "g.E().HasLabel(\"uses\", \"traverses\")", "groovy": "g.E().hasLabel(\"uses\", \"traverses\")", "java": "g.E().hasLabel(\"uses\", \"traverses\")", @@ -9033,6 +9597,7 @@ "canonical": "g.V().hasLabel(\"person\", \"software\", \"blah\")", "anonymized": "g.V().hasLabel(string0, string1, string2)", "dotnet": "g.V().HasLabel(\"person\", \"software\", \"blah\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\", \"software\", \"blah\")", "go": "g.V().HasLabel(\"person\", \"software\", \"blah\")", "groovy": "g.V().hasLabel(\"person\", \"software\", \"blah\")", "java": "g.V().hasLabel(\"person\", \"software\", \"blah\")", @@ -9050,6 +9615,7 @@ "canonical": "g.V().hasLabel(\"person\", xx1)", "anonymized": "g.V().hasLabel(string0, xx1)", "dotnet": "g.V().HasLabel(\"person\", (string) xx1)", + "dotnet_parameterize": "g.V().HasLabel(\"person\", (string) xx1)", "go": "g.V().HasLabel(\"person\", xx1)", "groovy": "g.V().hasLabel(\"person\", xx1)", "java": "g.V().hasLabel(\"person\", xx1)", @@ -9067,6 +9633,7 @@ "canonical": "g.V().hasLabel(\"person\").hasLabel(\"software\")", "anonymized": "g.V().hasLabel(string0).hasLabel(string1)", "dotnet": "g.V().HasLabel(\"person\").HasLabel(\"software\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").HasLabel(\"software\")", "go": "g.V().HasLabel(\"person\").HasLabel(\"software\")", "groovy": "g.V().hasLabel(\"person\").hasLabel(\"software\")", "java": "g.V().hasLabel(\"person\").hasLabel(\"software\")", @@ -9084,6 +9651,7 @@ "canonical": "g.V().hasLabel(xx1).hasLabel(\"software\")", "anonymized": "g.V().hasLabel(xx1).hasLabel(string0)", "dotnet": "g.V().HasLabel((string) xx1).HasLabel(\"software\")", + "dotnet_parameterize": "g.V().HasLabel(new GValue(\"xx1\", (string) xx1)).HasLabel(\"software\")", "go": "g.V().HasLabel(xx1).HasLabel(\"software\")", "groovy": "g.V().hasLabel(xx1).hasLabel(\"software\")", "java": "g.V().hasLabel(xx1).hasLabel(\"software\")", @@ -9101,6 +9669,7 @@ "canonical": "g.V().hasLabel(xx1, xx2)", "anonymized": "g.V().hasLabel(xx1, xx2)", "dotnet": "g.V().HasLabel((string) xx1, (string) xx2)", + "dotnet_parameterize": "g.V().HasLabel(new GValue(\"xx1\", (string) xx1), new GValue(\"xx2\", (string) xx2))", "go": "g.V().HasLabel(xx1, xx2)", "groovy": "g.V().hasLabel(xx1, xx2)", "java": "g.V().hasLabel(xx1, xx2)", @@ -9118,6 +9687,7 @@ "canonical": "g.V().hasLabel(\"person\").has(\"age\", P.not(P.lte(10).and(P.not(P.between(11, 20)))).and(P.lt(29).or(P.eq(35)))).values(\"name\")", "anonymized": "g.V().hasLabel(string0).has(string1, P.not(P.lte(number0).and(P.not(P.between(number1, number2)))).and(P.lt(number3).or(P.eq(number4)))).values(string2)", "dotnet": "g.V().HasLabel(\"person\").Has(\"age\", P.Not(P.Lte(10).And(P.Not(P.Between(11, 20)))).And(P.Lt(29).Or(P.Eq(35)))).Values(\"name\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Has(\"age\", P.Not(P.Lte(10).And(P.Not(P.Between(11, 20)))).And(P.Lt(29).Or(P.Eq(35)))).Values(\"name\")", "go": "g.V().HasLabel(\"person\").Has(\"age\", gremlingo.P.Not(gremlingo.P.Lte(10).And(gremlingo.P.Not(gremlingo.P.Between(11, 20)))).And(gremlingo.P.Lt(29).Or(gremlingo.P.Eq(35)))).Values(\"name\")", "groovy": "g.V().hasLabel(\"person\").has(\"age\", P.not(P.lte(10).and(P.not(P.between(11, 20)))).and(P.lt(29).or(P.eq(35)))).values(\"name\")", "java": "g.V().hasLabel(\"person\").has(\"age\", P.not(P.lte(10).and(P.not(P.between(11, 20)))).and(P.lt(29).or(P.eq(35)))).values(\"name\")", @@ -9135,6 +9705,7 @@ "canonical": "g.V().hasLabel(null)", "anonymized": "g.V().hasLabel(string0)", "dotnet": "g.V().HasLabel((string) null)", + "dotnet_parameterize": "g.V().HasLabel((string) null)", "go": "g.V().HasLabel(nil)", "groovy": "g.V().hasLabel(null)", "java": "g.V().hasLabel(null)", @@ -9152,6 +9723,7 @@ "canonical": "g.V().has(T.label, null)", "anonymized": "g.V().has(T.label, object0)", "dotnet": "g.V().Has(T.Label, (object) null)", + "dotnet_parameterize": "g.V().Has(T.Label, (object) null)", "go": "g.V().Has(gremlingo.T.Label, nil)", "groovy": "g.V().has(T.label, null)", "java": "g.V().has(T.label, null)", @@ -9169,6 +9741,7 @@ "canonical": "g.V().hasLabel(null, null)", "anonymized": "g.V().hasLabel(string0, string0)", "dotnet": "g.V().HasLabel((string) null, (string) null)", + "dotnet_parameterize": "g.V().HasLabel((string) null, (string) null)", "go": "g.V().HasLabel(nil, nil)", "groovy": "g.V().hasLabel((String) null, (String) null)", "java": "g.V().hasLabel(null, null)", @@ -9186,6 +9759,7 @@ "canonical": "g.V().hasLabel(null, \"person\")", "anonymized": "g.V().hasLabel(string0, string1)", "dotnet": "g.V().HasLabel((string) null, \"person\")", + "dotnet_parameterize": "g.V().HasLabel((string) null, \"person\")", "go": "g.V().HasLabel(nil, \"person\")", "groovy": "g.V().hasLabel((String) null, \"person\")", "java": "g.V().hasLabel(null, \"person\")", @@ -9203,6 +9777,7 @@ "canonical": "g.E().hasLabel(null)", "anonymized": "g.E().hasLabel(string0)", "dotnet": "g.E().HasLabel((string) null)", + "dotnet_parameterize": "g.E().HasLabel((string) null)", "go": "g.E().HasLabel(nil)", "groovy": "g.E().hasLabel(null)", "java": "g.E().hasLabel(null)", @@ -9220,6 +9795,7 @@ "canonical": "g.E().has(T.label, null)", "anonymized": "g.E().has(T.label, object0)", "dotnet": "g.E().Has(T.Label, (object) null)", + "dotnet_parameterize": "g.E().Has(T.Label, (object) null)", "go": "g.E().Has(gremlingo.T.Label, nil)", "groovy": "g.E().has(T.label, null)", "java": "g.E().has(T.label, null)", @@ -9237,6 +9813,7 @@ "canonical": "g.V().properties().hasLabel(null)", "anonymized": "g.V().properties().hasLabel(string0)", "dotnet": "g.V().Properties().HasLabel((string) null)", + "dotnet_parameterize": "g.V().Properties().HasLabel((string) null)", "go": "g.V().Properties().HasLabel(nil)", "groovy": "g.V().properties().hasLabel(null)", "java": "g.V().properties().hasLabel(null)", @@ -9254,6 +9831,7 @@ "canonical": "g.V().hasNot(\"age\").values(\"name\")", "anonymized": "g.V().hasNot(string0).values(string1)", "dotnet": "g.V().HasNot(\"age\").Values(\"name\")", + "dotnet_parameterize": "g.V().HasNot(\"age\").Values(\"name\")", "go": "g.V().HasNot(\"age\").Values(\"name\")", "groovy": "g.V().hasNot(\"age\").values(\"name\")", "java": "g.V().hasNot(\"age\").values(\"name\")", @@ -9271,6 +9849,7 @@ "canonical": "g.V().properties().hasValue(null)", "anonymized": "g.V().properties().hasValue(object0)", "dotnet": "g.V().Properties().HasValue((object) null)", + "dotnet_parameterize": "g.V().Properties().HasValue((object) null)", "go": "g.V().Properties().HasValue(nil)", "groovy": "g.V().properties().hasValue(null)", "java": "g.V().properties().hasValue(null)", @@ -9288,6 +9867,7 @@ "canonical": "g.V().properties().hasValue(null, null)", "anonymized": "g.V().properties().hasValue(object0, object0)", "dotnet": "g.V().Properties().HasValue(null, null)", + "dotnet_parameterize": "g.V().Properties().HasValue(null, null)", "go": "g.V().Properties().HasValue(nil, nil)", "groovy": "g.V().properties().hasValue(null, null)", "java": "g.V().properties().hasValue(null, null)", @@ -9305,6 +9885,7 @@ "canonical": "g.V().properties().hasValue(null, \"josh\").value()", "anonymized": "g.V().properties().hasValue(object0, string0).value()", "dotnet": "g.V().Properties().HasValue(null, \"josh\").Value()", + "dotnet_parameterize": "g.V().Properties().HasValue(null, \"josh\").Value()", "go": "g.V().Properties().HasValue(nil, \"josh\").Value()", "groovy": "g.V().properties().hasValue(null, \"josh\").value()", "java": "g.V().properties().hasValue(null, \"josh\").value()", @@ -9322,6 +9903,7 @@ "canonical": "g.V().values(\"age\").is(32)", "anonymized": "g.V().values(string0).is(number0)", "dotnet": "g.V().Values(\"age\").Is(32)", + "dotnet_parameterize": "g.V().Values(\"age\").Is(32)", "go": "g.V().Values(\"age\").Is(32)", "groovy": "g.V().values(\"age\").is(32)", "java": "g.V().values(\"age\").is(32)", @@ -9339,6 +9921,7 @@ "canonical": "g.V().values(\"age\").is(xx1)", "anonymized": "g.V().values(string0).is(xx1)", "dotnet": "g.V().Values(\"age\").Is(xx1)", + "dotnet_parameterize": "g.V().Values(\"age\").Is(xx1)", "go": "g.V().Values(\"age\").Is(xx1)", "groovy": "g.V().values(\"age\").is(xx1)", "java": "g.V().values(\"age\").is(xx1)", @@ -9356,6 +9939,7 @@ "canonical": "g.V().values(\"age\").is(P.lte(30))", "anonymized": "g.V().values(string0).is(P.lte(number0))", "dotnet": "g.V().Values(\"age\").Is(P.Lte(30))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.Lte(30))", "go": "g.V().Values(\"age\").Is(gremlingo.P.Lte(30))", "groovy": "g.V().values(\"age\").is(P.lte(30))", "java": "g.V().values(\"age\").is(P.lte(30))", @@ -9373,6 +9957,7 @@ "canonical": "g.V().values(\"age\").is(P.lte(xx1))", "anonymized": "g.V().values(string0).is(P.lte(xx1))", "dotnet": "g.V().Values(\"age\").Is(P.Lte(xx1))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.Lte(xx1))", "go": "g.V().Values(\"age\").Is(gremlingo.P.Lte(xx1))", "groovy": "g.V().values(\"age\").is(P.lte(xx1))", "java": "g.V().values(\"age\").is(P.lte(xx1))", @@ -9390,6 +9975,7 @@ "canonical": "g.V().values(\"age\").is(P.gte(29)).is(P.lt(34))", "anonymized": "g.V().values(string0).is(P.gte(number0)).is(P.lt(number1))", "dotnet": "g.V().Values(\"age\").Is(P.Gte(29)).Is(P.Lt(34))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.Gte(29)).Is(P.Lt(34))", "go": "g.V().Values(\"age\").Is(gremlingo.P.Gte(29)).Is(gremlingo.P.Lt(34))", "groovy": "g.V().values(\"age\").is(P.gte(29)).is(P.lt(34))", "java": "g.V().values(\"age\").is(P.gte(29)).is(P.lt(34))", @@ -9407,6 +9993,7 @@ "canonical": "g.V().values(\"age\").is(P.gte(xx1)).is(P.lt(xx2))", "anonymized": "g.V().values(string0).is(P.gte(xx1)).is(P.lt(xx2))", "dotnet": "g.V().Values(\"age\").Is(P.Gte(xx1)).Is(P.Lt(xx2))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.Gte(xx1)).Is(P.Lt(xx2))", "go": "g.V().Values(\"age\").Is(gremlingo.P.Gte(xx1)).Is(gremlingo.P.Lt(xx2))", "groovy": "g.V().values(\"age\").is(P.gte(xx1)).is(P.lt(xx2))", "java": "g.V().values(\"age\").is(P.gte(xx1)).is(P.lt(xx2))", @@ -9424,6 +10011,7 @@ "canonical": "g.V().where(__.in(\"created\").count().is(1)).values(\"name\")", "anonymized": "g.V().where(__.in(string0).count().is(number0)).values(string1)", "dotnet": "g.V().Where(__.In(\"created\").Count().Is(1)).Values(\"name\")", + "dotnet_parameterize": "g.V().Where(__.In(\"created\").Count().Is(1)).Values(\"name\")", "go": "g.V().Where(gremlingo.T__.In(\"created\").Count().Is(1)).Values(\"name\")", "groovy": "g.V().where(__.in(\"created\").count().is(1)).values(\"name\")", "java": "g.V().where(__.in(\"created\").count().is(1)).values(\"name\")", @@ -9441,6 +10029,7 @@ "canonical": "g.V().where(__.in(\"created\").count().is(P.gte(2))).values(\"name\")", "anonymized": "g.V().where(__.in(string0).count().is(P.gte(number0))).values(string1)", "dotnet": "g.V().Where(__.In(\"created\").Count().Is(P.Gte(2))).Values(\"name\")", + "dotnet_parameterize": "g.V().Where(__.In(\"created\").Count().Is(P.Gte(2))).Values(\"name\")", "go": "g.V().Where(gremlingo.T__.In(\"created\").Count().Is(gremlingo.P.Gte(2))).Values(\"name\")", "groovy": "g.V().where(__.in(\"created\").count().is(P.gte(2))).values(\"name\")", "java": "g.V().where(__.in(\"created\").count().is(P.gte(2))).values(\"name\")", @@ -9458,6 +10047,7 @@ "canonical": "g.V().values(\"age\").none(P.gt(32))", "anonymized": "g.V().values(string0).none(P.gt(number0))", "dotnet": "g.V().Values(\"age\").None(P.Gt(32))", + "dotnet_parameterize": "g.V().Values(\"age\").None(P.Gt(32))", "go": "g.V().Values(\"age\").None(gremlingo.P.Gt(32))", "groovy": "g.V().values(\"age\").none(P.gt(32))", "java": "g.V().values(\"age\").none(P.gt(32))", @@ -9475,6 +10065,7 @@ "canonical": "g.V().values(\"age\").where(__.is(P.gt(33))).fold().none(P.lte(33))", "anonymized": "g.V().values(string0).where(__.is(P.gt(number0))).fold().none(P.lte(number0))", "dotnet": "g.V().Values(\"age\").Where(__.Is(P.Gt(33))).Fold().None(P.Lte(33))", + "dotnet_parameterize": "g.V().Values(\"age\").Where(__.Is(P.Gt(33))).Fold().None(P.Lte(33))", "go": "g.V().Values(\"age\").Where(gremlingo.T__.Is(gremlingo.P.Gt(33))).Fold().None(gremlingo.P.Lte(33))", "groovy": "g.V().values(\"age\").where(__.is(P.gt(33))).fold().none(P.lte(33))", "java": "g.V().values(\"age\").where(__.is(P.gt(33))).fold().none(P.lte(33))", @@ -9492,6 +10083,7 @@ "canonical": "g.V().values(\"age\").order().by(Order.desc).fold().none(P.lt(10))", "anonymized": "g.V().values(string0).order().by(Order.desc).fold().none(P.lt(number0))", "dotnet": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().None(P.Lt(10))", + "dotnet_parameterize": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().None(P.Lt(10))", "go": "g.V().Values(\"age\").Order().By(gremlingo.Order.Desc).Fold().None(gremlingo.P.Lt(10))", "groovy": "g.V().values(\"age\").order().by(Order.desc).fold().none(P.lt(10))", "java": "g.V().values(\"age\").order().by(Order.desc).fold().none(P.lt(10))", @@ -9509,6 +10101,7 @@ "canonical": "g.V().values(\"age\").order().by(Order.desc).fold().none(P.gt(30))", "anonymized": "g.V().values(string0).order().by(Order.desc).fold().none(P.gt(number0))", "dotnet": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().None(P.Gt(30))", + "dotnet_parameterize": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().None(P.Gt(30))", "go": "g.V().Values(\"age\").Order().By(gremlingo.Order.Desc).Fold().None(gremlingo.P.Gt(30))", "groovy": "g.V().values(\"age\").order().by(Order.desc).fold().none(P.gt(30))", "java": "g.V().values(\"age\").order().by(Order.desc).fold().none(P.gt(30))", @@ -9526,6 +10119,7 @@ "canonical": "g.inject([\"abc\", \"bcd\"]).none(P.eq(\"bcd\"))", "anonymized": "g.inject(list0).none(P.eq(string0))", "dotnet": "g.Inject(new List { \"abc\", \"bcd\" }).None(P.Eq(\"bcd\"))", + "dotnet_parameterize": "g.Inject(new List { \"abc\", \"bcd\" }).None(P.Eq(\"bcd\"))", "go": "g.Inject([]interface{}{\"abc\", \"bcd\"}).None(gremlingo.P.Eq(\"bcd\"))", "groovy": "g.inject([\"abc\", \"bcd\"]).none(P.eq(\"bcd\"))", "java": "g.inject(new ArrayList() {{ add(\"abc\"); add(\"bcd\"); }}).none(P.eq(\"bcd\"))", @@ -9543,6 +10137,7 @@ "canonical": "g.inject([\"bcd\", \"bcd\"]).none(P.eq(\"abc\"))", "anonymized": "g.inject(list0).none(P.eq(string0))", "dotnet": "g.Inject(new List { \"bcd\", \"bcd\" }).None(P.Eq(\"abc\"))", + "dotnet_parameterize": "g.Inject(new List { \"bcd\", \"bcd\" }).None(P.Eq(\"abc\"))", "go": "g.Inject([]interface{}{\"bcd\", \"bcd\"}).None(gremlingo.P.Eq(\"abc\"))", "groovy": "g.inject([\"bcd\", \"bcd\"]).none(P.eq(\"abc\"))", "java": "g.inject(new ArrayList() {{ add(\"bcd\"); add(\"bcd\"); }}).none(P.eq(\"abc\"))", @@ -9560,6 +10155,7 @@ "canonical": "g.inject([null, \"bcd\"]).none(P.eq(\"abc\"))", "anonymized": "g.inject(list0).none(P.eq(string0))", "dotnet": "g.Inject(new List { null, \"bcd\" }).None(P.Eq(\"abc\"))", + "dotnet_parameterize": "g.Inject(new List { null, \"bcd\" }).None(P.Eq(\"abc\"))", "go": "g.Inject([]interface{}{nil, \"bcd\"}).None(gremlingo.P.Eq(\"abc\"))", "groovy": "g.inject([null, \"bcd\"]).none(P.eq(\"abc\"))", "java": "g.inject(new ArrayList() {{ add(null); add(\"bcd\"); }}).none(P.eq(\"abc\"))", @@ -9577,6 +10173,7 @@ "canonical": "g.inject([5, 8, 10], [10, 7]).none(P.lt(7))", "anonymized": "g.inject(list0, list1).none(P.lt(number0))", "dotnet": "g.Inject(new List { 5, 8, 10 }, new List { 10, 7 }).None(P.Lt(7))", + "dotnet_parameterize": "g.Inject(new List { 5, 8, 10 }, new List { 10, 7 }).None(P.Lt(7))", "go": "g.Inject([]interface{}{5, 8, 10}, []interface{}{10, 7}).None(gremlingo.P.Lt(7))", "groovy": "g.inject([5, 8, 10], [10, 7]).none(P.lt(7))", "java": "g.inject(new ArrayList() {{ add(5); add(8); add(10); }}, new ArrayList() {{ add(10); add(7); }}).none(P.lt(7))", @@ -9594,6 +10191,7 @@ "canonical": "g.inject(null).none(P.eq(null))", "anonymized": "g.inject(object0).none(P.eq(object0))", "dotnet": "g.Inject(null).None(P.Eq(null))", + "dotnet_parameterize": "g.Inject(null).None(P.Eq(null))", "go": "g.Inject(nil).None(gremlingo.P.Eq(nil))", "groovy": "g.inject(null).none(P.eq(null))", "java": "g.inject(null).none(P.eq(null))", @@ -9611,6 +10209,7 @@ "canonical": "g.inject(7).none(P.eq(7))", "anonymized": "g.inject(number0).none(P.eq(number0))", "dotnet": "g.Inject(7).None(P.Eq(7))", + "dotnet_parameterize": "g.Inject(7).None(P.Eq(7))", "go": "g.Inject(7).None(gremlingo.P.Eq(7))", "groovy": "g.inject(7).none(P.eq(7))", "java": "g.inject(7).none(P.eq(7))", @@ -9628,6 +10227,7 @@ "canonical": "g.inject([null, 1], []).none(P.eq(null))", "anonymized": "g.inject(list0, list1).none(P.eq(object0))", "dotnet": "g.Inject(new List { null, 1 }, new List { }).None(P.Eq(null))", + "dotnet_parameterize": "g.Inject(new List { null, 1 }, new List { }).None(P.Eq(null))", "go": "g.Inject([]interface{}{nil, 1}, []interface{}{}).None(gremlingo.P.Eq(nil))", "groovy": "g.inject([null, 1], []).none(P.eq(null))", "java": "g.inject(new ArrayList() {{ add(null); add(1); }}, new ArrayList() {{ }}).none(P.eq(null))", @@ -9645,6 +10245,7 @@ "canonical": "g.inject([null, null]).none(P.neq(null))", "anonymized": "g.inject(list0).none(P.neq(object0))", "dotnet": "g.Inject(new List { null, null }).None(P.Neq(null))", + "dotnet_parameterize": "g.Inject(new List { null, null }).None(P.Neq(null))", "go": "g.Inject([]interface{}{nil, nil}).None(gremlingo.P.Neq(nil))", "groovy": "g.inject([null, null]).none(P.neq(null))", "java": "g.inject(new ArrayList() {{ add(null); add(null); }}).none(P.neq(null))", @@ -9662,6 +10263,7 @@ "canonical": "g.inject([3i, \"three\"]).none(P.eq(3))", "anonymized": "g.inject(list0).none(P.eq(number0))", "dotnet": "g.Inject(new List { 3, \"three\" }).None(P.Eq(3))", + "dotnet_parameterize": "g.Inject(new List { 3, \"three\" }).None(P.Eq(3))", "go": "g.Inject([]interface{}{int32(3), \"three\"}).None(gremlingo.P.Eq(3))", "groovy": "g.inject([3i, \"three\"]).none(P.eq(3))", "java": "g.inject(new ArrayList() {{ add(3); add(\"three\"); }}).none(P.eq(3))", @@ -9679,6 +10281,7 @@ "canonical": "g.V().not(__.has(\"age\", P.gt(27))).values(\"name\")", "anonymized": "g.V().not(__.has(string0, P.gt(number0))).values(string1)", "dotnet": "g.V().Not(__.Has(\"age\", P.Gt(27))).Values(\"name\")", + "dotnet_parameterize": "g.V().Not(__.Has(\"age\", P.Gt(27))).Values(\"name\")", "go": "g.V().Not(gremlingo.T__.Has(\"age\", gremlingo.P.Gt(27))).Values(\"name\")", "groovy": "g.V().not(__.has(\"age\", P.gt(27))).values(\"name\")", "java": "g.V().not(__.has(\"age\", P.gt(27))).values(\"name\")", @@ -9696,6 +10299,7 @@ "canonical": "g.V().not(__.not(__.has(\"age\", P.gt(27)))).values(\"name\")", "anonymized": "g.V().not(__.not(__.has(string0, P.gt(number0)))).values(string1)", "dotnet": "g.V().Not(__.Not(__.Has(\"age\", P.Gt(27)))).Values(\"name\")", + "dotnet_parameterize": "g.V().Not(__.Not(__.Has(\"age\", P.Gt(27)))).Values(\"name\")", "go": "g.V().Not(gremlingo.T__.Not(gremlingo.T__.Has(\"age\", gremlingo.P.Gt(27)))).Values(\"name\")", "groovy": "g.V().not(__.not(__.has(\"age\", P.gt(27)))).values(\"name\")", "java": "g.V().not(__.not(__.has(\"age\", P.gt(27)))).values(\"name\")", @@ -9713,6 +10317,7 @@ "canonical": "g.V().not(__.has(\"name\", P.gt(27))).values(\"name\")", "anonymized": "g.V().not(__.has(string0, P.gt(number0))).values(string0)", "dotnet": "g.V().Not(__.Has(\"name\", P.Gt(27))).Values(\"name\")", + "dotnet_parameterize": "g.V().Not(__.Has(\"name\", P.Gt(27))).Values(\"name\")", "go": "g.V().Not(gremlingo.T__.Has(\"name\", gremlingo.P.Gt(27))).Values(\"name\")", "groovy": "g.V().not(__.has(\"name\", P.gt(27))).values(\"name\")", "java": "g.V().not(__.has(\"name\", P.gt(27))).values(\"name\")", @@ -9730,6 +10335,7 @@ "canonical": "g.V().or(__.has(\"age\", P.gt(27)), __.outE().count().is(P.gte(2))).values(\"name\")", "anonymized": "g.V().or(__.has(string0, P.gt(number0)), __.outE().count().is(P.gte(number1))).values(string1)", "dotnet": "g.V().Or(__.Has(\"age\", P.Gt(27)), __.OutE().Count().Is(P.Gte(2))).Values(\"name\")", + "dotnet_parameterize": "g.V().Or(__.Has(\"age\", P.Gt(27)), __.OutE().Count().Is(P.Gte(2))).Values(\"name\")", "go": "g.V().Or(gremlingo.T__.Has(\"age\", gremlingo.P.Gt(27)), gremlingo.T__.OutE().Count().Is(gremlingo.P.Gte(2))).Values(\"name\")", "groovy": "g.V().or(__.has(\"age\", P.gt(27)), __.outE().count().is(P.gte(2))).values(\"name\")", "java": "g.V().or(__.has(\"age\", P.gt(27)), __.outE().count().is(P.gte(2))).values(\"name\")", @@ -9747,6 +10353,7 @@ "canonical": "g.V().or(__.outE(\"knows\"), __.has(T.label, \"software\").or().has(\"age\", P.gte(35))).values(\"name\")", "anonymized": "g.V().or(__.outE(string0), __.has(T.label, string1).or().has(string2, P.gte(number0))).values(string3)", "dotnet": "g.V().Or(__.OutE(\"knows\"), __.Has(T.Label, \"software\").Or().Has(\"age\", P.Gte(35))).Values(\"name\")", + "dotnet_parameterize": "g.V().Or(__.OutE(\"knows\"), __.Has(T.Label, \"software\").Or().Has(\"age\", P.Gte(35))).Values(\"name\")", "go": "g.V().Or(gremlingo.T__.OutE(\"knows\"), gremlingo.T__.Has(gremlingo.T.Label, \"software\").Or().Has(\"age\", gremlingo.P.Gte(35))).Values(\"name\")", "groovy": "g.V().or(__.outE(\"knows\"), __.has(T.label, \"software\").or().has(\"age\", P.gte(35))).values(\"name\")", "java": "g.V().or(__.outE(\"knows\"), __.has(T.label, \"software\").or().has(\"age\", P.gte(35))).values(\"name\")", @@ -9764,6 +10371,7 @@ "canonical": "g.V().as(\"a\").or(__.select(\"a\"), __.select(\"a\"))", "anonymized": "g.V().as(string0).or(__.select(string0), __.select(string0))", "dotnet": "g.V().As(\"a\").Or(__.Select(\"a\"), __.Select(\"a\"))", + "dotnet_parameterize": "g.V().As(\"a\").Or(__.Select(\"a\"), __.Select(\"a\"))", "go": "g.V().As(\"a\").Or(gremlingo.T__.Select(\"a\"), gremlingo.T__.Select(\"a\"))", "groovy": "g.V().as(\"a\").or(__.select(\"a\"), __.select(\"a\"))", "java": "g.V().as(\"a\").or(__.select(\"a\"), __.select(\"a\"))", @@ -9781,6 +10389,7 @@ "canonical": "g.V(vid1).out().limit(2)", "anonymized": "g.V(vid1).out().limit(number0)", "dotnet": "g.V(vid1).Out().Limit(2)", + "dotnet_parameterize": "g.V(vid1).Out().Limit(2)", "go": "g.V(vid1).Out().Limit(2)", "groovy": "g.V(vid1).out().limit(2)", "java": "g.V(vid1).out().limit(2)", @@ -9798,6 +10407,7 @@ "canonical": "g.V(vid1).out().limit(xx1)", "anonymized": "g.V(vid1).out().limit(xx1)", "dotnet": "g.V(vid1).Out().Limit((long) xx1)", + "dotnet_parameterize": "g.V(vid1).Out().Limit(new GValue(\"xx1\", (long) xx1))", "go": "g.V(vid1).Out().Limit(xx1)", "groovy": "g.V(vid1).out().limit(xx1)", "java": "g.V(vid1).out().limit(xx1)", @@ -9815,6 +10425,7 @@ "canonical": "g.V().local(__.outE().limit(1)).inV().limit(3)", "anonymized": "g.V().local(__.outE().limit(number0)).inV().limit(number1)", "dotnet": "g.V().Local(__.OutE().Limit(1)).InV().Limit(3)", + "dotnet_parameterize": "g.V().Local(__.OutE().Limit(1)).InV().Limit(3)", "go": "g.V().Local(gremlingo.T__.OutE().Limit(1)).InV().Limit(3)", "groovy": "g.V().local(__.outE().limit(1)).inV().limit(3)", "java": "g.V().local(__.outE().limit(1)).inV().limit(3)", @@ -9832,6 +10443,7 @@ "canonical": "g.V(vid1).out(\"knows\").outE(\"created\").range(0, 1).inV()", "anonymized": "g.V(vid1).out(string0).outE(string1).range(number0, number1).inV()", "dotnet": "g.V(vid1).Out(\"knows\").OutE(\"created\").Range(0, 1).InV()", + "dotnet_parameterize": "g.V(vid1).Out(\"knows\").OutE(\"created\").Range(0, 1).InV()", "go": "g.V(vid1).Out(\"knows\").OutE(\"created\").Range(0, 1).InV()", "groovy": "g.V(vid1).out(\"knows\").outE(\"created\").range(0, 1).inV()", "java": "g.V(vid1).out(\"knows\").outE(\"created\").range(0, 1).inV()", @@ -9849,6 +10461,7 @@ "canonical": "g.V(vid1).out(\"knows\").out(\"created\").range(0, 1)", "anonymized": "g.V(vid1).out(string0).out(string1).range(number0, number1)", "dotnet": "g.V(vid1).Out(\"knows\").Out(\"created\").Range(0, 1)", + "dotnet_parameterize": "g.V(vid1).Out(\"knows\").Out(\"created\").Range(0, 1)", "go": "g.V(vid1).Out(\"knows\").Out(\"created\").Range(0, 1)", "groovy": "g.V(vid1).out(\"knows\").out(\"created\").range(0, 1)", "java": "g.V(vid1).out(\"knows\").out(\"created\").range(0, 1)", @@ -9866,6 +10479,7 @@ "canonical": "g.V(vid1).out(\"created\").in(\"created\").range(1, 3)", "anonymized": "g.V(vid1).out(string0).in(string0).range(number0, number1)", "dotnet": "g.V(vid1).Out(\"created\").In(\"created\").Range(1, 3)", + "dotnet_parameterize": "g.V(vid1).Out(\"created\").In(\"created\").Range(1, 3)", "go": "g.V(vid1).Out(\"created\").In(\"created\").Range(1, 3)", "groovy": "g.V(vid1).out(\"created\").in(\"created\").range(1, 3)", "java": "g.V(vid1).out(\"created\").in(\"created\").range(1, 3)", @@ -9883,6 +10497,7 @@ "canonical": "g.V(vid1).out(\"created\").in(\"created\").range(xx1, xx2)", "anonymized": "g.V(vid1).out(string0).in(string0).range(xx1, xx2)", "dotnet": "g.V(vid1).Out(\"created\").In(\"created\").Range((long) xx1, (long) xx2)", + "dotnet_parameterize": "g.V(vid1).Out(\"created\").In(\"created\").Range(new GValue(\"xx1\", (long) xx1), new GValue(\"xx2\", (long) xx2))", "go": "g.V(vid1).Out(\"created\").In(\"created\").Range(xx1, xx2)", "groovy": "g.V(vid1).out(\"created\").in(\"created\").range(xx1, xx2)", "java": "g.V(vid1).out(\"created\").in(\"created\").range(xx1, xx2)", @@ -9900,6 +10515,7 @@ "canonical": "g.V(vid1).out(\"created\").inE(\"created\").range(1, 3).outV()", "anonymized": "g.V(vid1).out(string0).inE(string0).range(number0, number1).outV()", "dotnet": "g.V(vid1).Out(\"created\").InE(\"created\").Range(1, 3).OutV()", + "dotnet_parameterize": "g.V(vid1).Out(\"created\").InE(\"created\").Range(1, 3).OutV()", "go": "g.V(vid1).Out(\"created\").InE(\"created\").Range(1, 3).OutV()", "groovy": "g.V(vid1).out(\"created\").inE(\"created\").range(1, 3).outV()", "java": "g.V(vid1).out(\"created\").inE(\"created\").range(1, 3).outV()", @@ -9917,6 +10533,7 @@ "canonical": "g.V().repeat(__.both()).times(3).range(5, 11)", "anonymized": "g.V().repeat(__.both()).times(number0).range(number1, number2)", "dotnet": "g.V().Repeat(__.Both()).Times(3).Range(5, 11)", + "dotnet_parameterize": "g.V().Repeat(__.Both()).Times(3).Range(5, 11)", "go": "g.V().Repeat(gremlingo.T__.Both()).Times(3).Range(5, 11)", "groovy": "g.V().repeat(__.both()).times(3).range(5, 11)", "java": "g.V().repeat(__.both()).times(3).range(5, 11)", @@ -9934,6 +10551,7 @@ "canonical": "g.V().as(\"a\").in().as(\"b\").in().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").limit(Scope.local, 2)", "anonymized": "g.V().as(string0).in().as(string1).in().as(string2).select(string0, string1, string2).by(string3).limit(Scope.local, number0)", "dotnet": "g.V().As(\"a\").In().As(\"b\").In().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Limit(Scope.Local, 2)", + "dotnet_parameterize": "g.V().As(\"a\").In().As(\"b\").In().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Limit(Scope.Local, 2)", "go": "g.V().As(\"a\").In().As(\"b\").In().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Limit(gremlingo.Scope.Local, 2)", "groovy": "g.V().as(\"a\").in().as(\"b\").in().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").limit(Scope.local, 2)", "java": "g.V().as(\"a\").in().as(\"b\").in().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").limit(Scope.local, 2)", @@ -9951,6 +10569,7 @@ "canonical": "g.V().as(\"a\").in().as(\"b\").in().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").limit(Scope.local, xx1)", "anonymized": "g.V().as(string0).in().as(string1).in().as(string2).select(string0, string1, string2).by(string3).limit(Scope.local, xx1)", "dotnet": "g.V().As(\"a\").In().As(\"b\").In().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Limit(Scope.Local, (long) xx1)", + "dotnet_parameterize": "g.V().As(\"a\").In().As(\"b\").In().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Limit(Scope.Local, new GValue(\"xx1\", (long) xx1))", "go": "g.V().As(\"a\").In().As(\"b\").In().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Limit(gremlingo.Scope.Local, xx1)", "groovy": "g.V().as(\"a\").in().as(\"b\").in().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").limit(Scope.local, xx1)", "java": "g.V().as(\"a\").in().as(\"b\").in().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").limit(Scope.local, xx1)", @@ -9968,6 +10587,7 @@ "canonical": "g.V().as(\"a\").in().as(\"b\").in().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").limit(Scope.local, 1)", "anonymized": "g.V().as(string0).in().as(string1).in().as(string2).select(string0, string1, string2).by(string3).limit(Scope.local, number0)", "dotnet": "g.V().As(\"a\").In().As(\"b\").In().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Limit(Scope.Local, 1)", + "dotnet_parameterize": "g.V().As(\"a\").In().As(\"b\").In().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Limit(Scope.Local, 1)", "go": "g.V().As(\"a\").In().As(\"b\").In().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Limit(gremlingo.Scope.Local, 1)", "groovy": "g.V().as(\"a\").in().as(\"b\").in().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").limit(Scope.local, 1)", "java": "g.V().as(\"a\").in().as(\"b\").in().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").limit(Scope.local, 1)", @@ -9985,6 +10605,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").range(Scope.local, 1, 3)", "anonymized": "g.V().as(string0).out().as(string1).out().as(string2).select(string0, string1, string2).by(string3).range(Scope.local, number0, number1)", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Range(Scope.Local, 1, 3)", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Range(Scope.Local, 1, 3)", "go": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Range(gremlingo.Scope.Local, 1, 3)", "groovy": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").range(Scope.local, 1, 3)", "java": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").range(Scope.local, 1, 3)", @@ -10002,6 +10623,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").range(Scope.local, xx1, xx2)", "anonymized": "g.V().as(string0).out().as(string1).out().as(string2).select(string0, string1, string2).by(string3).range(Scope.local, xx1, xx2)", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Range(Scope.Local, (long) xx1, (long) xx2)", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Range(Scope.Local, new GValue(\"xx1\", (long) xx1), new GValue(\"xx2\", (long) xx2))", "go": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Range(gremlingo.Scope.Local, xx1, xx2)", "groovy": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").range(Scope.local, xx1, xx2)", "java": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").range(Scope.local, xx1, xx2)", @@ -10019,6 +10641,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").range(Scope.local, 1, 2)", "anonymized": "g.V().as(string0).out().as(string1).out().as(string2).select(string0, string1, string2).by(string3).range(Scope.local, number0, number1)", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Range(Scope.Local, 1, 2)", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Range(Scope.Local, 1, 2)", "go": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Range(gremlingo.Scope.Local, 1, 2)", "groovy": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").range(Scope.local, 1, 2)", "java": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").range(Scope.local, 1, 2)", @@ -10036,6 +10659,7 @@ "canonical": "g.V().hasLabel(\"person\").order().by(\"age\").skip(1).values(\"name\")", "anonymized": "g.V().hasLabel(string0).order().by(string1).skip(number0).values(string2)", "dotnet": "g.V().HasLabel(\"person\").Order().By(\"age\").Skip(1).Values(\"name\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Order().By(\"age\").Skip(1).Values(\"name\")", "go": "g.V().HasLabel(\"person\").Order().By(\"age\").Skip(1).Values(\"name\")", "groovy": "g.V().hasLabel(\"person\").order().by(\"age\").skip(1).values(\"name\")", "java": "g.V().hasLabel(\"person\").order().by(\"age\").skip(1).values(\"name\")", @@ -10053,6 +10677,7 @@ "canonical": "g.V().hasLabel(\"person\").order().by(\"age\").skip(xx1).values(\"name\")", "anonymized": "g.V().hasLabel(string0).order().by(string1).skip(xx1).values(string2)", "dotnet": "g.V().HasLabel(\"person\").Order().By(\"age\").Skip((long) xx1).Values(\"name\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Order().By(\"age\").Skip(new GValue(\"xx1\", (long) xx1)).Values(\"name\")", "go": "g.V().HasLabel(\"person\").Order().By(\"age\").Skip(xx1).Values(\"name\")", "groovy": "g.V().hasLabel(\"person\").order().by(\"age\").skip(xx1).values(\"name\")", "java": "g.V().hasLabel(\"person\").order().by(\"age\").skip(xx1).values(\"name\")", @@ -10070,6 +10695,7 @@ "canonical": "g.V().fold().range(Scope.local, 6, 7)", "anonymized": "g.V().fold().range(Scope.local, number0, number1)", "dotnet": "g.V().Fold().Range(Scope.Local, 6, 7)", + "dotnet_parameterize": "g.V().Fold().Range(Scope.Local, 6, 7)", "go": "g.V().Fold().Range(gremlingo.Scope.Local, 6, 7)", "groovy": "g.V().fold().range(Scope.local, 6, 7)", "java": "g.V().fold().range(Scope.local, 6, 7)", @@ -10087,6 +10713,7 @@ "canonical": "g.V().outE().values(\"weight\").fold().order(Scope.local).skip(Scope.local, 2)", "anonymized": "g.V().outE().values(string0).fold().order(Scope.local).skip(Scope.local, number0)", "dotnet": "g.V().OutE().Values(\"weight\").Fold().Order(Scope.Local).Skip(Scope.Local, 2)", + "dotnet_parameterize": "g.V().OutE().Values(\"weight\").Fold().Order(Scope.Local).Skip(Scope.Local, 2)", "go": "g.V().OutE().Values(\"weight\").Fold().Order(gremlingo.Scope.Local).Skip(gremlingo.Scope.Local, 2)", "groovy": "g.V().outE().values(\"weight\").fold().order(Scope.local).skip(Scope.local, 2)", "java": "g.V().outE().values(\"weight\").fold().order(Scope.local).skip(Scope.local, 2)", @@ -10104,6 +10731,7 @@ "canonical": "g.V().outE().values(\"weight\").fold().order(Scope.local).skip(Scope.local, xx1)", "anonymized": "g.V().outE().values(string0).fold().order(Scope.local).skip(Scope.local, xx1)", "dotnet": "g.V().OutE().Values(\"weight\").Fold().Order(Scope.Local).Skip(Scope.Local, (long) xx1)", + "dotnet_parameterize": "g.V().OutE().Values(\"weight\").Fold().Order(Scope.Local).Skip(Scope.Local, new GValue(\"xx1\", (long) xx1))", "go": "g.V().OutE().Values(\"weight\").Fold().Order(gremlingo.Scope.Local).Skip(gremlingo.Scope.Local, xx1)", "groovy": "g.V().outE().values(\"weight\").fold().order(Scope.local).skip(Scope.local, xx1)", "java": "g.V().outE().values(\"weight\").fold().order(Scope.local).skip(Scope.local, xx1)", @@ -10121,6 +10749,7 @@ "canonical": "g.V().hasLabel(\"person\").order().by(\"age\").values(\"name\").skip(1)", "anonymized": "g.V().hasLabel(string0).order().by(string1).values(string2).skip(number0)", "dotnet": "g.V().HasLabel(\"person\").Order().By(\"age\").Values(\"name\").Skip(1)", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Order().By(\"age\").Values(\"name\").Skip(1)", "go": "g.V().HasLabel(\"person\").Order().By(\"age\").Values(\"name\").Skip(1)", "groovy": "g.V().hasLabel(\"person\").order().by(\"age\").values(\"name\").skip(1)", "java": "g.V().hasLabel(\"person\").order().by(\"age\").values(\"name\").skip(1)", @@ -10138,6 +10767,7 @@ "canonical": "g.V(vid1).values(\"age\").range(Scope.local, 20, 30)", "anonymized": "g.V(vid1).values(string0).range(Scope.local, number0, number1)", "dotnet": "g.V(vid1).Values(\"age\").Range(Scope.Local, 20, 30)", + "dotnet_parameterize": "g.V(vid1).Values(\"age\").Range(Scope.Local, 20, 30)", "go": "g.V(vid1).Values(\"age\").Range(gremlingo.Scope.Local, 20, 30)", "groovy": "g.V(vid1).values(\"age\").range(Scope.local, 20, 30)", "java": "g.V(vid1).values(\"age\").range(Scope.local, 20, 30)", @@ -10155,6 +10785,7 @@ "canonical": "g.V().map(__.in().hasId(vid1)).limit(2).values(\"name\")", "anonymized": "g.V().map(__.in().hasId(vid1)).limit(number0).values(string0)", "dotnet": "g.V().Map(__.In().HasId(vid1)).Limit(2).Values(\"name\")", + "dotnet_parameterize": "g.V().Map(__.In().HasId(vid1)).Limit(2).Values(\"name\")", "go": "g.V().Map(gremlingo.T__.In().HasId(vid1)).Limit(2).Values(\"name\")", "groovy": "g.V().map(__.in().hasId(vid1)).limit(2).values(\"name\")", "java": "g.V().map(__.in().hasId(vid1)).limit(2).values(\"name\")", @@ -10172,6 +10803,7 @@ "canonical": "g.V().range(2, 1)", "anonymized": "g.V().range(number0, number1)", "dotnet": "g.V().Range(2, 1)", + "dotnet_parameterize": "g.V().Range(2, 1)", "go": "g.V().Range(2, 1)", "groovy": "g.V().range(2, 1)", "java": "g.V().range(2, 1)", @@ -10189,6 +10821,7 @@ "canonical": "g.V().range(3, 2)", "anonymized": "g.V().range(number0, number1)", "dotnet": "g.V().Range(3, 2)", + "dotnet_parameterize": "g.V().Range(3, 2)", "go": "g.V().Range(3, 2)", "groovy": "g.V().range(3, 2)", "java": "g.V().range(3, 2)", @@ -10206,6 +10839,7 @@ "canonical": "g.inject([1, 2, 3]).range(Scope.local, 1, 2)", "anonymized": "g.inject(list0).range(Scope.local, number0, number1)", "dotnet": "g.Inject(new List { 1, 2, 3 }).Range(Scope.Local, 1, 2)", + "dotnet_parameterize": "g.Inject(new List { 1, 2, 3 }).Range(Scope.Local, 1, 2)", "go": "g.Inject([]interface{}{1, 2, 3}).Range(gremlingo.Scope.Local, 1, 2)", "groovy": "g.inject([1, 2, 3]).range(Scope.local, 1, 2)", "java": "g.inject(new ArrayList() {{ add(1); add(2); add(3); }}).range(Scope.local, 1, 2)", @@ -10223,6 +10857,7 @@ "canonical": "g.inject([1, 2, 3]).limit(Scope.local, 1)", "anonymized": "g.inject(list0).limit(Scope.local, number0)", "dotnet": "g.Inject(new List { 1, 2, 3 }).Limit(Scope.Local, 1)", + "dotnet_parameterize": "g.Inject(new List { 1, 2, 3 }).Limit(Scope.Local, 1)", "go": "g.Inject([]interface{}{1, 2, 3}).Limit(gremlingo.Scope.Local, 1)", "groovy": "g.inject([1, 2, 3]).limit(Scope.local, 1)", "java": "g.inject(new ArrayList() {{ add(1); add(2); add(3); }}).limit(Scope.local, 1)", @@ -10240,6 +10875,7 @@ "canonical": "g.inject([1, 2, 3]).limit(Scope.local, 1).unfold()", "anonymized": "g.inject(list0).limit(Scope.local, number0).unfold()", "dotnet": "g.Inject(new List { 1, 2, 3 }).Limit(Scope.Local, 1).Unfold()", + "dotnet_parameterize": "g.Inject(new List { 1, 2, 3 }).Limit(Scope.Local, 1).Unfold()", "go": "g.Inject([]interface{}{1, 2, 3}).Limit(gremlingo.Scope.Local, 1).Unfold()", "groovy": "g.inject([1, 2, 3]).limit(Scope.local, 1).unfold()", "java": "g.inject(new ArrayList() {{ add(1); add(2); add(3); }}).limit(Scope.local, 1).unfold()", @@ -10257,6 +10893,7 @@ "canonical": "g.inject([1, 2], [3, 4, 5]).limit(Scope.local, 1)", "anonymized": "g.inject(list0, list1).limit(Scope.local, number0)", "dotnet": "g.Inject(new List { 1, 2 }, new List { 3, 4, 5 }).Limit(Scope.Local, 1)", + "dotnet_parameterize": "g.Inject(new List { 1, 2 }, new List { 3, 4, 5 }).Limit(Scope.Local, 1)", "go": "g.Inject([]interface{}{1, 2}, []interface{}{3, 4, 5}).Limit(gremlingo.Scope.Local, 1)", "groovy": "g.inject([1, 2], [3, 4, 5]).limit(Scope.local, 1)", "java": "g.inject(new ArrayList() {{ add(1); add(2); }}, new ArrayList() {{ add(3); add(4); add(5); }}).limit(Scope.local, 1)", @@ -10274,6 +10911,7 @@ "canonical": "g.inject([1, 2, 3], [4, 5, 6]).range(Scope.local, 1, 2)", "anonymized": "g.inject(list0, list1).range(Scope.local, number0, number1)", "dotnet": "g.Inject(new List { 1, 2, 3 }, new List { 4, 5, 6 }).Range(Scope.Local, 1, 2)", + "dotnet_parameterize": "g.Inject(new List { 1, 2, 3 }, new List { 4, 5, 6 }).Range(Scope.Local, 1, 2)", "go": "g.Inject([]interface{}{1, 2, 3}, []interface{}{4, 5, 6}).Range(gremlingo.Scope.Local, 1, 2)", "groovy": "g.inject([1, 2, 3], [4, 5, 6]).range(Scope.local, 1, 2)", "java": "g.inject(new ArrayList() {{ add(1); add(2); add(3); }}, new ArrayList() {{ add(4); add(5); add(6); }}).range(Scope.local, 1, 2)", @@ -10291,6 +10929,7 @@ "canonical": "g.V(vid5).repeat(__.limit(1).in()).times(2).values(\"name\")", "anonymized": "g.V(vid5).repeat(__.limit(number0).in()).times(number1).values(string0)", "dotnet": "g.V(vid5).Repeat(__.Limit(1).In()).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V(vid5).Repeat(__.Limit(1).In()).Times(2).Values(\"name\")", "go": "g.V(vid5).Repeat(gremlingo.T__.Limit(1).In()).Times(2).Values(\"name\")", "groovy": "g.V(vid5).repeat(__.limit(1).in()).times(2).values(\"name\")", "java": "g.V(vid5).repeat(__.limit(1).in()).times(2).values(\"name\")", @@ -10308,6 +10947,7 @@ "canonical": "g.V(vid5).repeat(__.limit(1).in()).until(__.loops().is(2)).values(\"name\")", "anonymized": "g.V(vid5).repeat(__.limit(number0).in()).until(__.loops().is(number1)).values(string0)", "dotnet": "g.V(vid5).Repeat(__.Limit(1).In()).Until(__.Loops().Is(2)).Values(\"name\")", + "dotnet_parameterize": "g.V(vid5).Repeat(__.Limit(1).In()).Until(__.Loops().Is(2)).Values(\"name\")", "go": "g.V(vid5).Repeat(gremlingo.T__.Limit(1).In()).Until(gremlingo.T__.Loops().Is(2)).Values(\"name\")", "groovy": "g.V(vid5).repeat(__.limit(1).in()).until(__.loops().is(2)).values(\"name\")", "java": "g.V(vid5).repeat(__.limit(1).in()).until(__.loops().is(2)).values(\"name\")", @@ -10325,6 +10965,7 @@ "canonical": "g.V(vid5).limit(1).in().limit(1).in().values(\"name\")", "anonymized": "g.V(vid5).limit(number0).in().limit(number0).in().values(string0)", "dotnet": "g.V(vid5).Limit(1).In().Limit(1).In().Values(\"name\")", + "dotnet_parameterize": "g.V(vid5).Limit(1).In().Limit(1).In().Values(\"name\")", "go": "g.V(vid5).Limit(1).In().Limit(1).In().Values(\"name\")", "groovy": "g.V(vid5).limit(1).in().limit(1).in().values(\"name\")", "java": "g.V(vid5).limit(1).in().limit(1).in().values(\"name\")", @@ -10342,6 +10983,7 @@ "canonical": "g.V(vid5).repeat(__.limit(1).in()).times(1).repeat(__.limit(1).in()).times(1).values(\"name\")", "anonymized": "g.V(vid5).repeat(__.limit(number0).in()).times(number0).repeat(__.limit(number0).in()).times(number0).values(string0)", "dotnet": "g.V(vid5).Repeat(__.Limit(1).In()).Times(1).Repeat(__.Limit(1).In()).Times(1).Values(\"name\")", + "dotnet_parameterize": "g.V(vid5).Repeat(__.Limit(1).In()).Times(1).Repeat(__.Limit(1).In()).Times(1).Values(\"name\")", "go": "g.V(vid5).Repeat(gremlingo.T__.Limit(1).In()).Times(1).Repeat(gremlingo.T__.Limit(1).In()).Times(1).Values(\"name\")", "groovy": "g.V(vid5).repeat(__.limit(1).in()).times(1).repeat(__.limit(1).in()).times(1).values(\"name\")", "java": "g.V(vid5).repeat(__.limit(1).in()).times(1).repeat(__.limit(1).in()).times(1).values(\"name\")", @@ -10359,6 +11001,7 @@ "canonical": "g.V(vid5).repeat(__.limit(1).in().aggregate('x')).times(2).cap('x')", "anonymized": "g.V(vid5).repeat(__.limit(number0).in().aggregate(string0)).times(number1).cap(string0)", "dotnet": "g.V(vid5).Repeat(__.Limit(1).In().Aggregate(\"x\")).Times(2).Cap(\"x\")", + "dotnet_parameterize": "g.V(vid5).Repeat(__.Limit(1).In().Aggregate(\"x\")).Times(2).Cap(\"x\")", "go": "g.V(vid5).Repeat(gremlingo.T__.Limit(1).In().Aggregate(\"x\")).Times(2).Cap(\"x\")", "groovy": "g.V(vid5).repeat(__.limit(1).in().aggregate('x')).times(2).cap('x')", "java": "g.V(vid5).repeat(__.limit(1).in().aggregate(\"x\")).times(2).cap(\"x\")", @@ -10376,6 +11019,7 @@ "canonical": "g.V(vid5).repeat(__.range(0, 1).in()).times(2).values(\"name\")", "anonymized": "g.V(vid5).repeat(__.range(number0, number1).in()).times(number2).values(string0)", "dotnet": "g.V(vid5).Repeat(__.Range(0, 1).In()).Times(2).Values(\"name\")", + "dotnet_parameterize": "g.V(vid5).Repeat(__.Range(0, 1).In()).Times(2).Values(\"name\")", "go": "g.V(vid5).Repeat(gremlingo.T__.Range(0, 1).In()).Times(2).Values(\"name\")", "groovy": "g.V(vid5).repeat(__.range(0, 1).in()).times(2).values(\"name\")", "java": "g.V(vid5).repeat(__.range(0, 1).in()).times(2).values(\"name\")", @@ -10393,6 +11037,7 @@ "canonical": "g.V(vid5).repeat(__.range(0, 1).in()).until(__.loops().is(2)).values(\"name\")", "anonymized": "g.V(vid5).repeat(__.range(number0, number1).in()).until(__.loops().is(number2)).values(string0)", "dotnet": "g.V(vid5).Repeat(__.Range(0, 1).In()).Until(__.Loops().Is(2)).Values(\"name\")", + "dotnet_parameterize": "g.V(vid5).Repeat(__.Range(0, 1).In()).Until(__.Loops().Is(2)).Values(\"name\")", "go": "g.V(vid5).Repeat(gremlingo.T__.Range(0, 1).In()).Until(gremlingo.T__.Loops().Is(2)).Values(\"name\")", "groovy": "g.V(vid5).repeat(__.range(0, 1).in()).until(__.loops().is(2)).values(\"name\")", "java": "g.V(vid5).repeat(__.range(0, 1).in()).until(__.loops().is(2)).values(\"name\")", @@ -10410,6 +11055,7 @@ "canonical": "g.V(vid5).range(0, 1).in().range(0, 1).in().values(\"name\")", "anonymized": "g.V(vid5).range(number0, number1).in().range(number0, number1).in().values(string0)", "dotnet": "g.V(vid5).Range(0, 1).In().Range(0, 1).In().Values(\"name\")", + "dotnet_parameterize": "g.V(vid5).Range(0, 1).In().Range(0, 1).In().Values(\"name\")", "go": "g.V(vid5).Range(0, 1).In().Range(0, 1).In().Values(\"name\")", "groovy": "g.V(vid5).range(0, 1).in().range(0, 1).in().values(\"name\")", "java": "g.V(vid5).range(0, 1).in().range(0, 1).in().values(\"name\")", @@ -10427,6 +11073,7 @@ "canonical": "g.V(vid5).repeat(__.range(0, 1).in().repeat(__.range(0, 1).in()).times(1)).times(1).values(\"name\")", "anonymized": "g.V(vid5).repeat(__.range(number0, number1).in().repeat(__.range(number0, number1).in()).times(number1)).times(number1).values(string0)", "dotnet": "g.V(vid5).Repeat(__.Range(0, 1).In().Repeat(__.Range(0, 1).In()).Times(1)).Times(1).Values(\"name\")", + "dotnet_parameterize": "g.V(vid5).Repeat(__.Range(0, 1).In().Repeat(__.Range(0, 1).In()).Times(1)).Times(1).Values(\"name\")", "go": "g.V(vid5).Repeat(gremlingo.T__.Range(0, 1).In().Repeat(gremlingo.T__.Range(0, 1).In()).Times(1)).Times(1).Values(\"name\")", "groovy": "g.V(vid5).repeat(__.range(0, 1).in().repeat(__.range(0, 1).in()).times(1)).times(1).values(\"name\")", "java": "g.V(vid5).repeat(__.range(0, 1).in().repeat(__.range(0, 1).in()).times(1)).times(1).values(\"name\")", @@ -10444,6 +11091,7 @@ "canonical": "g.V(vid5).repeat(__.range(0, 1).in().aggregate('x')).times(2).cap('x')", "anonymized": "g.V(vid5).repeat(__.range(number0, number1).in().aggregate(string0)).times(number2).cap(string0)", "dotnet": "g.V(vid5).Repeat(__.Range(0, 1).In().Aggregate(\"x\")).Times(2).Cap(\"x\")", + "dotnet_parameterize": "g.V(vid5).Repeat(__.Range(0, 1).In().Aggregate(\"x\")).Times(2).Cap(\"x\")", "go": "g.V(vid5).Repeat(gremlingo.T__.Range(0, 1).In().Aggregate(\"x\")).Times(2).Cap(\"x\")", "groovy": "g.V(vid5).repeat(__.range(0, 1).in().aggregate('x')).times(2).cap('x')", "java": "g.V(vid5).repeat(__.range(0, 1).in().aggregate(\"x\")).times(2).cap(\"x\")", @@ -10461,6 +11109,7 @@ "canonical": "g.withoutStrategies(EarlyLimitStrategy).V(vid5).repeat(__.limit(1).in().limit(1).limit(1)).times(2)", "anonymized": "g.withoutStrategies(EarlyLimitStrategy).V(vid5).repeat(__.limit(number0).in().limit(number0).limit(number0)).times(number1)", "dotnet": "g.WithoutStrategies(typeof(EarlyLimitStrategy)).V(vid5).Repeat(__.Limit(1).In().Limit(1).Limit(1)).Times(2)", + "dotnet_parameterize": "g.WithoutStrategies(typeof(EarlyLimitStrategy)).V(vid5).Repeat(__.Limit(1).In().Limit(1).Limit(1)).Times(2)", "go": "g.WithoutStrategies(gremlingo.EarlyLimitStrategy()).V(vid5).Repeat(gremlingo.T__.Limit(1).In().Limit(1).Limit(1)).Times(2)", "groovy": "g.withoutStrategies(EarlyLimitStrategy).V(vid5).repeat(__.limit(1).in().limit(1).limit(1)).times(2)", "java": "g.withoutStrategies(EarlyLimitStrategy.class).V(vid5).repeat(__.limit(1).in().limit(1).limit(1)).times(2)", @@ -10478,6 +11127,7 @@ "canonical": "g.V().repeat(__.out().where(__.has(\"name\").order().by('name').limit(1))).times(2)", "anonymized": "g.V().repeat(__.out().where(__.has(string0).order().by(string1).limit(number0))).times(number1)", "dotnet": "g.V().Repeat(__.Out().Where(__.Has(\"name\").Order().By(\"name\").Limit(1))).Times(2)", + "dotnet_parameterize": "g.V().Repeat(__.Out().Where(__.Has(\"name\").Order().By(\"name\").Limit(1))).Times(2)", "go": "g.V().Repeat(gremlingo.T__.Out().Where(gremlingo.T__.Has(\"name\").Order().By(\"name\").Limit(1))).Times(2)", "groovy": "g.V().repeat(__.out().where(__.has(\"name\").order().by('name').limit(1))).times(2)", "java": "g.V().repeat(__.out().where(__.has(\"name\").order().by(\"name\").limit(1))).times(2)", @@ -10495,6 +11145,7 @@ "canonical": "g.V().out().where(__.has(\"name\").order().by('name').limit(1)).out().where(__.has(\"name\").order().by('name').limit(1))", "anonymized": "g.V().out().where(__.has(string0).order().by(string1).limit(number0)).out().where(__.has(string0).order().by(string1).limit(number0))", "dotnet": "g.V().Out().Where(__.Has(\"name\").Order().By(\"name\").Limit(1)).Out().Where(__.Has(\"name\").Order().By(\"name\").Limit(1))", + "dotnet_parameterize": "g.V().Out().Where(__.Has(\"name\").Order().By(\"name\").Limit(1)).Out().Where(__.Has(\"name\").Order().By(\"name\").Limit(1))", "go": "g.V().Out().Where(gremlingo.T__.Has(\"name\").Order().By(\"name\").Limit(1)).Out().Where(gremlingo.T__.Has(\"name\").Order().By(\"name\").Limit(1))", "groovy": "g.V().out().where(__.has(\"name\").order().by('name').limit(1)).out().where(__.has(\"name\").order().by('name').limit(1))", "java": "g.V().out().where(__.has(\"name\").order().by(\"name\").limit(1)).out().where(__.has(\"name\").order().by(\"name\").limit(1))", @@ -10512,6 +11163,7 @@ "canonical": "g.V().has('name', 'JAM').repeat(__.out('followedBy').order().by('name').limit(2)).times(2)", "anonymized": "g.V().has(string0, string1).repeat(__.out(string2).order().by(string0).limit(number0)).times(number0)", "dotnet": "g.V().Has(\"name\", \"JAM\").Repeat(__.Out(\"followedBy\").Order().By(\"name\").Limit(2)).Times(2)", + "dotnet_parameterize": "g.V().Has(\"name\", \"JAM\").Repeat(__.Out(\"followedBy\").Order().By(\"name\").Limit(2)).Times(2)", "go": "g.V().Has(\"name\", \"JAM\").Repeat(gremlingo.T__.Out(\"followedBy\").Order().By(\"name\").Limit(2)).Times(2)", "groovy": "g.V().has('name', 'JAM').repeat(__.out('followedBy').order().by('name').limit(2)).times(2)", "java": "g.V().has(\"name\", \"JAM\").repeat(__.out(\"followedBy\").order().by(\"name\").limit(2)).times(2)", @@ -10529,6 +11181,7 @@ "canonical": "g.V().has('name', 'JAM').out('followedBy').order().by('name').limit(2).out('followedBy').order().by('name').limit(2)", "anonymized": "g.V().has(string0, string1).out(string2).order().by(string0).limit(number0).out(string2).order().by(string0).limit(number0)", "dotnet": "g.V().Has(\"name\", \"JAM\").Out(\"followedBy\").Order().By(\"name\").Limit(2).Out(\"followedBy\").Order().By(\"name\").Limit(2)", + "dotnet_parameterize": "g.V().Has(\"name\", \"JAM\").Out(\"followedBy\").Order().By(\"name\").Limit(2).Out(\"followedBy\").Order().By(\"name\").Limit(2)", "go": "g.V().Has(\"name\", \"JAM\").Out(\"followedBy\").Order().By(\"name\").Limit(2).Out(\"followedBy\").Order().By(\"name\").Limit(2)", "groovy": "g.V().has('name', 'JAM').out('followedBy').order().by('name').limit(2).out('followedBy').order().by('name').limit(2)", "java": "g.V().has(\"name\", \"JAM\").out(\"followedBy\").order().by(\"name\").limit(2).out(\"followedBy\").order().by(\"name\").limit(2)", @@ -10546,6 +11199,7 @@ "canonical": "g.V().has('name', 'DRUMS').repeat(__.in('followedBy').order().by('name').range(1, 4)).times(2)", "anonymized": "g.V().has(string0, string1).repeat(__.in(string2).order().by(string0).range(number0, number1)).times(number2)", "dotnet": "g.V().Has(\"name\", \"DRUMS\").Repeat(__.In(\"followedBy\").Order().By(\"name\").Range(1, 4)).Times(2)", + "dotnet_parameterize": "g.V().Has(\"name\", \"DRUMS\").Repeat(__.In(\"followedBy\").Order().By(\"name\").Range(1, 4)).Times(2)", "go": "g.V().Has(\"name\", \"DRUMS\").Repeat(gremlingo.T__.In(\"followedBy\").Order().By(\"name\").Range(1, 4)).Times(2)", "groovy": "g.V().has('name', 'DRUMS').repeat(__.in('followedBy').order().by('name').range(1, 4)).times(2)", "java": "g.V().has(\"name\", \"DRUMS\").repeat(__.in(\"followedBy\").order().by(\"name\").range(1, 4)).times(2)", @@ -10563,6 +11217,7 @@ "canonical": "g.V().has('name', 'DRUMS').in('followedBy').order().by('name').range(1, 4).in('followedBy').order().by('name').range(1, 4)", "anonymized": "g.V().has(string0, string1).in(string2).order().by(string0).range(number0, number1).in(string2).order().by(string0).range(number0, number1)", "dotnet": "g.V().Has(\"name\", \"DRUMS\").In(\"followedBy\").Order().By(\"name\").Range(1, 4).In(\"followedBy\").Order().By(\"name\").Range(1, 4)", + "dotnet_parameterize": "g.V().Has(\"name\", \"DRUMS\").In(\"followedBy\").Order().By(\"name\").Range(1, 4).In(\"followedBy\").Order().By(\"name\").Range(1, 4)", "go": "g.V().Has(\"name\", \"DRUMS\").In(\"followedBy\").Order().By(\"name\").Range(1, 4).In(\"followedBy\").Order().By(\"name\").Range(1, 4)", "groovy": "g.V().has('name', 'DRUMS').in('followedBy').order().by('name').range(1, 4).in('followedBy').order().by('name').range(1, 4)", "java": "g.V().has(\"name\", \"DRUMS\").in(\"followedBy\").order().by(\"name\").range(1, 4).in(\"followedBy\").order().by(\"name\").range(1, 4)", @@ -10580,6 +11235,7 @@ "canonical": "g.V().choose(__.values('age').is(P.lte(30)), __.out().order().by('name').limit(1), __.out().order().by('name').limit(2))", "anonymized": "g.V().choose(__.values(string0).is(P.lte(number0)), __.out().order().by(string1).limit(number1), __.out().order().by(string1).limit(number2))", "dotnet": "g.V().Choose(__.Values(\"age\").Is(P.Lte(30)), __.Out().Order().By(\"name\").Limit(1), __.Out().Order().By(\"name\").Limit(2))", + "dotnet_parameterize": "g.V().Choose(__.Values(\"age\").Is(P.Lte(30)), __.Out().Order().By(\"name\").Limit(1), __.Out().Order().By(\"name\").Limit(2))", "go": "g.V().Choose(gremlingo.T__.Values(\"age\").Is(gremlingo.P.Lte(30)), gremlingo.T__.Out().Order().By(\"name\").Limit(1), gremlingo.T__.Out().Order().By(\"name\").Limit(2))", "groovy": "g.V().choose(__.values('age').is(P.lte(30)), __.out().order().by('name').limit(1), __.out().order().by('name').limit(2))", "java": "g.V().choose(__.values(\"age\").is(P.lte(30)), __.out().order().by(\"name\").limit(1), __.out().order().by(\"name\").limit(2))", @@ -10597,6 +11253,7 @@ "canonical": "g.V().choose(__.values('age').is(P.lte(30)), __.local(__.out().order().by('name').limit(1)), __.local(__.out().order().by('name').limit(2)))", "anonymized": "g.V().choose(__.values(string0).is(P.lte(number0)), __.local(__.out().order().by(string1).limit(number1)), __.local(__.out().order().by(string1).limit(number2)))", "dotnet": "g.V().Choose(__.Values(\"age\").Is(P.Lte(30)), __.Local(__.Out().Order().By(\"name\").Limit(1)), __.Local(__.Out().Order().By(\"name\").Limit(2)))", + "dotnet_parameterize": "g.V().Choose(__.Values(\"age\").Is(P.Lte(30)), __.Local(__.Out().Order().By(\"name\").Limit(1)), __.Local(__.Out().Order().By(\"name\").Limit(2)))", "go": "g.V().Choose(gremlingo.T__.Values(\"age\").Is(gremlingo.P.Lte(30)), gremlingo.T__.Local(gremlingo.T__.Out().Order().By(\"name\").Limit(1)), gremlingo.T__.Local(gremlingo.T__.Out().Order().By(\"name\").Limit(2)))", "groovy": "g.V().choose(__.values('age').is(P.lte(30)), __.local(__.out().order().by('name').limit(1)), __.local(__.out().order().by('name').limit(2)))", "java": "g.V().choose(__.values(\"age\").is(P.lte(30)), __.local(__.out().order().by(\"name\").limit(1)), __.local(__.out().order().by(\"name\").limit(2)))", @@ -10614,6 +11271,7 @@ "canonical": "g.V().has('name', 'HEY BO DIDDLEY').union(__.out('followedBy').order().by('name').limit(2), __.out('sungBy').order().by('name').limit(1)).union(__.out('followedBy').order().by('name').limit(2), __.out('sungBy').order().by('name').limit(1))", "anonymized": "g.V().has(string0, string1).union(__.out(string2).order().by(string0).limit(number0), __.out(string3).order().by(string0).limit(number1)).union(__.out(string2).order().by(string0).limit(number0), __.out(string3).order().by(string0).limit(number1))", "dotnet": "g.V().Has(\"name\", \"HEY BO DIDDLEY\").Union(__.Out(\"followedBy\").Order().By(\"name\").Limit(2), __.Out(\"sungBy\").Order().By(\"name\").Limit(1)).Union(__.Out(\"followedBy\").Order().By(\"name\").Limit(2), __.Out(\"sungBy\").Order().By(\"name\").Limit(1))", + "dotnet_parameterize": "g.V().Has(\"name\", \"HEY BO DIDDLEY\").Union(__.Out(\"followedBy\").Order().By(\"name\").Limit(2), __.Out(\"sungBy\").Order().By(\"name\").Limit(1)).Union(__.Out(\"followedBy\").Order().By(\"name\").Limit(2), __.Out(\"sungBy\").Order().By(\"name\").Limit(1))", "go": "g.V().Has(\"name\", \"HEY BO DIDDLEY\").Union(gremlingo.T__.Out(\"followedBy\").Order().By(\"name\").Limit(2), gremlingo.T__.Out(\"sungBy\").Order().By(\"name\").Limit(1)).Union(gremlingo.T__.Out(\"followedBy\").Order().By(\"name\").Limit(2), gremlingo.T__.Out(\"sungBy\").Order().By(\"name\").Limit(1))", "groovy": "g.V().has('name', 'HEY BO DIDDLEY').union(__.out('followedBy').order().by('name').limit(2), __.out('sungBy').order().by('name').limit(1)).union(__.out('followedBy').order().by('name').limit(2), __.out('sungBy').order().by('name').limit(1))", "java": "g.V().has(\"name\", \"HEY BO DIDDLEY\").union(__.out(\"followedBy\").order().by(\"name\").limit(2), __.out(\"sungBy\").order().by(\"name\").limit(1)).union(__.out(\"followedBy\").order().by(\"name\").limit(2), __.out(\"sungBy\").order().by(\"name\").limit(1))", @@ -10631,6 +11289,7 @@ "canonical": "g.V().has('name', 'HEY BO DIDDLEY').repeat(__.union(__.out('followedBy').order().by('name').limit(2), __.out('sungBy').order().by('name').limit(1))).times(2)", "anonymized": "g.V().has(string0, string1).repeat(__.union(__.out(string2).order().by(string0).limit(number0), __.out(string3).order().by(string0).limit(number1))).times(number0)", "dotnet": "g.V().Has(\"name\", \"HEY BO DIDDLEY\").Repeat(__.Union(__.Out(\"followedBy\").Order().By(\"name\").Limit(2), __.Out(\"sungBy\").Order().By(\"name\").Limit(1))).Times(2)", + "dotnet_parameterize": "g.V().Has(\"name\", \"HEY BO DIDDLEY\").Repeat(__.Union(__.Out(\"followedBy\").Order().By(\"name\").Limit(2), __.Out(\"sungBy\").Order().By(\"name\").Limit(1))).Times(2)", "go": "g.V().Has(\"name\", \"HEY BO DIDDLEY\").Repeat(gremlingo.T__.Union(gremlingo.T__.Out(\"followedBy\").Order().By(\"name\").Limit(2), gremlingo.T__.Out(\"sungBy\").Order().By(\"name\").Limit(1))).Times(2)", "groovy": "g.V().has('name', 'HEY BO DIDDLEY').repeat(__.union(__.out('followedBy').order().by('name').limit(2), __.out('sungBy').order().by('name').limit(1))).times(2)", "java": "g.V().has(\"name\", \"HEY BO DIDDLEY\").repeat(__.union(__.out(\"followedBy\").order().by(\"name\").limit(2), __.out(\"sungBy\").order().by(\"name\").limit(1))).times(2)", @@ -10648,6 +11307,7 @@ "canonical": "g.V().sample(1).by(\"age\").by(T.id)", "anonymized": "g.V().sample(number0).by(string0).by(T.id)", "dotnet": "g.V().Sample(1).By(\"age\").By(T.Id)", + "dotnet_parameterize": "g.V().Sample(1).By(\"age\").By(T.Id)", "go": "g.V().Sample(1).By(\"age\").By(gremlingo.T.Id)", "groovy": "g.V().sample(1).by(\"age\").by(T.id)", "java": "g.V().sample(1).by(\"age\").by(T.id)", @@ -10665,6 +11325,7 @@ "canonical": "g.E().sample(1)", "anonymized": "g.E().sample(number0)", "dotnet": "g.E().Sample(1)", + "dotnet_parameterize": "g.E().Sample(1)", "go": "g.E().Sample(1)", "groovy": "g.E().sample(1)", "java": "g.E().sample(1)", @@ -10682,6 +11343,7 @@ "canonical": "g.E().sample(2).by(\"weight\")", "anonymized": "g.E().sample(number0).by(string0)", "dotnet": "g.E().Sample(2).By(\"weight\")", + "dotnet_parameterize": "g.E().Sample(2).By(\"weight\")", "go": "g.E().Sample(2).By(\"weight\")", "groovy": "g.E().sample(2).by(\"weight\")", "java": "g.E().sample(2).by(\"weight\")", @@ -10699,6 +11361,7 @@ "canonical": "g.V().local(__.outE().sample(1).by(\"weight\"))", "anonymized": "g.V().local(__.outE().sample(number0).by(string0))", "dotnet": "g.V().Local(__.OutE().Sample(1).By(\"weight\"))", + "dotnet_parameterize": "g.V().Local(__.OutE().Sample(1).By(\"weight\"))", "go": "g.V().Local(gremlingo.T__.OutE().Sample(1).By(\"weight\"))", "groovy": "g.V().local(__.outE().sample(1).by(\"weight\"))", "java": "g.V().local(__.outE().sample(1).by(\"weight\"))", @@ -10716,6 +11379,7 @@ "canonical": "g.withStrategies(new SeedStrategy(seed:999999)).V().group().by(T.label).by(__.bothE().values(\"weight\").order().sample(2).fold()).unfold()", "anonymized": "g.withStrategies(new SeedStrategy(seed:number0)).V().group().by(T.label).by(__.bothE().values(string0).order().sample(number1).fold()).unfold()", "dotnet": "g.WithStrategies(new SeedStrategy(seed: 999999)).V().Group().By(T.Label).By(__.BothE().Values(\"weight\").Order().Sample(2).Fold()).Unfold()", + "dotnet_parameterize": "g.WithStrategies(new SeedStrategy(seed: 999999)).V().Group().By(T.Label).By(__.BothE().Values(\"weight\").Order().Sample(2).Fold()).Unfold()", "go": "g.WithStrategies(gremlingo.SeedStrategy(gremlingo.SeedStrategyConfig{Seed: 999999})).V().Group().By(gremlingo.T.Label).By(gremlingo.T__.BothE().Values(\"weight\").Order().Sample(2).Fold()).Unfold()", "groovy": "g.withStrategies(new SeedStrategy(seed:999999)).V().group().by(T.label).by(__.bothE().values(\"weight\").order().sample(2).fold()).unfold()", "java": "g.withStrategies(SeedStrategy.build().seed(999999).create()).V().group().by(T.label).by(__.bothE().values(\"weight\").order().sample(2).fold()).unfold()", @@ -10733,6 +11397,7 @@ "canonical": "g.withStrategies(new SeedStrategy(seed:999999)).V().group().by(T.label).by(__.bothE().values(\"weight\").order().fold().sample(Scope.local, 5)).unfold()", "anonymized": "g.withStrategies(new SeedStrategy(seed:number0)).V().group().by(T.label).by(__.bothE().values(string0).order().fold().sample(Scope.local, number1)).unfold()", "dotnet": "g.WithStrategies(new SeedStrategy(seed: 999999)).V().Group().By(T.Label).By(__.BothE().Values(\"weight\").Order().Fold().Sample(Scope.Local, 5)).Unfold()", + "dotnet_parameterize": "g.WithStrategies(new SeedStrategy(seed: 999999)).V().Group().By(T.Label).By(__.BothE().Values(\"weight\").Order().Fold().Sample(Scope.Local, 5)).Unfold()", "go": "g.WithStrategies(gremlingo.SeedStrategy(gremlingo.SeedStrategyConfig{Seed: 999999})).V().Group().By(gremlingo.T.Label).By(gremlingo.T__.BothE().Values(\"weight\").Order().Fold().Sample(gremlingo.Scope.Local, 5)).Unfold()", "groovy": "g.withStrategies(new SeedStrategy(seed:999999)).V().group().by(T.label).by(__.bothE().values(\"weight\").order().fold().sample(Scope.local, 5)).unfold()", "java": "g.withStrategies(SeedStrategy.build().seed(999999).create()).V().group().by(T.label).by(__.bothE().values(\"weight\").order().fold().sample(Scope.local, 5)).unfold()", @@ -10750,6 +11415,7 @@ "canonical": "g.withStrategies(new SeedStrategy(seed:999999)).V().order().by(T.label, Order.desc).sample(1).by(\"age\")", "anonymized": "g.withStrategies(new SeedStrategy(seed:number0)).V().order().by(T.label, Order.desc).sample(number1).by(string0)", "dotnet": "g.WithStrategies(new SeedStrategy(seed: 999999)).V().Order().By(T.Label, Order.Desc).Sample(1).By(\"age\")", + "dotnet_parameterize": "g.WithStrategies(new SeedStrategy(seed: 999999)).V().Order().By(T.Label, Order.Desc).Sample(1).By(\"age\")", "go": "g.WithStrategies(gremlingo.SeedStrategy(gremlingo.SeedStrategyConfig{Seed: 999999})).V().Order().By(gremlingo.T.Label, gremlingo.Order.Desc).Sample(1).By(\"age\")", "groovy": "g.withStrategies(new SeedStrategy(seed:999999)).V().order().by(T.label, Order.desc).sample(1).by(\"age\")", "java": "g.withStrategies(SeedStrategy.build().seed(999999).create()).V().order().by(T.label, Order.desc).sample(1).by(\"age\")", @@ -10767,6 +11433,7 @@ "canonical": "g.V(vid1).values(\"age\").sample(Scope.local, 5)", "anonymized": "g.V(vid1).values(string0).sample(Scope.local, number0)", "dotnet": "g.V(vid1).Values(\"age\").Sample(Scope.Local, 5)", + "dotnet_parameterize": "g.V(vid1).Values(\"age\").Sample(Scope.Local, 5)", "go": "g.V(vid1).Values(\"age\").Sample(gremlingo.Scope.Local, 5)", "groovy": "g.V(vid1).values(\"age\").sample(Scope.local, 5)", "java": "g.V(vid1).values(\"age\").sample(Scope.local, 5)", @@ -10784,6 +11451,7 @@ "canonical": "g.V().repeat(__.sample(2)).times(2)", "anonymized": "g.V().repeat(__.sample(number0)).times(number0)", "dotnet": "g.V().Repeat(__.Sample(2)).Times(2)", + "dotnet_parameterize": "g.V().Repeat(__.Sample(2)).Times(2)", "go": "g.V().Repeat(gremlingo.T__.Sample(2)).Times(2)", "groovy": "g.V().repeat(__.sample(2)).times(2)", "java": "g.V().repeat(__.sample(2)).times(2)", @@ -10801,6 +11469,7 @@ "canonical": "g.V().sample(2).sample(2)", "anonymized": "g.V().sample(number0).sample(number0)", "dotnet": "g.V().Sample(2).Sample(2)", + "dotnet_parameterize": "g.V().Sample(2).Sample(2)", "go": "g.V().Sample(2).Sample(2)", "groovy": "g.V().sample(2).sample(2)", "java": "g.V().sample(2).sample(2)", @@ -10818,6 +11487,7 @@ "canonical": "g.V(vid3).repeat(__.out().order().by(\"performances\").sample(2).aggregate('x')).until(__.loops().is(2)).cap('x').unfold()", "anonymized": "g.V(vid3).repeat(__.out().order().by(string0).sample(number0).aggregate(string1)).until(__.loops().is(number0)).cap(string1).unfold()", "dotnet": "g.V(vid3).Repeat(__.Out().Order().By(\"performances\").Sample(2).Aggregate(\"x\")).Until(__.Loops().Is(2)).Cap(\"x\").Unfold()", + "dotnet_parameterize": "g.V(vid3).Repeat(__.Out().Order().By(\"performances\").Sample(2).Aggregate(\"x\")).Until(__.Loops().Is(2)).Cap(\"x\").Unfold()", "go": "g.V(vid3).Repeat(gremlingo.T__.Out().Order().By(\"performances\").Sample(2).Aggregate(\"x\")).Until(gremlingo.T__.Loops().Is(2)).Cap(\"x\").Unfold()", "groovy": "g.V(vid3).repeat(__.out().order().by(\"performances\").sample(2).aggregate('x')).until(__.loops().is(2)).cap('x').unfold()", "java": "g.V(vid3).repeat(__.out().order().by(\"performances\").sample(2).aggregate(\"x\")).until(__.loops().is(2)).cap(\"x\").unfold()", @@ -10835,6 +11505,7 @@ "canonical": "g.V(vid3).out().order().by(\"performances\").sample(2).aggregate('x').out().order().by(\"performances\").sample(2).aggregate('x').cap('x').unfold()", "anonymized": "g.V(vid3).out().order().by(string0).sample(number0).aggregate(string1).out().order().by(string0).sample(number0).aggregate(string1).cap(string1).unfold()", "dotnet": "g.V(vid3).Out().Order().By(\"performances\").Sample(2).Aggregate(\"x\").Out().Order().By(\"performances\").Sample(2).Aggregate(\"x\").Cap(\"x\").Unfold()", + "dotnet_parameterize": "g.V(vid3).Out().Order().By(\"performances\").Sample(2).Aggregate(\"x\").Out().Order().By(\"performances\").Sample(2).Aggregate(\"x\").Cap(\"x\").Unfold()", "go": "g.V(vid3).Out().Order().By(\"performances\").Sample(2).Aggregate(\"x\").Out().Order().By(\"performances\").Sample(2).Aggregate(\"x\").Cap(\"x\").Unfold()", "groovy": "g.V(vid3).out().order().by(\"performances\").sample(2).aggregate('x').out().order().by(\"performances\").sample(2).aggregate('x').cap('x').unfold()", "java": "g.V(vid3).out().order().by(\"performances\").sample(2).aggregate(\"x\").out().order().by(\"performances\").sample(2).aggregate(\"x\").cap(\"x\").unfold()", @@ -10852,6 +11523,7 @@ "canonical": "g.V(vid1).out(\"created\").in(\"created\").simplePath()", "anonymized": "g.V(vid1).out(string0).in(string0).simplePath()", "dotnet": "g.V(vid1).Out(\"created\").In(\"created\").SimplePath()", + "dotnet_parameterize": "g.V(vid1).Out(\"created\").In(\"created\").SimplePath()", "go": "g.V(vid1).Out(\"created\").In(\"created\").SimplePath()", "groovy": "g.V(vid1).out(\"created\").in(\"created\").simplePath()", "java": "g.V(vid1).out(\"created\").in(\"created\").simplePath()", @@ -10869,6 +11541,7 @@ "canonical": "g.V().repeat(__.both().simplePath()).times(3).path()", "anonymized": "g.V().repeat(__.both().simplePath()).times(number0).path()", "dotnet": "g.V().Repeat(__.Both().SimplePath()).Times(3).Path()", + "dotnet_parameterize": "g.V().Repeat(__.Both().SimplePath()).Times(3).Path()", "go": "g.V().Repeat(gremlingo.T__.Both().SimplePath()).Times(3).Path()", "groovy": "g.V().repeat(__.both().simplePath()).times(3).path()", "java": "g.V().repeat(__.both().simplePath()).times(3).path()", @@ -10886,6 +11559,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").simplePath().by(T.label).from(\"b\").to(\"c\").path().by(\"name\")", "anonymized": "g.V().as(string0).out().as(string1).out().as(string2).simplePath().by(T.label).from(string1).to(string2).path().by(string3)", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").SimplePath().By(T.Label).From(\"b\").To(\"c\").Path().By(\"name\")", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").SimplePath().By(T.Label).From(\"b\").To(\"c\").Path().By(\"name\")", "go": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").SimplePath().By(gremlingo.T.Label).From(\"b\").To(\"c\").Path().By(\"name\")", "groovy": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").simplePath().by(T.label).from(\"b\").to(\"c\").path().by(\"name\")", "java": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").simplePath().by(T.label).from(\"b\").to(\"c\").path().by(\"name\")", @@ -10903,6 +11577,7 @@ "canonical": "g.inject(0).V().both().coalesce(__.has('name', 'marko').both(), __.constant(0)).simplePath().path()", "anonymized": "g.inject(number0).V().both().coalesce(__.has(string0, string1).both(), __.constant(number0)).simplePath().path()", "dotnet": "g.Inject(0).V().Both().Coalesce(__.Has(\"name\", \"marko\").Both(), __.Constant(0)).SimplePath().Path()", + "dotnet_parameterize": "g.Inject(0).V().Both().Coalesce(__.Has(\"name\", \"marko\").Both(), __.Constant(0)).SimplePath().Path()", "go": "g.Inject(0).V().Both().Coalesce(gremlingo.T__.Has(\"name\", \"marko\").Both(), gremlingo.T__.Constant(0)).SimplePath().Path()", "groovy": "g.inject(0).V().both().coalesce(__.has('name', 'marko').both(), __.constant(0)).simplePath().path()", "java": "g.inject(0).V().both().coalesce(__.has(\"name\", \"marko\").both(), __.constant(0)).simplePath().path()", @@ -10920,6 +11595,7 @@ "canonical": "g.V().both().as('a').both().as('b').simplePath().path().by('age').from('a').to('b')", "anonymized": "g.V().both().as(string0).both().as(string1).simplePath().path().by(string2).from(string0).to(string1)", "dotnet": "g.V().Both().As(\"a\").Both().As(\"b\").SimplePath().Path().By(\"age\").From(\"a\").To(\"b\")", + "dotnet_parameterize": "g.V().Both().As(\"a\").Both().As(\"b\").SimplePath().Path().By(\"age\").From(\"a\").To(\"b\")", "go": "g.V().Both().As(\"a\").Both().As(\"b\").SimplePath().Path().By(\"age\").From(\"a\").To(\"b\")", "groovy": "g.V().both().as('a').both().as('b').simplePath().path().by('age').from('a').to('b')", "java": "g.V().both().as(\"a\").both().as(\"b\").simplePath().path().by(\"age\").from(\"a\").to(\"b\")", @@ -10937,6 +11613,7 @@ "canonical": "g.V().values(\"name\").order().tail(Scope.global, 2)", "anonymized": "g.V().values(string0).order().tail(Scope.global, number0)", "dotnet": "g.V().Values(\"name\").Order().Tail(Scope.Global, 2)", + "dotnet_parameterize": "g.V().Values(\"name\").Order().Tail(Scope.Global, 2)", "go": "g.V().Values(\"name\").Order().Tail(gremlingo.Scope.Global, 2)", "groovy": "g.V().values(\"name\").order().tail(Scope.global, 2)", "java": "g.V().values(\"name\").order().tail(Scope.global, 2)", @@ -10954,6 +11631,7 @@ "canonical": "g.V().values(\"name\").order().tail(2)", "anonymized": "g.V().values(string0).order().tail(number0)", "dotnet": "g.V().Values(\"name\").Order().Tail(2)", + "dotnet_parameterize": "g.V().Values(\"name\").Order().Tail(2)", "go": "g.V().Values(\"name\").Order().Tail(2)", "groovy": "g.V().values(\"name\").order().tail(2)", "java": "g.V().values(\"name\").order().tail(2)", @@ -10971,6 +11649,7 @@ "canonical": "g.V().values(\"name\").order().tail(xx1)", "anonymized": "g.V().values(string0).order().tail(xx1)", "dotnet": "g.V().Values(\"name\").Order().Tail((long) xx1)", + "dotnet_parameterize": "g.V().Values(\"name\").Order().Tail(new GValue(\"xx1\", (long) xx1))", "go": "g.V().Values(\"name\").Order().Tail(xx1)", "groovy": "g.V().values(\"name\").order().tail(xx1)", "java": "g.V().values(\"name\").order().tail(xx1)", @@ -10988,6 +11667,7 @@ "canonical": "g.V().values(\"name\").order().tail()", "anonymized": "g.V().values(string0).order().tail()", "dotnet": "g.V().Values(\"name\").Order().Tail()", + "dotnet_parameterize": "g.V().Values(\"name\").Order().Tail()", "go": "g.V().Values(\"name\").Order().Tail()", "groovy": "g.V().values(\"name\").order().tail()", "java": "g.V().values(\"name\").order().tail()", @@ -11005,6 +11685,7 @@ "canonical": "g.V().values(\"name\").order().tail(7)", "anonymized": "g.V().values(string0).order().tail(number0)", "dotnet": "g.V().Values(\"name\").Order().Tail(7)", + "dotnet_parameterize": "g.V().Values(\"name\").Order().Tail(7)", "go": "g.V().Values(\"name\").Order().Tail(7)", "groovy": "g.V().values(\"name\").order().tail(7)", "java": "g.V().values(\"name\").order().tail(7)", @@ -11022,6 +11703,7 @@ "canonical": "g.V().repeat(__.both()).times(3).tail(7)", "anonymized": "g.V().repeat(__.both()).times(number0).tail(number1)", "dotnet": "g.V().Repeat(__.Both()).Times(3).Tail(7)", + "dotnet_parameterize": "g.V().Repeat(__.Both()).Times(3).Tail(7)", "go": "g.V().Repeat(gremlingo.T__.Both()).Times(3).Tail(7)", "groovy": "g.V().repeat(__.both()).times(3).tail(7)", "java": "g.V().repeat(__.both()).times(3).tail(7)", @@ -11039,6 +11721,7 @@ "canonical": "g.V().repeat(__.in().out()).times(3).tail(7).count()", "anonymized": "g.V().repeat(__.in().out()).times(number0).tail(number1).count()", "dotnet": "g.V().Repeat(__.In().Out()).Times(3).Tail(7).Count()", + "dotnet_parameterize": "g.V().Repeat(__.In().Out()).Times(3).Tail(7).Count()", "go": "g.V().Repeat(gremlingo.T__.In().Out()).Times(3).Tail(7).Count()", "groovy": "g.V().repeat(__.in().out()).times(3).tail(7).count()", "java": "g.V().repeat(__.in().out()).times(3).tail(7).count()", @@ -11056,6 +11739,7 @@ "canonical": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(\"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local, 1).unfold()", "anonymized": "g.V().as(string0).out().as(string0).out().as(string0).select(string0).by(__.unfold().values(string1).fold()).tail(Scope.local, number0).unfold()", "dotnet": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(\"a\").By(__.Unfold().Values(\"name\").Fold()).Tail(Scope.Local, 1).Unfold()", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(\"a\").By(__.Unfold().Values(\"name\").Fold()).Tail(Scope.Local, 1).Unfold()", "go": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(\"a\").By(gremlingo.T__.Unfold().Values(\"name\").Fold()).Tail(gremlingo.Scope.Local, 1).Unfold()", "groovy": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(\"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local, 1).unfold()", "java": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(\"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local, 1).unfold()", @@ -11073,6 +11757,7 @@ "canonical": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(\"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local).unfold()", "anonymized": "g.V().as(string0).out().as(string0).out().as(string0).select(string0).by(__.unfold().values(string1).fold()).tail(Scope.local).unfold()", "dotnet": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(\"a\").By(__.Unfold().Values(\"name\").Fold()).Tail(Scope.Local).Unfold()", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(\"a\").By(__.Unfold().Values(\"name\").Fold()).Tail(Scope.Local).Unfold()", "go": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(\"a\").By(gremlingo.T__.Unfold().Values(\"name\").Fold()).Tail(gremlingo.Scope.Local).Unfold()", "groovy": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(\"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local).unfold()", "java": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(\"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local).unfold()", @@ -11090,6 +11775,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").tail(Scope.local, 2)", "anonymized": "g.V().as(string0).out().as(string1).out().as(string2).select(string0, string1, string2).by(string3).tail(Scope.local, number0)", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Tail(Scope.Local, 2)", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Tail(Scope.Local, 2)", "go": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Tail(gremlingo.Scope.Local, 2)", "groovy": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").tail(Scope.local, 2)", "java": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").tail(Scope.local, 2)", @@ -11107,6 +11793,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").tail(Scope.local, xx1)", "anonymized": "g.V().as(string0).out().as(string1).out().as(string2).select(string0, string1, string2).by(string3).tail(Scope.local, xx1)", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Tail(Scope.Local, (long) xx1)", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Tail(Scope.Local, new GValue(\"xx1\", (long) xx1))", "go": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Tail(gremlingo.Scope.Local, xx1)", "groovy": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").tail(Scope.local, xx1)", "java": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").tail(Scope.local, xx1)", @@ -11124,6 +11811,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").tail(Scope.local, 1)", "anonymized": "g.V().as(string0).out().as(string1).out().as(string2).select(string0, string1, string2).by(string3).tail(Scope.local, number0)", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Tail(Scope.Local, 1)", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Tail(Scope.Local, 1)", "go": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Select(\"a\", \"b\", \"c\").By(\"name\").Tail(gremlingo.Scope.Local, 1)", "groovy": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").tail(Scope.local, 1)", "java": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").select(\"a\", \"b\", \"c\").by(\"name\").tail(Scope.local, 1)", @@ -11141,6 +11829,7 @@ "canonical": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local, 1).unfold()", "anonymized": "g.V().as(string0).out().as(string0).out().as(string0).select(Pop.mixed, string0).by(__.unfold().values(string1).fold()).tail(Scope.local, number0).unfold()", "dotnet": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(Pop.Mixed, \"a\").By(__.Unfold().Values(\"name\").Fold()).Tail(Scope.Local, 1).Unfold()", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(Pop.Mixed, \"a\").By(__.Unfold().Values(\"name\").Fold()).Tail(Scope.Local, 1).Unfold()", "go": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(gremlingo.Pop.Mixed, \"a\").By(gremlingo.T__.Unfold().Values(\"name\").Fold()).Tail(gremlingo.Scope.Local, 1).Unfold()", "groovy": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local, 1).unfold()", "java": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local, 1).unfold()", @@ -11158,6 +11847,7 @@ "canonical": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local).unfold()", "anonymized": "g.V().as(string0).out().as(string0).out().as(string0).select(Pop.mixed, string0).by(__.unfold().values(string1).fold()).tail(Scope.local).unfold()", "dotnet": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(Pop.Mixed, \"a\").By(__.Unfold().Values(\"name\").Fold()).Tail(Scope.Local).Unfold()", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(Pop.Mixed, \"a\").By(__.Unfold().Values(\"name\").Fold()).Tail(Scope.Local).Unfold()", "go": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(gremlingo.Pop.Mixed, \"a\").By(gremlingo.T__.Unfold().Values(\"name\").Fold()).Tail(gremlingo.Scope.Local).Unfold()", "groovy": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local).unfold()", "java": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local).unfold()", @@ -11175,6 +11865,7 @@ "canonical": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.limit(Scope.local, 0)).tail(Scope.local, 1)", "anonymized": "g.V().as(string0).out().as(string0).out().as(string0).select(Pop.mixed, string0).by(__.limit(Scope.local, number0)).tail(Scope.local, number1)", "dotnet": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(Pop.Mixed, \"a\").By(__.Limit(Scope.Local, 0)).Tail(Scope.Local, 1)", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(Pop.Mixed, \"a\").By(__.Limit(Scope.Local, 0)).Tail(Scope.Local, 1)", "go": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(gremlingo.Pop.Mixed, \"a\").By(gremlingo.T__.Limit(gremlingo.Scope.Local, 0)).Tail(gremlingo.Scope.Local, 1)", "groovy": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.limit(Scope.local, 0)).tail(Scope.local, 1)", "java": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.limit(Scope.local, 0)).tail(Scope.local, 1)", @@ -11192,6 +11883,7 @@ "canonical": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local, 2)", "anonymized": "g.V().as(string0).out().as(string0).out().as(string0).select(Pop.mixed, string0).by(__.unfold().values(string1).fold()).tail(Scope.local, number0)", "dotnet": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(Pop.Mixed, \"a\").By(__.Unfold().Values(\"name\").Fold()).Tail(Scope.Local, 2)", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(Pop.Mixed, \"a\").By(__.Unfold().Values(\"name\").Fold()).Tail(Scope.Local, 2)", "go": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(gremlingo.Pop.Mixed, \"a\").By(gremlingo.T__.Unfold().Values(\"name\").Fold()).Tail(gremlingo.Scope.Local, 2)", "groovy": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local, 2)", "java": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.unfold().values(\"name\").fold()).tail(Scope.local, 2)", @@ -11209,6 +11901,7 @@ "canonical": "g.V(vid1).values(\"age\").tail(Scope.local, 50)", "anonymized": "g.V(vid1).values(string0).tail(Scope.local, number0)", "dotnet": "g.V(vid1).Values(\"age\").Tail(Scope.Local, 50)", + "dotnet_parameterize": "g.V(vid1).Values(\"age\").Tail(Scope.Local, 50)", "go": "g.V(vid1).Values(\"age\").Tail(gremlingo.Scope.Local, 50)", "groovy": "g.V(vid1).values(\"age\").tail(Scope.local, 50)", "java": "g.V(vid1).values(\"age\").tail(Scope.local, 50)", @@ -11226,6 +11919,7 @@ "canonical": "g.inject([1, 2, 3]).tail(Scope.local, 1)", "anonymized": "g.inject(list0).tail(Scope.local, number0)", "dotnet": "g.Inject(new List { 1, 2, 3 }).Tail(Scope.Local, 1)", + "dotnet_parameterize": "g.Inject(new List { 1, 2, 3 }).Tail(Scope.Local, 1)", "go": "g.Inject([]interface{}{1, 2, 3}).Tail(gremlingo.Scope.Local, 1)", "groovy": "g.inject([1, 2, 3]).tail(Scope.local, 1)", "java": "g.inject(new ArrayList() {{ add(1); add(2); add(3); }}).tail(Scope.local, 1)", @@ -11243,6 +11937,7 @@ "canonical": "g.V(vid1).valueMap(\"name\").tail(Scope.local, 1)", "anonymized": "g.V(vid1).valueMap(string0).tail(Scope.local, number0)", "dotnet": "g.V(vid1).ValueMap(\"name\").Tail(Scope.Local, 1)", + "dotnet_parameterize": "g.V(vid1).ValueMap(\"name\").Tail(Scope.Local, 1)", "go": "g.V(vid1).ValueMap(\"name\").Tail(gremlingo.Scope.Local, 1)", "groovy": "g.V(vid1).valueMap(\"name\").tail(Scope.local, 1)", "java": "g.V(vid1).valueMap(\"name\").tail(Scope.local, 1)", @@ -11260,6 +11955,7 @@ "canonical": "g.inject([1, 2, 3]).tail(Scope.local, 1).unfold()", "anonymized": "g.inject(list0).tail(Scope.local, number0).unfold()", "dotnet": "g.Inject(new List { 1, 2, 3 }).Tail(Scope.Local, 1).Unfold()", + "dotnet_parameterize": "g.Inject(new List { 1, 2, 3 }).Tail(Scope.Local, 1).Unfold()", "go": "g.Inject([]interface{}{1, 2, 3}).Tail(gremlingo.Scope.Local, 1).Unfold()", "groovy": "g.inject([1, 2, 3]).tail(Scope.local, 1).unfold()", "java": "g.inject(new ArrayList() {{ add(1); add(2); add(3); }}).tail(Scope.local, 1).unfold()", @@ -11277,6 +11973,7 @@ "canonical": "g.inject([1, 2, 3], [4, 5, 6]).tail(Scope.local, 1)", "anonymized": "g.inject(list0, list1).tail(Scope.local, number0)", "dotnet": "g.Inject(new List { 1, 2, 3 }, new List { 4, 5, 6 }).Tail(Scope.Local, 1)", + "dotnet_parameterize": "g.Inject(new List { 1, 2, 3 }, new List { 4, 5, 6 }).Tail(Scope.Local, 1)", "go": "g.Inject([]interface{}{1, 2, 3}, []interface{}{4, 5, 6}).Tail(gremlingo.Scope.Local, 1)", "groovy": "g.inject([1, 2, 3], [4, 5, 6]).tail(Scope.local, 1)", "java": "g.inject(new ArrayList() {{ add(1); add(2); add(3); }}, new ArrayList() {{ add(4); add(5); add(6); }}).tail(Scope.local, 1)", @@ -11294,6 +11991,7 @@ "canonical": "g.inject([1, 2, 3, 4, 5]).tail(Scope.local, 2)", "anonymized": "g.inject(list0).tail(Scope.local, number0)", "dotnet": "g.Inject(new List { 1, 2, 3, 4, 5 }).Tail(Scope.Local, 2)", + "dotnet_parameterize": "g.Inject(new List { 1, 2, 3, 4, 5 }).Tail(Scope.Local, 2)", "go": "g.Inject([]interface{}{1, 2, 3, 4, 5}).Tail(gremlingo.Scope.Local, 2)", "groovy": "g.inject([1, 2, 3, 4, 5]).tail(Scope.local, 2)", "java": "g.inject(new ArrayList() {{ add(1); add(2); add(3); add(4); add(5); }}).tail(Scope.local, 2)", @@ -11311,6 +12009,7 @@ "canonical": "g.V().values(\"name\").is(P.typeOf(GType.STRING))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.STRING))", "dotnet": "g.V().Values(\"name\").Is(P.TypeOf(GType.String))", + "dotnet_parameterize": "g.V().Values(\"name\").Is(P.TypeOf(GType.String))", "go": "g.V().Values(\"name\").Is(gremlingo.P.TypeOf(gremlingo.GType.String))", "groovy": "g.V().values(\"name\").is(P.typeOf(GType.STRING))", "java": "g.V().values(\"name\").is(P.typeOf(GType.STRING))", @@ -11328,6 +12027,7 @@ "canonical": "g.V().values(\"name\").is(P.typeOf(\"String\"))", "anonymized": "g.V().values(string0).is(P.typeOf(string1))", "dotnet": "g.V().Values(\"name\").Is(P.TypeOf(\"String\"))", + "dotnet_parameterize": "g.V().Values(\"name\").Is(P.TypeOf(\"String\"))", "go": "g.V().Values(\"name\").Is(gremlingo.P.TypeOf(\"String\"))", "groovy": "g.V().values(\"name\").is(P.typeOf(\"String\"))", "java": "g.V().values(\"name\").is(P.typeOf(\"String\"))", @@ -11345,6 +12045,7 @@ "canonical": "g.V().has(\"name\", P.typeOf(GType.STRING)).values(\"name\")", "anonymized": "g.V().has(string0, P.typeOf(GType.STRING)).values(string0)", "dotnet": "g.V().Has(\"name\", P.TypeOf(GType.String)).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"name\", P.TypeOf(GType.String)).Values(\"name\")", "go": "g.V().Has(\"name\", gremlingo.P.TypeOf(gremlingo.GType.String)).Values(\"name\")", "groovy": "g.V().has(\"name\", P.typeOf(GType.STRING)).values(\"name\")", "java": "g.V().has(\"name\", P.typeOf(GType.STRING)).values(\"name\")", @@ -11362,6 +12063,7 @@ "canonical": "g.V().or(__.has(\"name\", P.typeOf(GType.STRING)), __.has(\"age\", P.typeOf(GType.INT))).values(\"name\")", "anonymized": "g.V().or(__.has(string0, P.typeOf(GType.STRING)), __.has(string1, P.typeOf(GType.INT))).values(string0)", "dotnet": "g.V().Or(__.Has(\"name\", P.TypeOf(GType.String)), __.Has(\"age\", P.TypeOf(GType.Int))).Values(\"name\")", + "dotnet_parameterize": "g.V().Or(__.Has(\"name\", P.TypeOf(GType.String)), __.Has(\"age\", P.TypeOf(GType.Int))).Values(\"name\")", "go": "g.V().Or(gremlingo.T__.Has(\"name\", gremlingo.P.TypeOf(gremlingo.GType.String)), gremlingo.T__.Has(\"age\", gremlingo.P.TypeOf(gremlingo.GType.Int))).Values(\"name\")", "groovy": "g.V().or(__.has(\"name\", P.typeOf(GType.STRING)), __.has(\"age\", P.typeOf(GType.INT))).values(\"name\")", "java": "g.V().or(__.has(\"name\", P.typeOf(GType.STRING)), __.has(\"age\", P.typeOf(GType.INT))).values(\"name\")", @@ -11379,6 +12081,7 @@ "canonical": "g.V().and(__.has(\"name\", P.typeOf(GType.STRING)), __.has(\"age\", P.typeOf(GType.INT))).values(\"name\")", "anonymized": "g.V().and(__.has(string0, P.typeOf(GType.STRING)), __.has(string1, P.typeOf(GType.INT))).values(string0)", "dotnet": "g.V().And(__.Has(\"name\", P.TypeOf(GType.String)), __.Has(\"age\", P.TypeOf(GType.Int))).Values(\"name\")", + "dotnet_parameterize": "g.V().And(__.Has(\"name\", P.TypeOf(GType.String)), __.Has(\"age\", P.TypeOf(GType.Int))).Values(\"name\")", "go": "g.V().And(gremlingo.T__.Has(\"name\", gremlingo.P.TypeOf(gremlingo.GType.String)), gremlingo.T__.Has(\"age\", gremlingo.P.TypeOf(gremlingo.GType.Int))).Values(\"name\")", "groovy": "g.V().and(__.has(\"name\", P.typeOf(GType.STRING)), __.has(\"age\", P.typeOf(GType.INT))).values(\"name\")", "java": "g.V().and(__.has(\"name\", P.typeOf(GType.STRING)), __.has(\"age\", P.typeOf(GType.INT))).values(\"name\")", @@ -11396,6 +12099,7 @@ "canonical": "g.V().not(__.has(\"age\", P.typeOf(GType.STRING))).values(\"name\")", "anonymized": "g.V().not(__.has(string0, P.typeOf(GType.STRING))).values(string1)", "dotnet": "g.V().Not(__.Has(\"age\", P.TypeOf(GType.String))).Values(\"name\")", + "dotnet_parameterize": "g.V().Not(__.Has(\"age\", P.TypeOf(GType.String))).Values(\"name\")", "go": "g.V().Not(gremlingo.T__.Has(\"age\", gremlingo.P.TypeOf(gremlingo.GType.String))).Values(\"name\")", "groovy": "g.V().not(__.has(\"age\", P.typeOf(GType.STRING))).values(\"name\")", "java": "g.V().not(__.has(\"age\", P.typeOf(GType.STRING))).values(\"name\")", @@ -11413,6 +12117,7 @@ "canonical": "g.V().values(\"age\").is(P.not(P.typeOf(GType.STRING)))", "anonymized": "g.V().values(string0).is(P.not(P.typeOf(GType.STRING)))", "dotnet": "g.V().Values(\"age\").Is(P.Not(P.TypeOf(GType.String)))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.Not(P.TypeOf(GType.String)))", "go": "g.V().Values(\"age\").Is(gremlingo.P.Not(gremlingo.P.TypeOf(gremlingo.GType.String)))", "groovy": "g.V().values(\"age\").is(P.not(P.typeOf(GType.STRING)))", "java": "g.V().values(\"age\").is(P.not(P.typeOf(GType.STRING)))", @@ -11430,6 +12135,7 @@ "canonical": "g.V().values(\"name\").is(P.typeOf(\"String\"))", "anonymized": "g.V().values(string0).is(P.typeOf(string1))", "dotnet": "g.V().Values(\"name\").Is(P.TypeOf(\"String\"))", + "dotnet_parameterize": "g.V().Values(\"name\").Is(P.TypeOf(\"String\"))", "go": "g.V().Values(\"name\").Is(gremlingo.P.TypeOf(\"String\"))", "groovy": "g.V().values(\"name\").is(P.typeOf(\"String\"))", "java": "g.V().values(\"name\").is(P.typeOf(\"String\"))", @@ -11447,6 +12153,7 @@ "canonical": "g.V().or(__.values(\"age\").is(P.typeOf(GType.INT)), __.values(\"name\").is(P.typeOf(GType.STRING))).count()", "anonymized": "g.V().or(__.values(string0).is(P.typeOf(GType.INT)), __.values(string1).is(P.typeOf(GType.STRING))).count()", "dotnet": "g.V().Or(__.Values(\"age\").Is(P.TypeOf(GType.Int)), __.Values(\"name\").Is(P.TypeOf(GType.String))).Count()", + "dotnet_parameterize": "g.V().Or(__.Values(\"age\").Is(P.TypeOf(GType.Int)), __.Values(\"name\").Is(P.TypeOf(GType.String))).Count()", "go": "g.V().Or(gremlingo.T__.Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Int)), gremlingo.T__.Values(\"name\").Is(gremlingo.P.TypeOf(gremlingo.GType.String))).Count()", "groovy": "g.V().or(__.values(\"age\").is(P.typeOf(GType.INT)), __.values(\"name\").is(P.typeOf(GType.STRING))).count()", "java": "g.V().or(__.values(\"age\").is(P.typeOf(GType.INT)), __.values(\"name\").is(P.typeOf(GType.STRING))).count()", @@ -11464,6 +12171,7 @@ "canonical": "g.V().where(__.values(\"name\").is(P.typeOf(GType.STRING))).values(\"name\")", "anonymized": "g.V().where(__.values(string0).is(P.typeOf(GType.STRING))).values(string0)", "dotnet": "g.V().Where(__.Values(\"name\").Is(P.TypeOf(GType.String))).Values(\"name\")", + "dotnet_parameterize": "g.V().Where(__.Values(\"name\").Is(P.TypeOf(GType.String))).Values(\"name\")", "go": "g.V().Where(gremlingo.T__.Values(\"name\").Is(gremlingo.P.TypeOf(gremlingo.GType.String))).Values(\"name\")", "groovy": "g.V().where(__.values(\"name\").is(P.typeOf(GType.STRING))).values(\"name\")", "java": "g.V().where(__.values(\"name\").is(P.typeOf(GType.STRING))).values(\"name\")", @@ -11481,6 +12189,7 @@ "canonical": "g.V().where(__.values(\"age\").is(P.typeOf(GType.STRING))).count()", "anonymized": "g.V().where(__.values(string0).is(P.typeOf(GType.STRING))).count()", "dotnet": "g.V().Where(__.Values(\"age\").Is(P.TypeOf(GType.String))).Count()", + "dotnet_parameterize": "g.V().Where(__.Values(\"age\").Is(P.TypeOf(GType.String))).Count()", "go": "g.V().Where(gremlingo.T__.Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.String))).Count()", "groovy": "g.V().where(__.values(\"age\").is(P.typeOf(GType.STRING))).count()", "java": "g.V().where(__.values(\"age\").is(P.typeOf(GType.STRING))).count()", @@ -11498,6 +12207,7 @@ "canonical": "g.V().where(__.not(__.values(\"age\").is(P.typeOf(GType.STRING)))).values(\"name\")", "anonymized": "g.V().where(__.not(__.values(string0).is(P.typeOf(GType.STRING)))).values(string1)", "dotnet": "g.V().Where(__.Not(__.Values(\"age\").Is(P.TypeOf(GType.String)))).Values(\"name\")", + "dotnet_parameterize": "g.V().Where(__.Not(__.Values(\"age\").Is(P.TypeOf(GType.String)))).Values(\"name\")", "go": "g.V().Where(gremlingo.T__.Not(gremlingo.T__.Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.String)))).Values(\"name\")", "groovy": "g.V().where(__.not(__.values(\"age\").is(P.typeOf(GType.STRING)))).values(\"name\")", "java": "g.V().where(__.not(__.values(\"age\").is(P.typeOf(GType.STRING)))).values(\"name\")", @@ -11515,6 +12225,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.NULL))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.NULL))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Null))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Null))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Null))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.NULL))", "java": "g.V().values(\"age\").is(P.typeOf(GType.NULL))", @@ -11532,6 +12243,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.BOOLEAN))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.BOOLEAN))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Boolean))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Boolean))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Boolean))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.BOOLEAN))", "java": "g.V().values(\"age\").is(P.typeOf(GType.BOOLEAN))", @@ -11549,6 +12261,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.CHAR))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.CHAR))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Char))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Char))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Char))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.CHAR))", "java": "g.V().values(\"age\").is(P.typeOf(GType.CHAR))", @@ -11566,6 +12279,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.BINARY))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.BINARY))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Binary))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Binary))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Binary))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.BINARY))", "java": "g.V().values(\"age\").is(P.typeOf(GType.BINARY))", @@ -11583,6 +12297,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.UUID))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.UUID))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.UUID))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.UUID))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.UUID))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.UUID))", "java": "g.V().values(\"age\").is(P.typeOf(GType.UUID))", @@ -11600,6 +12315,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.DATETIME))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DATETIME))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.DateTime))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.DateTime))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.DateTime))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.DATETIME))", "java": "g.V().values(\"age\").is(P.typeOf(GType.DATETIME))", @@ -11617,6 +12333,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.DURATION))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.DURATION))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Duration))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Duration))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Duration))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.DURATION))", "java": "g.V().values(\"age\").is(P.typeOf(GType.DURATION))", @@ -11634,6 +12351,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(\"non-registered-Name\"))", "anonymized": "g.V().values(string0).is(P.typeOf(string1))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(\"non-registered-Name\"))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(\"non-registered-Name\"))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(\"non-registered-Name\"))", "groovy": "g.V().values(\"age\").is(P.typeOf(\"non-registered-Name\"))", "java": "g.V().values(\"age\").is(P.typeOf(\"non-registered-Name\"))", @@ -11651,6 +12369,7 @@ "canonical": "g.inject(true).is(P.typeOf(GType.BOOLEAN))", "anonymized": "g.inject(boolean0).is(P.typeOf(GType.BOOLEAN))", "dotnet": "g.Inject(true).Is(P.TypeOf(GType.Boolean))", + "dotnet_parameterize": "g.Inject(true).Is(P.TypeOf(GType.Boolean))", "go": "g.Inject(true).Is(gremlingo.P.TypeOf(gremlingo.GType.Boolean))", "groovy": "g.inject(true).is(P.typeOf(GType.BOOLEAN))", "java": "g.inject(true).is(P.typeOf(GType.BOOLEAN))", @@ -11668,6 +12387,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").path().is(P.typeOf(GType.PATH))", "anonymized": "g.V().hasLabel(string0).values(string1).path().is(P.typeOf(GType.PATH))", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").Path().Is(P.TypeOf(GType.Path))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").Path().Is(P.TypeOf(GType.Path))", "go": "g.V().HasLabel(\"person\").Values(\"name\").Path().Is(gremlingo.P.TypeOf(gremlingo.GType.Path))", "groovy": "g.V().hasLabel(\"person\").values(\"name\").path().is(P.typeOf(GType.PATH))", "java": "g.V().hasLabel(\"person\").values(\"name\").path().is(P.typeOf(GType.PATH))", @@ -11685,6 +12405,7 @@ "canonical": "g.V().out().path().is(P.typeOf(GType.PATH)).count()", "anonymized": "g.V().out().path().is(P.typeOf(GType.PATH)).count()", "dotnet": "g.V().Out().Path().Is(P.TypeOf(GType.Path)).Count()", + "dotnet_parameterize": "g.V().Out().Path().Is(P.TypeOf(GType.Path)).Count()", "go": "g.V().Out().Path().Is(gremlingo.P.TypeOf(gremlingo.GType.Path)).Count()", "groovy": "g.V().out().path().is(P.typeOf(GType.PATH)).count()", "java": "g.V().out().path().is(P.typeOf(GType.PATH)).count()", @@ -11702,6 +12423,7 @@ "canonical": "g.V().has(\"name\", \"marko\").out().out().path().is(P.typeOf(GType.PATH))", "anonymized": "g.V().has(string0, string1).out().out().path().is(P.typeOf(GType.PATH))", "dotnet": "g.V().Has(\"name\", \"marko\").Out().Out().Path().Is(P.TypeOf(GType.Path))", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Out().Out().Path().Is(P.TypeOf(GType.Path))", "go": "g.V().Has(\"name\", \"marko\").Out().Out().Path().Is(gremlingo.P.TypeOf(gremlingo.GType.Path))", "groovy": "g.V().has(\"name\", \"marko\").out().out().path().is(P.typeOf(GType.PATH))", "java": "g.V().has(\"name\", \"marko\").out().out().path().is(P.typeOf(GType.PATH))", @@ -11719,6 +12441,7 @@ "canonical": "g.V().has(\"name\", \"marko\").out().tree().is(P.typeOf(GType.TREE)).count()", "anonymized": "g.V().has(string0, string1).out().tree().is(P.typeOf(GType.TREE)).count()", "dotnet": "g.V().Has(\"name\", \"marko\").Out().Tree().Is(P.TypeOf(GType.Tree)).Count()", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Out().Tree().Is(P.TypeOf(GType.Tree)).Count()", "go": "g.V().Has(\"name\", \"marko\").Out().Tree().Is(gremlingo.P.TypeOf(gremlingo.GType.Tree)).Count()", "groovy": "g.V().has(\"name\", \"marko\").out().tree().is(P.typeOf(GType.TREE)).count()", "java": "g.V().has(\"name\", \"marko\").out().tree().is(P.typeOf(GType.TREE)).count()", @@ -11736,6 +12459,7 @@ "canonical": "g.V().where(__.tree().is(P.typeOf(GType.TREE))).values(\"name\")", "anonymized": "g.V().where(__.tree().is(P.typeOf(GType.TREE))).values(string0)", "dotnet": "g.V().Where(__.Tree().Is(P.TypeOf(GType.Tree))).Values(\"name\")", + "dotnet_parameterize": "g.V().Where(__.Tree().Is(P.TypeOf(GType.Tree))).Values(\"name\")", "go": "g.V().Where(gremlingo.T__.Tree().Is(gremlingo.P.TypeOf(gremlingo.GType.Tree))).Values(\"name\")", "groovy": "g.V().where(__.tree().is(P.typeOf(GType.TREE))).values(\"name\")", "java": "g.V().where(__.tree().is(P.typeOf(GType.TREE))).values(\"name\")", @@ -11753,6 +12477,7 @@ "canonical": "g.V().outE(\"knows\").subgraph(\"sg\").cap(\"sg\").is(P.typeOf(GType.GRAPH)).count()", "anonymized": "g.V().outE(string0).subgraph(string1).cap(string1).is(P.typeOf(GType.GRAPH)).count()", "dotnet": "g.V().OutE(\"knows\").Subgraph(\"sg\").Cap(\"sg\").Is(P.TypeOf(GType.Graph)).Count()", + "dotnet_parameterize": "g.V().OutE(\"knows\").Subgraph(\"sg\").Cap(\"sg\").Is(P.TypeOf(GType.Graph)).Count()", "go": "g.V().OutE(\"knows\").Subgraph(\"sg\").Cap(\"sg\").Is(gremlingo.P.TypeOf(gremlingo.GType.Graph)).Count()", "groovy": "g.V().outE(\"knows\").subgraph(\"sg\").cap(\"sg\").is(P.typeOf(GType.GRAPH)).count()", "java": "g.V().outE(\"knows\").subgraph(\"sg\").cap(\"sg\").is(P.typeOf(GType.GRAPH)).count()", @@ -11770,6 +12495,7 @@ "canonical": "g.V().outE(\"knows\").subgraph(\"sg\").cap(\"sg\").is(P.not(P.typeOf(GType.GRAPH))).count()", "anonymized": "g.V().outE(string0).subgraph(string1).cap(string1).is(P.not(P.typeOf(GType.GRAPH))).count()", "dotnet": "g.V().OutE(\"knows\").Subgraph(\"sg\").Cap(\"sg\").Is(P.Not(P.TypeOf(GType.Graph))).Count()", + "dotnet_parameterize": "g.V().OutE(\"knows\").Subgraph(\"sg\").Cap(\"sg\").Is(P.Not(P.TypeOf(GType.Graph))).Count()", "go": "g.V().OutE(\"knows\").Subgraph(\"sg\").Cap(\"sg\").Is(gremlingo.P.Not(gremlingo.P.TypeOf(gremlingo.GType.Graph))).Count()", "groovy": "g.V().outE(\"knows\").subgraph(\"sg\").cap(\"sg\").is(P.not(P.typeOf(GType.GRAPH))).count()", "java": "g.V().outE(\"knows\").subgraph(\"sg\").cap(\"sg\").is(P.not(P.typeOf(GType.GRAPH))).count()", @@ -11787,6 +12513,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.PATH))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.PATH))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Path))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Path))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Path))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.PATH))", "java": "g.V().values(\"age\").is(P.typeOf(GType.PATH))", @@ -11804,6 +12531,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.TREE))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.TREE))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Tree))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Tree))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Tree))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.TREE))", "java": "g.V().values(\"age\").is(P.typeOf(GType.TREE))", @@ -11821,6 +12549,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.GRAPH))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.GRAPH))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.Graph))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.Graph))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.Graph))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.GRAPH))", "java": "g.V().values(\"age\").is(P.typeOf(GType.GRAPH))", @@ -11838,6 +12567,7 @@ "canonical": "g.V().values(\"age\").is(P.typeOf(GType.VPROPERTY))", "anonymized": "g.V().values(string0).is(P.typeOf(GType.VPROPERTY))", "dotnet": "g.V().Values(\"age\").Is(P.TypeOf(GType.VProperty))", + "dotnet_parameterize": "g.V().Values(\"age\").Is(P.TypeOf(GType.VProperty))", "go": "g.V().Values(\"age\").Is(gremlingo.P.TypeOf(gremlingo.GType.VProperty))", "groovy": "g.V().values(\"age\").is(P.typeOf(GType.VPROPERTY))", "java": "g.V().values(\"age\").is(P.typeOf(GType.VPROPERTY))", @@ -11855,6 +12585,7 @@ "canonical": "g.V().has(\"age\").as(\"a\").out().in().has(\"age\").as(\"b\").select(\"a\", \"b\").where(\"a\", P.eq(\"b\"))", "anonymized": "g.V().has(string0).as(string1).out().in().has(string0).as(string2).select(string1, string2).where(string1, P.eq(string2))", "dotnet": "g.V().Has(\"age\").As(\"a\").Out().In().Has(\"age\").As(\"b\").Select(\"a\", \"b\").Where(\"a\", P.Eq(\"b\"))", + "dotnet_parameterize": "g.V().Has(\"age\").As(\"a\").Out().In().Has(\"age\").As(\"b\").Select(\"a\", \"b\").Where(\"a\", P.Eq(\"b\"))", "go": "g.V().Has(\"age\").As(\"a\").Out().In().Has(\"age\").As(\"b\").Select(\"a\", \"b\").Where(\"a\", gremlingo.P.Eq(\"b\"))", "groovy": "g.V().has(\"age\").as(\"a\").out().in().has(\"age\").as(\"b\").select(\"a\", \"b\").where(\"a\", P.eq(\"b\"))", "java": "g.V().has(\"age\").as(\"a\").out().in().has(\"age\").as(\"b\").select(\"a\", \"b\").where(\"a\", P.eq(\"b\"))", @@ -11872,6 +12603,7 @@ "canonical": "g.V().has(\"age\").as(\"a\").out().in().has(\"age\").as(\"b\").select(\"a\", \"b\").where(\"a\", P.neq(\"b\"))", "anonymized": "g.V().has(string0).as(string1).out().in().has(string0).as(string2).select(string1, string2).where(string1, P.neq(string2))", "dotnet": "g.V().Has(\"age\").As(\"a\").Out().In().Has(\"age\").As(\"b\").Select(\"a\", \"b\").Where(\"a\", P.Neq(\"b\"))", + "dotnet_parameterize": "g.V().Has(\"age\").As(\"a\").Out().In().Has(\"age\").As(\"b\").Select(\"a\", \"b\").Where(\"a\", P.Neq(\"b\"))", "go": "g.V().Has(\"age\").As(\"a\").Out().In().Has(\"age\").As(\"b\").Select(\"a\", \"b\").Where(\"a\", gremlingo.P.Neq(\"b\"))", "groovy": "g.V().has(\"age\").as(\"a\").out().in().has(\"age\").as(\"b\").select(\"a\", \"b\").where(\"a\", P.neq(\"b\"))", "java": "g.V().has(\"age\").as(\"a\").out().in().has(\"age\").as(\"b\").select(\"a\", \"b\").where(\"a\", P.neq(\"b\"))", @@ -11889,6 +12621,7 @@ "canonical": "g.V().has(\"age\").as(\"a\").out().in().has(\"age\").as(\"b\").select(\"a\", \"b\").where(__.as(\"b\").has(\"name\", \"marko\"))", "anonymized": "g.V().has(string0).as(string1).out().in().has(string0).as(string2).select(string1, string2).where(__.as(string2).has(string3, string4))", "dotnet": "g.V().Has(\"age\").As(\"a\").Out().In().Has(\"age\").As(\"b\").Select(\"a\", \"b\").Where(__.As(\"b\").Has(\"name\", \"marko\"))", + "dotnet_parameterize": "g.V().Has(\"age\").As(\"a\").Out().In().Has(\"age\").As(\"b\").Select(\"a\", \"b\").Where(__.As(\"b\").Has(\"name\", \"marko\"))", "go": "g.V().Has(\"age\").As(\"a\").Out().In().Has(\"age\").As(\"b\").Select(\"a\", \"b\").Where(gremlingo.T__.As(\"b\").Has(\"name\", \"marko\"))", "groovy": "g.V().has(\"age\").as(\"a\").out().in().has(\"age\").as(\"b\").select(\"a\", \"b\").where(__.as(\"b\").has(\"name\", \"marko\"))", "java": "g.V().has(\"age\").as(\"a\").out().in().has(\"age\").as(\"b\").select(\"a\", \"b\").where(__.as(\"b\").has(\"name\", \"marko\"))", @@ -11906,6 +12639,7 @@ "canonical": "g.V().has(\"age\").as(\"a\").out().in().has(\"age\").as(\"b\").select(\"a\", \"b\").where(__.as(\"a\").out(\"knows\").as(\"b\"))", "anonymized": "g.V().has(string0).as(string1).out().in().has(string0).as(string2).select(string1, string2).where(__.as(string1).out(string3).as(string2))", "dotnet": "g.V().Has(\"age\").As(\"a\").Out().In().Has(\"age\").As(\"b\").Select(\"a\", \"b\").Where(__.As(\"a\").Out(\"knows\").As(\"b\"))", + "dotnet_parameterize": "g.V().Has(\"age\").As(\"a\").Out().In().Has(\"age\").As(\"b\").Select(\"a\", \"b\").Where(__.As(\"a\").Out(\"knows\").As(\"b\"))", "go": "g.V().Has(\"age\").As(\"a\").Out().In().Has(\"age\").As(\"b\").Select(\"a\", \"b\").Where(gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"))", "groovy": "g.V().has(\"age\").as(\"a\").out().in().has(\"age\").as(\"b\").select(\"a\", \"b\").where(__.as(\"a\").out(\"knows\").as(\"b\"))", "java": "g.V().has(\"age\").as(\"a\").out().in().has(\"age\").as(\"b\").select(\"a\", \"b\").where(__.as(\"a\").out(\"knows\").as(\"b\"))", @@ -11923,6 +12657,7 @@ "canonical": "g.V().as(\"a\").out(\"created\").where(__.as(\"a\").values(\"name\").is(\"josh\")).in(\"created\").values(\"name\")", "anonymized": "g.V().as(string0).out(string1).where(__.as(string0).values(string2).is(string3)).in(string1).values(string2)", "dotnet": "g.V().As(\"a\").Out(\"created\").Where(__.As(\"a\").Values(\"name\").Is(\"josh\")).In(\"created\").Values(\"name\")", + "dotnet_parameterize": "g.V().As(\"a\").Out(\"created\").Where(__.As(\"a\").Values(\"name\").Is(\"josh\")).In(\"created\").Values(\"name\")", "go": "g.V().As(\"a\").Out(\"created\").Where(gremlingo.T__.As(\"a\").Values(\"name\").Is(\"josh\")).In(\"created\").Values(\"name\")", "groovy": "g.V().as(\"a\").out(\"created\").where(__.as(\"a\").values(\"name\").is(\"josh\")).in(\"created\").values(\"name\")", "java": "g.V().as(\"a\").out(\"created\").where(__.as(\"a\").values(\"name\").is(\"josh\")).in(\"created\").values(\"name\")", @@ -11940,6 +12675,7 @@ "canonical": "g.withSideEffect(\"a\", [\"josh\", \"peter\"]).V(vid1).out(\"created\").in(\"created\").values(\"name\").where(P.within(\"a\"))", "anonymized": "g.withSideEffect(string0, list0).V(vid1).out(string1).in(string1).values(string2).where(P.within(string0))", "dotnet": "g.WithSideEffect(\"a\", new List { \"josh\", \"peter\" }).V(vid1).Out(\"created\").In(\"created\").Values(\"name\").Where(P.Within(\"a\"))", + "dotnet_parameterize": "g.WithSideEffect(\"a\", new List { \"josh\", \"peter\" }).V(vid1).Out(\"created\").In(\"created\").Values(\"name\").Where(P.Within(\"a\"))", "go": "g.WithSideEffect(\"a\", []interface{}{\"josh\", \"peter\"}).V(vid1).Out(\"created\").In(\"created\").Values(\"name\").Where(gremlingo.P.Within(\"a\"))", "groovy": "g.withSideEffect(\"a\", [\"josh\", \"peter\"]).V(vid1).out(\"created\").in(\"created\").values(\"name\").where(P.within(\"a\"))", "java": "g.withSideEffect(\"a\", new ArrayList() {{ add(\"josh\"); add(\"peter\"); }}).V(vid1).out(\"created\").in(\"created\").values(\"name\").where(P.within(\"a\"))", @@ -11957,6 +12693,7 @@ "canonical": "g.V(vid1).as(\"a\").out(\"created\").in(\"created\").as(\"b\").where(\"a\", P.neq(\"b\")).values(\"name\")", "anonymized": "g.V(vid1).as(string0).out(string1).in(string1).as(string2).where(string0, P.neq(string2)).values(string3)", "dotnet": "g.V(vid1).As(\"a\").Out(\"created\").In(\"created\").As(\"b\").Where(\"a\", P.Neq(\"b\")).Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Out(\"created\").In(\"created\").As(\"b\").Where(\"a\", P.Neq(\"b\")).Values(\"name\")", "go": "g.V(vid1).As(\"a\").Out(\"created\").In(\"created\").As(\"b\").Where(\"a\", gremlingo.P.Neq(\"b\")).Values(\"name\")", "groovy": "g.V(vid1).as(\"a\").out(\"created\").in(\"created\").as(\"b\").where(\"a\", P.neq(\"b\")).values(\"name\")", "java": "g.V(vid1).as(\"a\").out(\"created\").in(\"created\").as(\"b\").where(\"a\", P.neq(\"b\")).values(\"name\")", @@ -11974,6 +12711,7 @@ "canonical": "g.V(vid1).as(\"a\").out(\"created\").in(\"created\").as(\"b\").where(__.as(\"b\").out(\"created\").has(\"name\", \"ripple\")).values(\"age\", \"name\")", "anonymized": "g.V(vid1).as(string0).out(string1).in(string1).as(string2).where(__.as(string2).out(string1).has(string3, string4)).values(string5, string3)", "dotnet": "g.V(vid1).As(\"a\").Out(\"created\").In(\"created\").As(\"b\").Where(__.As(\"b\").Out(\"created\").Has(\"name\", \"ripple\")).Values(\"age\", \"name\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Out(\"created\").In(\"created\").As(\"b\").Where(__.As(\"b\").Out(\"created\").Has(\"name\", \"ripple\")).Values(\"age\", \"name\")", "go": "g.V(vid1).As(\"a\").Out(\"created\").In(\"created\").As(\"b\").Where(gremlingo.T__.As(\"b\").Out(\"created\").Has(\"name\", \"ripple\")).Values(\"age\", \"name\")", "groovy": "g.V(vid1).as(\"a\").out(\"created\").in(\"created\").as(\"b\").where(__.as(\"b\").out(\"created\").has(\"name\", \"ripple\")).values(\"age\", \"name\")", "java": "g.V(vid1).as(\"a\").out(\"created\").in(\"created\").as(\"b\").where(__.as(\"b\").out(\"created\").has(\"name\", \"ripple\")).values(\"age\", \"name\")", @@ -11991,6 +12729,7 @@ "canonical": "g.V(vid1).as(\"a\").out(\"created\").in(\"created\").where(P.eq(\"a\")).values(\"name\")", "anonymized": "g.V(vid1).as(string0).out(string1).in(string1).where(P.eq(string0)).values(string2)", "dotnet": "g.V(vid1).As(\"a\").Out(\"created\").In(\"created\").Where(P.Eq(\"a\")).Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Out(\"created\").In(\"created\").Where(P.Eq(\"a\")).Values(\"name\")", "go": "g.V(vid1).As(\"a\").Out(\"created\").In(\"created\").Where(gremlingo.P.Eq(\"a\")).Values(\"name\")", "groovy": "g.V(vid1).as(\"a\").out(\"created\").in(\"created\").where(P.eq(\"a\")).values(\"name\")", "java": "g.V(vid1).as(\"a\").out(\"created\").in(\"created\").where(P.eq(\"a\")).values(\"name\")", @@ -12008,6 +12747,7 @@ "canonical": "g.V(vid1).as(\"a\").out(\"created\").in(\"created\").where(P.neq(\"a\")).values(\"name\")", "anonymized": "g.V(vid1).as(string0).out(string1).in(string1).where(P.neq(string0)).values(string2)", "dotnet": "g.V(vid1).As(\"a\").Out(\"created\").In(\"created\").Where(P.Neq(\"a\")).Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Out(\"created\").In(\"created\").Where(P.Neq(\"a\")).Values(\"name\")", "go": "g.V(vid1).As(\"a\").Out(\"created\").In(\"created\").Where(gremlingo.P.Neq(\"a\")).Values(\"name\")", "groovy": "g.V(vid1).as(\"a\").out(\"created\").in(\"created\").where(P.neq(\"a\")).values(\"name\")", "java": "g.V(vid1).as(\"a\").out(\"created\").in(\"created\").where(P.neq(\"a\")).values(\"name\")", @@ -12025,6 +12765,7 @@ "canonical": "g.V(vid1).out().aggregate(\"x\").out().where(P.not(P.within(\"x\")))", "anonymized": "g.V(vid1).out().aggregate(string0).out().where(P.not(P.within(string0)))", "dotnet": "g.V(vid1).Out().Aggregate(\"x\").Out().Where(P.Not(P.Within(\"x\")))", + "dotnet_parameterize": "g.V(vid1).Out().Aggregate(\"x\").Out().Where(P.Not(P.Within(\"x\")))", "go": "g.V(vid1).Out().Aggregate(\"x\").Out().Where(gremlingo.P.Not(gremlingo.P.Within(\"x\")))", "groovy": "g.V(vid1).out().aggregate(\"x\").out().where(P.not(P.within(\"x\")))", "java": "g.V(vid1).out().aggregate(\"x\").out().where(P.not(P.within(\"x\")))", @@ -12042,6 +12783,7 @@ "canonical": "g.V(vid1).out().where(__.id().where(P.neq(\"a\")))", "anonymized": "g.V(vid1).out().where(__.id().where(P.neq(string0)))", "dotnet": "g.V(vid1).Out().Where(__.Id().Where(P.Neq(\"a\")))", + "dotnet_parameterize": "g.V(vid1).Out().Where(__.Id().Where(P.Neq(\"a\")))", "go": "g.V(vid1).Out().Where(gremlingo.T__.Id().Where(gremlingo.P.Neq(\"a\")))", "groovy": "g.V(vid1).out().where(__.id().where(P.neq(\"a\")))", "java": "g.V(vid1).out().where(__.id().where(P.neq(\"a\")))", @@ -12059,6 +12801,7 @@ "canonical": "g.V(vid1).repeat(__.bothE(\"created\").where(P.without(\"e\")).aggregate(\"e\").otherV()).emit().path()", "anonymized": "g.V(vid1).repeat(__.bothE(string0).where(P.without(string1)).aggregate(string1).otherV()).emit().path()", "dotnet": "g.V(vid1).Repeat(__.BothE(\"created\").Where(P.Without(\"e\")).Aggregate(\"e\").OtherV()).Emit().Path()", + "dotnet_parameterize": "g.V(vid1).Repeat(__.BothE(\"created\").Where(P.Without(\"e\")).Aggregate(\"e\").OtherV()).Emit().Path()", "go": "g.V(vid1).Repeat(gremlingo.T__.BothE(\"created\").Where(gremlingo.P.Without(\"e\")).Aggregate(\"e\").OtherV()).Emit().Path()", "groovy": "g.V(vid1).repeat(__.bothE(\"created\").where(P.without(\"e\")).aggregate(\"e\").otherV()).emit().path()", "java": "g.V(vid1).repeat(__.bothE(\"created\").where(P.without(\"e\")).aggregate(\"e\").otherV()).emit().path()", @@ -12076,6 +12819,7 @@ "canonical": "g.V().where(__.not(__.out(\"created\"))).values(\"name\")", "anonymized": "g.V().where(__.not(__.out(string0))).values(string1)", "dotnet": "g.V().Where(__.Not(__.Out(\"created\"))).Values(\"name\")", + "dotnet_parameterize": "g.V().Where(__.Not(__.Out(\"created\"))).Values(\"name\")", "go": "g.V().Where(gremlingo.T__.Not(gremlingo.T__.Out(\"created\"))).Values(\"name\")", "groovy": "g.V().where(__.not(__.out(\"created\"))).values(\"name\")", "java": "g.V().where(__.not(__.out(\"created\"))).values(\"name\")", @@ -12093,6 +12837,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").where(__.and(__.as(\"a\").out(\"knows\").as(\"b\"), __.or(__.as(\"b\").out(\"created\").has(\"name\", \"ripple\"), __.as(\"b\").in(\"knows\").count().is(P.not(P.eq(0)))))).select(\"a\", \"b\")", "anonymized": "g.V().as(string0).out().as(string1).where(__.and(__.as(string0).out(string2).as(string1), __.or(__.as(string1).out(string3).has(string4, string5), __.as(string1).in(string2).count().is(P.not(P.eq(number0)))))).select(string0, string1)", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Where(__.And(__.As(\"a\").Out(\"knows\").As(\"b\"), __.Or(__.As(\"b\").Out(\"created\").Has(\"name\", \"ripple\"), __.As(\"b\").In(\"knows\").Count().Is(P.Not(P.Eq(0)))))).Select(\"a\", \"b\")", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Where(__.And(__.As(\"a\").Out(\"knows\").As(\"b\"), __.Or(__.As(\"b\").Out(\"created\").Has(\"name\", \"ripple\"), __.As(\"b\").In(\"knows\").Count().Is(P.Not(P.Eq(0)))))).Select(\"a\", \"b\")", "go": "g.V().As(\"a\").Out().As(\"b\").Where(gremlingo.T__.And(gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"), gremlingo.T__.Or(gremlingo.T__.As(\"b\").Out(\"created\").Has(\"name\", \"ripple\"), gremlingo.T__.As(\"b\").In(\"knows\").Count().Is(gremlingo.P.Not(gremlingo.P.Eq(0)))))).Select(\"a\", \"b\")", "groovy": "g.V().as(\"a\").out().as(\"b\").where(__.and(__.as(\"a\").out(\"knows\").as(\"b\"), __.or(__.as(\"b\").out(\"created\").has(\"name\", \"ripple\"), __.as(\"b\").in(\"knows\").count().is(P.not(P.eq(0)))))).select(\"a\", \"b\")", "java": "g.V().as(\"a\").out().as(\"b\").where(__.and(__.as(\"a\").out(\"knows\").as(\"b\"), __.or(__.as(\"b\").out(\"created\").has(\"name\", \"ripple\"), __.as(\"b\").in(\"knows\").count().is(P.not(P.eq(0)))))).select(\"a\", \"b\")", @@ -12110,6 +12855,7 @@ "canonical": "g.V().where(__.out(\"created\").and().out(\"knows\").or().in(\"knows\")).values(\"name\")", "anonymized": "g.V().where(__.out(string0).and().out(string1).or().in(string1)).values(string2)", "dotnet": "g.V().Where(__.Out(\"created\").And().Out(\"knows\").Or().In(\"knows\")).Values(\"name\")", + "dotnet_parameterize": "g.V().Where(__.Out(\"created\").And().Out(\"knows\").Or().In(\"knows\")).Values(\"name\")", "go": "g.V().Where(gremlingo.T__.Out(\"created\").And().Out(\"knows\").Or().In(\"knows\")).Values(\"name\")", "groovy": "g.V().where(__.out(\"created\").and().out(\"knows\").or().in(\"knows\")).values(\"name\")", "java": "g.V().where(__.out(\"created\").and().out(\"knows\").or().in(\"knows\")).values(\"name\")", @@ -12127,6 +12873,7 @@ "canonical": "g.V().as(\"a\").out(\"created\").as(\"b\").where(__.and(__.as(\"b\").in(), __.not(__.as(\"a\").out(\"created\").has(\"name\", \"ripple\")))).select(\"a\", \"b\")", "anonymized": "g.V().as(string0).out(string1).as(string2).where(__.and(__.as(string2).in(), __.not(__.as(string0).out(string1).has(string3, string4)))).select(string0, string2)", "dotnet": "g.V().As(\"a\").Out(\"created\").As(\"b\").Where(__.And(__.As(\"b\").In(), __.Not(__.As(\"a\").Out(\"created\").Has(\"name\", \"ripple\")))).Select(\"a\", \"b\")", + "dotnet_parameterize": "g.V().As(\"a\").Out(\"created\").As(\"b\").Where(__.And(__.As(\"b\").In(), __.Not(__.As(\"a\").Out(\"created\").Has(\"name\", \"ripple\")))).Select(\"a\", \"b\")", "go": "g.V().As(\"a\").Out(\"created\").As(\"b\").Where(gremlingo.T__.And(gremlingo.T__.As(\"b\").In(), gremlingo.T__.Not(gremlingo.T__.As(\"a\").Out(\"created\").Has(\"name\", \"ripple\")))).Select(\"a\", \"b\")", "groovy": "g.V().as(\"a\").out(\"created\").as(\"b\").where(__.and(__.as(\"b\").in(), __.not(__.as(\"a\").out(\"created\").has(\"name\", \"ripple\")))).select(\"a\", \"b\")", "java": "g.V().as(\"a\").out(\"created\").as(\"b\").where(__.and(__.as(\"b\").in(), __.not(__.as(\"a\").out(\"created\").has(\"name\", \"ripple\")))).select(\"a\", \"b\")", @@ -12144,6 +12891,7 @@ "canonical": "g.V().as(\"a\").out(\"created\").as(\"b\").in(\"created\").as(\"c\").both(\"knows\").both(\"knows\").as(\"d\").where(\"c\", P.not(P.eq(\"a\").or(P.eq(\"d\")))).select(\"a\", \"b\", \"c\", \"d\")", "anonymized": "g.V().as(string0).out(string1).as(string2).in(string1).as(string3).both(string4).both(string4).as(string5).where(string3, P.not(P.eq(string0).or(P.eq(string5)))).select(string0, string2, string3, string5)", "dotnet": "g.V().As(\"a\").Out(\"created\").As(\"b\").In(\"created\").As(\"c\").Both(\"knows\").Both(\"knows\").As(\"d\").Where(\"c\", P.Not(P.Eq(\"a\").Or(P.Eq(\"d\")))).Select(\"a\", \"b\", \"c\", \"d\")", + "dotnet_parameterize": "g.V().As(\"a\").Out(\"created\").As(\"b\").In(\"created\").As(\"c\").Both(\"knows\").Both(\"knows\").As(\"d\").Where(\"c\", P.Not(P.Eq(\"a\").Or(P.Eq(\"d\")))).Select(\"a\", \"b\", \"c\", \"d\")", "go": "g.V().As(\"a\").Out(\"created\").As(\"b\").In(\"created\").As(\"c\").Both(\"knows\").Both(\"knows\").As(\"d\").Where(\"c\", gremlingo.P.Not(gremlingo.P.Eq(\"a\").Or(gremlingo.P.Eq(\"d\")))).Select(\"a\", \"b\", \"c\", \"d\")", "groovy": "g.V().as(\"a\").out(\"created\").as(\"b\").in(\"created\").as(\"c\").both(\"knows\").both(\"knows\").as(\"d\").where(\"c\", P.not(P.eq(\"a\").or(P.eq(\"d\")))).select(\"a\", \"b\", \"c\", \"d\")", "java": "g.V().as(\"a\").out(\"created\").as(\"b\").in(\"created\").as(\"c\").both(\"knows\").both(\"knows\").as(\"d\").where(\"c\", P.not(P.eq(\"a\").or(P.eq(\"d\")))).select(\"a\", \"b\", \"c\", \"d\")", @@ -12161,6 +12909,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").where(__.as(\"b\").in().count().is(P.eq(3)).or().where(__.as(\"b\").out(\"created\").and().as(\"b\").has(T.label, \"person\"))).select(\"a\", \"b\")", "anonymized": "g.V().as(string0).out().as(string1).where(__.as(string1).in().count().is(P.eq(number0)).or().where(__.as(string1).out(string2).and().as(string1).has(T.label, string3))).select(string0, string1)", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Where(__.As(\"b\").In().Count().Is(P.Eq(3)).Or().Where(__.As(\"b\").Out(\"created\").And().As(\"b\").Has(T.Label, \"person\"))).Select(\"a\", \"b\")", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Where(__.As(\"b\").In().Count().Is(P.Eq(3)).Or().Where(__.As(\"b\").Out(\"created\").And().As(\"b\").Has(T.Label, \"person\"))).Select(\"a\", \"b\")", "go": "g.V().As(\"a\").Out().As(\"b\").Where(gremlingo.T__.As(\"b\").In().Count().Is(gremlingo.P.Eq(3)).Or().Where(gremlingo.T__.As(\"b\").Out(\"created\").And().As(\"b\").Has(gremlingo.T.Label, \"person\"))).Select(\"a\", \"b\")", "groovy": "g.V().as(\"a\").out().as(\"b\").where(__.as(\"b\").in().count().is(P.eq(3)).or().where(__.as(\"b\").out(\"created\").and().as(\"b\").has(T.label, \"person\"))).select(\"a\", \"b\")", "java": "g.V().as(\"a\").out().as(\"b\").where(__.as(\"b\").in().count().is(P.eq(3)).or().where(__.as(\"b\").out(\"created\").and().as(\"b\").has(T.label, \"person\"))).select(\"a\", \"b\")", @@ -12178,6 +12927,7 @@ "canonical": "g.V().as(\"a\").out(\"created\").in(\"created\").as(\"b\").where(\"a\", P.gt(\"b\")).by(\"age\").select(\"a\", \"b\").by(\"name\")", "anonymized": "g.V().as(string0).out(string1).in(string1).as(string2).where(string0, P.gt(string2)).by(string3).select(string0, string2).by(string4)", "dotnet": "g.V().As(\"a\").Out(\"created\").In(\"created\").As(\"b\").Where(\"a\", P.Gt(\"b\")).By(\"age\").Select(\"a\", \"b\").By(\"name\")", + "dotnet_parameterize": "g.V().As(\"a\").Out(\"created\").In(\"created\").As(\"b\").Where(\"a\", P.Gt(\"b\")).By(\"age\").Select(\"a\", \"b\").By(\"name\")", "go": "g.V().As(\"a\").Out(\"created\").In(\"created\").As(\"b\").Where(\"a\", gremlingo.P.Gt(\"b\")).By(\"age\").Select(\"a\", \"b\").By(\"name\")", "groovy": "g.V().as(\"a\").out(\"created\").in(\"created\").as(\"b\").where(\"a\", P.gt(\"b\")).by(\"age\").select(\"a\", \"b\").by(\"name\")", "java": "g.V().as(\"a\").out(\"created\").in(\"created\").as(\"b\").where(\"a\", P.gt(\"b\")).by(\"age\").select(\"a\", \"b\").by(\"name\")", @@ -12195,6 +12945,7 @@ "canonical": "g.V().as(\"a\").outE(\"created\").as(\"b\").inV().as(\"c\").where(\"a\", P.gt(\"b\").or(P.eq(\"b\"))).by(\"age\").by(\"weight\").by(\"weight\").select(\"a\", \"c\").by(\"name\")", "anonymized": "g.V().as(string0).outE(string1).as(string2).inV().as(string3).where(string0, P.gt(string2).or(P.eq(string2))).by(string4).by(string5).by(string5).select(string0, string3).by(string6)", "dotnet": "g.V().As(\"a\").OutE(\"created\").As(\"b\").InV().As(\"c\").Where(\"a\", P.Gt(\"b\").Or(P.Eq(\"b\"))).By(\"age\").By(\"weight\").By(\"weight\").Select(\"a\", \"c\").By(\"name\")", + "dotnet_parameterize": "g.V().As(\"a\").OutE(\"created\").As(\"b\").InV().As(\"c\").Where(\"a\", P.Gt(\"b\").Or(P.Eq(\"b\"))).By(\"age\").By(\"weight\").By(\"weight\").Select(\"a\", \"c\").By(\"name\")", "go": "g.V().As(\"a\").OutE(\"created\").As(\"b\").InV().As(\"c\").Where(\"a\", gremlingo.P.Gt(\"b\").Or(gremlingo.P.Eq(\"b\"))).By(\"age\").By(\"weight\").By(\"weight\").Select(\"a\", \"c\").By(\"name\")", "groovy": "g.V().as(\"a\").outE(\"created\").as(\"b\").inV().as(\"c\").where(\"a\", P.gt(\"b\").or(P.eq(\"b\"))).by(\"age\").by(\"weight\").by(\"weight\").select(\"a\", \"c\").by(\"name\")", "java": "g.V().as(\"a\").outE(\"created\").as(\"b\").inV().as(\"c\").where(\"a\", P.gt(\"b\").or(P.eq(\"b\"))).by(\"age\").by(\"weight\").by(\"weight\").select(\"a\", \"c\").by(\"name\")", @@ -12212,6 +12963,7 @@ "canonical": "g.V().as(\"a\").outE(\"created\").as(\"b\").inV().as(\"c\").in(\"created\").as(\"d\").where(\"a\", P.lt(\"b\").or(P.gt(\"c\")).and(P.neq(\"d\"))).by(\"age\").by(\"weight\").by(__.in(\"created\").values(\"age\").min()).select(\"a\", \"c\", \"d\").by(\"name\")", "anonymized": "g.V().as(string0).outE(string1).as(string2).inV().as(string3).in(string1).as(string4).where(string0, P.lt(string2).or(P.gt(string3)).and(P.neq(string4))).by(string5).by(string6).by(__.in(string1).values(string5).min()).select(string0, string3, string4).by(string7)", "dotnet": "g.V().As(\"a\").OutE(\"created\").As(\"b\").InV().As(\"c\").In(\"created\").As(\"d\").Where(\"a\", P.Lt(\"b\").Or(P.Gt(\"c\")).And(P.Neq(\"d\"))).By(\"age\").By(\"weight\").By(__.In(\"created\").Values(\"age\").Min()).Select(\"a\", \"c\", \"d\").By(\"name\")", + "dotnet_parameterize": "g.V().As(\"a\").OutE(\"created\").As(\"b\").InV().As(\"c\").In(\"created\").As(\"d\").Where(\"a\", P.Lt(\"b\").Or(P.Gt(\"c\")).And(P.Neq(\"d\"))).By(\"age\").By(\"weight\").By(__.In(\"created\").Values(\"age\").Min()).Select(\"a\", \"c\", \"d\").By(\"name\")", "go": "g.V().As(\"a\").OutE(\"created\").As(\"b\").InV().As(\"c\").In(\"created\").As(\"d\").Where(\"a\", gremlingo.P.Lt(\"b\").Or(gremlingo.P.Gt(\"c\")).And(gremlingo.P.Neq(\"d\"))).By(\"age\").By(\"weight\").By(gremlingo.T__.In(\"created\").Values(\"age\").Min()).Select(\"a\", \"c\", \"d\").By(\"name\")", "groovy": "g.V().as(\"a\").outE(\"created\").as(\"b\").inV().as(\"c\").in(\"created\").as(\"d\").where(\"a\", P.lt(\"b\").or(P.gt(\"c\")).and(P.neq(\"d\"))).by(\"age\").by(\"weight\").by(__.in(\"created\").values(\"age\").min()).select(\"a\", \"c\", \"d\").by(\"name\")", "java": "g.V().as(\"a\").outE(\"created\").as(\"b\").inV().as(\"c\").in(\"created\").as(\"d\").where(\"a\", P.lt(\"b\").or(P.gt(\"c\")).and(P.neq(\"d\"))).by(\"age\").by(\"weight\").by(__.in(\"created\").values(\"age\").min()).select(\"a\", \"c\", \"d\").by(\"name\")", @@ -12229,6 +12981,7 @@ "canonical": "g.V(vid1).as(\"a\").out().has(\"age\").where(P.gt(\"a\")).by(\"age\").values(\"name\")", "anonymized": "g.V(vid1).as(string0).out().has(string1).where(P.gt(string0)).by(string1).values(string2)", "dotnet": "g.V(vid1).As(\"a\").Out().Has(\"age\").Where(P.Gt(\"a\")).By(\"age\").Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Out().Has(\"age\").Where(P.Gt(\"a\")).By(\"age\").Values(\"name\")", "go": "g.V(vid1).As(\"a\").Out().Has(\"age\").Where(gremlingo.P.Gt(\"a\")).By(\"age\").Values(\"name\")", "groovy": "g.V(vid1).as(\"a\").out().has(\"age\").where(P.gt(\"a\")).by(\"age\").values(\"name\")", "java": "g.V(vid1).as(\"a\").out().has(\"age\").where(P.gt(\"a\")).by(\"age\").values(\"name\")", @@ -12246,6 +12999,7 @@ "canonical": "g.V(vid3).as(\"a\").in().out().as(\"b\").where(\"a\", P.eq(\"b\")).by(\"age\").values(\"name\")", "anonymized": "g.V(vid3).as(string0).in().out().as(string1).where(string0, P.eq(string1)).by(string2).values(string3)", "dotnet": "g.V(vid3).As(\"a\").In().Out().As(\"b\").Where(\"a\", P.Eq(\"b\")).By(\"age\").Values(\"name\")", + "dotnet_parameterize": "g.V(vid3).As(\"a\").In().Out().As(\"b\").Where(\"a\", P.Eq(\"b\")).By(\"age\").Values(\"name\")", "go": "g.V(vid3).As(\"a\").In().Out().As(\"b\").Where(\"a\", gremlingo.P.Eq(\"b\")).By(\"age\").Values(\"name\")", "groovy": "g.V(vid3).as(\"a\").in().out().as(\"b\").where(\"a\", P.eq(\"b\")).by(\"age\").values(\"name\")", "java": "g.V(vid3).as(\"a\").in().out().as(\"b\").where(\"a\", P.eq(\"b\")).by(\"age\").values(\"name\")", @@ -12263,6 +13017,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V(vid3).as(\"a\").in().out().as(\"b\").where(\"a\", P.eq(\"b\")).by(\"age\").values(\"name\")", "anonymized": "g.withStrategies(ProductiveByStrategy).V(vid3).as(string0).in().out().as(string1).where(string0, P.eq(string1)).by(string2).values(string3)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V(vid3).As(\"a\").In().Out().As(\"b\").Where(\"a\", P.Eq(\"b\")).By(\"age\").Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V(vid3).As(\"a\").In().Out().As(\"b\").Where(\"a\", P.Eq(\"b\")).By(\"age\").Values(\"name\")", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V(vid3).As(\"a\").In().Out().As(\"b\").Where(\"a\", gremlingo.P.Eq(\"b\")).By(\"age\").Values(\"name\")", "groovy": "g.withStrategies(ProductiveByStrategy).V(vid3).as(\"a\").in().out().as(\"b\").where(\"a\", P.eq(\"b\")).by(\"age\").values(\"name\")", "java": "g.withStrategies(ProductiveByStrategy.instance()).V(vid3).as(\"a\").in().out().as(\"b\").where(\"a\", P.eq(\"b\")).by(\"age\").values(\"name\")", @@ -12280,6 +13035,7 @@ "canonical": "g.V().as(\"n\").where(__.or(__.hasLabel(\"software\"), __.hasLabel(\"person\"))).select(\"n\").by(\"name\")", "anonymized": "g.V().as(string0).where(__.or(__.hasLabel(string1), __.hasLabel(string2))).select(string0).by(string3)", "dotnet": "g.V().As(\"n\").Where(__.Or(__.HasLabel(\"software\"), __.HasLabel(\"person\"))).Select(\"n\").By(\"name\")", + "dotnet_parameterize": "g.V().As(\"n\").Where(__.Or(__.HasLabel(\"software\"), __.HasLabel(\"person\"))).Select(\"n\").By(\"name\")", "go": "g.V().As(\"n\").Where(gremlingo.T__.Or(gremlingo.T__.HasLabel(\"software\"), gremlingo.T__.HasLabel(\"person\"))).Select(\"n\").By(\"name\")", "groovy": "g.V().as(\"n\").where(__.or(__.hasLabel(\"software\"), __.hasLabel(\"person\"))).select(\"n\").by(\"name\")", "java": "g.V().as(\"n\").where(__.or(__.hasLabel(\"software\"), __.hasLabel(\"person\"))).select(\"n\").by(\"name\")", @@ -12297,6 +13053,7 @@ "canonical": "g.V().as(\"n\").where(__.or(__.select(\"n\").hasLabel(\"software\"), __.select(\"n\").hasLabel(\"person\"))).select(\"n\").by(\"name\")", "anonymized": "g.V().as(string0).where(__.or(__.select(string0).hasLabel(string1), __.select(string0).hasLabel(string2))).select(string0).by(string3)", "dotnet": "g.V().As(\"n\").Where(__.Or(__.Select(\"n\").HasLabel(\"software\"), __.Select(\"n\").HasLabel(\"person\"))).Select(\"n\").By(\"name\")", + "dotnet_parameterize": "g.V().As(\"n\").Where(__.Or(__.Select(\"n\").HasLabel(\"software\"), __.Select(\"n\").HasLabel(\"person\"))).Select(\"n\").By(\"name\")", "go": "g.V().As(\"n\").Where(gremlingo.T__.Or(gremlingo.T__.Select(\"n\").HasLabel(\"software\"), gremlingo.T__.Select(\"n\").HasLabel(\"person\"))).Select(\"n\").By(\"name\")", "groovy": "g.V().as(\"n\").where(__.or(__.select(\"n\").hasLabel(\"software\"), __.select(\"n\").hasLabel(\"person\"))).select(\"n\").by(\"name\")", "java": "g.V().as(\"n\").where(__.or(__.select(\"n\").hasLabel(\"software\"), __.select(\"n\").hasLabel(\"person\"))).select(\"n\").by(\"name\")", @@ -12314,6 +13071,7 @@ "canonical": "g.V().hasLabel(\"person\").as(\"x\").where(__.inE(\"knows\").count().is(P.gte(1))).select(\"x\")", "anonymized": "g.V().hasLabel(string0).as(string1).where(__.inE(string2).count().is(P.gte(number0))).select(string1)", "dotnet": "g.V().HasLabel(\"person\").As(\"x\").Where(__.InE(\"knows\").Count().Is(P.Gte(1))).Select(\"x\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").As(\"x\").Where(__.InE(\"knows\").Count().Is(P.Gte(1))).Select(\"x\")", "go": "g.V().HasLabel(\"person\").As(\"x\").Where(gremlingo.T__.InE(\"knows\").Count().Is(gremlingo.P.Gte(1))).Select(\"x\")", "groovy": "g.V().hasLabel(\"person\").as(\"x\").where(__.inE(\"knows\").count().is(P.gte(1))).select(\"x\")", "java": "g.V().hasLabel(\"person\").as(\"x\").where(__.inE(\"knows\").count().is(P.gte(1))).select(\"x\")", @@ -12331,6 +13089,7 @@ "canonical": "g.V().where(__.values(\"age\").is(P.gt(30)))", "anonymized": "g.V().where(__.values(string0).is(P.gt(number0)))", "dotnet": "g.V().Where(__.Values(\"age\").Is(P.Gt(30)))", + "dotnet_parameterize": "g.V().Where(__.Values(\"age\").Is(P.Gt(30)))", "go": "g.V().Where(gremlingo.T__.Values(\"age\").Is(gremlingo.P.Gt(30)))", "groovy": "g.V().where(__.values(\"age\").is(P.gt(30)))", "java": "g.V().where(__.values(\"age\").is(P.gt(30)))", @@ -12348,6 +13107,7 @@ "canonical": "g.V().where(__.label().is('software'))", "anonymized": "g.V().where(__.label().is(string0))", "dotnet": "g.V().Where(__.Label().Is(\"software\"))", + "dotnet_parameterize": "g.V().Where(__.Label().Is(\"software\"))", "go": "g.V().Where(gremlingo.T__.Label().Is(\"software\"))", "groovy": "g.V().where(__.label().is('software'))", "java": "g.V().where(__.label().is(\"software\"))", @@ -12365,6 +13125,7 @@ "canonical": "g.V().where(__.label().is(\"person\"))", "anonymized": "g.V().where(__.label().is(string0))", "dotnet": "g.V().Where(__.Label().Is(\"person\"))", + "dotnet_parameterize": "g.V().Where(__.Label().Is(\"person\"))", "go": "g.V().Where(gremlingo.T__.Label().Is(\"person\"))", "groovy": "g.V().where(__.label().is(\"person\"))", "java": "g.V().where(__.label().is(\"person\"))", @@ -12382,6 +13143,7 @@ "canonical": "g.withStrategies(AdjacentToIncidentStrategy).V()", "anonymized": "g.withStrategies(AdjacentToIncidentStrategy).V()", "dotnet": "g.WithStrategies(new AdjacentToIncidentStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new AdjacentToIncidentStrategy()).V()", "go": "g.WithStrategies(gremlingo.AdjacentToIncidentStrategy()).V()", "groovy": "g.withStrategies(AdjacentToIncidentStrategy).V()", "java": "g.withStrategies(AdjacentToIncidentStrategy.instance()).V()", @@ -12399,6 +13161,7 @@ "canonical": "g.withoutStrategies(AdjacentToIncidentStrategy).V()", "anonymized": "g.withoutStrategies(AdjacentToIncidentStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(AdjacentToIncidentStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(AdjacentToIncidentStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.AdjacentToIncidentStrategy()).V()", "groovy": "g.withoutStrategies(AdjacentToIncidentStrategy).V()", "java": "g.withoutStrategies(AdjacentToIncidentStrategy.class).V()", @@ -12416,6 +13179,7 @@ "canonical": "g.withStrategies(AdjacentToIncidentStrategy).V().out().count()", "anonymized": "g.withStrategies(AdjacentToIncidentStrategy).V().out().count()", "dotnet": "g.WithStrategies(new AdjacentToIncidentStrategy()).V().Out().Count()", + "dotnet_parameterize": "g.WithStrategies(new AdjacentToIncidentStrategy()).V().Out().Count()", "go": "g.WithStrategies(gremlingo.AdjacentToIncidentStrategy()).V().Out().Count()", "groovy": "g.withStrategies(AdjacentToIncidentStrategy).V().out().count()", "java": "g.withStrategies(AdjacentToIncidentStrategy.instance()).V().out().count()", @@ -12433,6 +13197,7 @@ "canonical": "g.withStrategies(AdjacentToIncidentStrategy).V().where(__.out())", "anonymized": "g.withStrategies(AdjacentToIncidentStrategy).V().where(__.out())", "dotnet": "g.WithStrategies(new AdjacentToIncidentStrategy()).V().Where(__.Out())", + "dotnet_parameterize": "g.WithStrategies(new AdjacentToIncidentStrategy()).V().Where(__.Out())", "go": "g.WithStrategies(gremlingo.AdjacentToIncidentStrategy()).V().Where(gremlingo.T__.Out())", "groovy": "g.withStrategies(AdjacentToIncidentStrategy).V().where(__.out())", "java": "g.withStrategies(AdjacentToIncidentStrategy.instance()).V().where(__.out())", @@ -12450,6 +13215,7 @@ "canonical": "g.withStrategies(ByModulatorOptimizationStrategy).V().order().by(__.values(\"name\"))", "anonymized": "g.withStrategies(ByModulatorOptimizationStrategy).V().order().by(__.values(string0))", "dotnet": "g.WithStrategies(new ByModulatorOptimizationStrategy()).V().Order().By(__.Values(\"name\"))", + "dotnet_parameterize": "g.WithStrategies(new ByModulatorOptimizationStrategy()).V().Order().By(__.Values(\"name\"))", "go": "g.WithStrategies(gremlingo.ByModulatorOptimizationStrategy()).V().Order().By(gremlingo.T__.Values(\"name\"))", "groovy": "g.withStrategies(ByModulatorOptimizationStrategy).V().order().by(__.values(\"name\"))", "java": "g.withStrategies(ByModulatorOptimizationStrategy.instance()).V().order().by(__.values(\"name\"))", @@ -12467,6 +13233,7 @@ "canonical": "g.withoutStrategies(ByModulatorOptimizationStrategy).V().order().by(__.values(\"name\"))", "anonymized": "g.withoutStrategies(ByModulatorOptimizationStrategy).V().order().by(__.values(string0))", "dotnet": "g.WithoutStrategies(typeof(ByModulatorOptimizationStrategy)).V().Order().By(__.Values(\"name\"))", + "dotnet_parameterize": "g.WithoutStrategies(typeof(ByModulatorOptimizationStrategy)).V().Order().By(__.Values(\"name\"))", "go": "g.WithoutStrategies(gremlingo.ByModulatorOptimizationStrategy()).V().Order().By(gremlingo.T__.Values(\"name\"))", "groovy": "g.withoutStrategies(ByModulatorOptimizationStrategy).V().order().by(__.values(\"name\"))", "java": "g.withoutStrategies(ByModulatorOptimizationStrategy.class).V().order().by(__.values(\"name\"))", @@ -12484,6 +13251,7 @@ "canonical": "g.withStrategies(ComputerFinalizationStrategy).V()", "anonymized": "g.withStrategies(ComputerFinalizationStrategy).V()", "dotnet": "g.WithStrategies(new ComputerFinalizationStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new ComputerFinalizationStrategy()).V()", "go": "g.WithStrategies(gremlingo.ComputerFinalizationStrategy()).V()", "groovy": "g.withStrategies(ComputerFinalizationStrategy).V()", "java": "g.withStrategies(ComputerFinalizationStrategy.instance()).V()", @@ -12501,6 +13269,7 @@ "canonical": "g.withoutStrategies(ComputerFinalizationStrategy).V()", "anonymized": "g.withoutStrategies(ComputerFinalizationStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(ComputerFinalizationStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(ComputerFinalizationStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.ComputerFinalizationStrategy()).V()", "groovy": "g.withoutStrategies(ComputerFinalizationStrategy).V()", "java": "g.withoutStrategies(ComputerFinalizationStrategy.class).V()", @@ -12518,6 +13287,7 @@ "canonical": "g.withStrategies(ComputerVerificationStrategy).V()", "anonymized": "g.withStrategies(ComputerVerificationStrategy).V()", "dotnet": "g.WithStrategies(new ComputerVerificationStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new ComputerVerificationStrategy()).V()", "go": "g.WithStrategies(gremlingo.ComputerVerificationStrategy()).V()", "groovy": "g.withStrategies(ComputerVerificationStrategy).V()", "java": "g.withStrategies(ComputerVerificationStrategy.instance()).V()", @@ -12535,6 +13305,7 @@ "canonical": "g.withoutStrategies(ComputerVerificationStrategy).V()", "anonymized": "g.withoutStrategies(ComputerVerificationStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(ComputerVerificationStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(ComputerVerificationStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.ComputerVerificationStrategy()).V()", "groovy": "g.withoutStrategies(ComputerVerificationStrategy).V()", "java": "g.withoutStrategies(ComputerVerificationStrategy.class).V()", @@ -12552,6 +13323,7 @@ "canonical": "g.withStrategies(ConnectiveStrategy).V().has(\"name\", \"marko\").or().where(__.in(\"knows\").has(\"name\", \"marko\"))", "anonymized": "g.withStrategies(ConnectiveStrategy).V().has(string0, string1).or().where(__.in(string2).has(string0, string1))", "dotnet": "g.WithStrategies(new ConnectiveStrategy()).V().Has(\"name\", \"marko\").Or().Where(__.In(\"knows\").Has(\"name\", \"marko\"))", + "dotnet_parameterize": "g.WithStrategies(new ConnectiveStrategy()).V().Has(\"name\", \"marko\").Or().Where(__.In(\"knows\").Has(\"name\", \"marko\"))", "go": "g.WithStrategies(gremlingo.ConnectiveStrategy()).V().Has(\"name\", \"marko\").Or().Where(gremlingo.T__.In(\"knows\").Has(\"name\", \"marko\"))", "groovy": "g.withStrategies(ConnectiveStrategy).V().has(\"name\", \"marko\").or().where(__.in(\"knows\").has(\"name\", \"marko\"))", "java": "g.withStrategies(ConnectiveStrategy.instance()).V().has(\"name\", \"marko\").or().where(__.in(\"knows\").has(\"name\", \"marko\"))", @@ -12569,6 +13341,7 @@ "canonical": "g.withoutStrategies(ConnectiveStrategy).V().has(\"name\", \"marko\").or().where(__.in(\"knows\").has(\"name\", \"marko\"))", "anonymized": "g.withoutStrategies(ConnectiveStrategy).V().has(string0, string1).or().where(__.in(string2).has(string0, string1))", "dotnet": "g.WithoutStrategies(typeof(ConnectiveStrategy)).V().Has(\"name\", \"marko\").Or().Where(__.In(\"knows\").Has(\"name\", \"marko\"))", + "dotnet_parameterize": "g.WithoutStrategies(typeof(ConnectiveStrategy)).V().Has(\"name\", \"marko\").Or().Where(__.In(\"knows\").Has(\"name\", \"marko\"))", "go": "g.WithoutStrategies(gremlingo.ConnectiveStrategy()).V().Has(\"name\", \"marko\").Or().Where(gremlingo.T__.In(\"knows\").Has(\"name\", \"marko\"))", "groovy": "g.withoutStrategies(ConnectiveStrategy).V().has(\"name\", \"marko\").or().where(__.in(\"knows\").has(\"name\", \"marko\"))", "java": "g.withoutStrategies(ConnectiveStrategy.class).V().has(\"name\", \"marko\").or().where(__.in(\"knows\").has(\"name\", \"marko\"))", @@ -12586,6 +13359,7 @@ "canonical": "g.withStrategies(CountStrategy).V().where(__.outE().count().is(0))", "anonymized": "g.withStrategies(CountStrategy).V().where(__.outE().count().is(number0))", "dotnet": "g.WithStrategies(new CountStrategy()).V().Where(__.OutE().Count().Is(0))", + "dotnet_parameterize": "g.WithStrategies(new CountStrategy()).V().Where(__.OutE().Count().Is(0))", "go": "g.WithStrategies(gremlingo.CountStrategy()).V().Where(gremlingo.T__.OutE().Count().Is(0))", "groovy": "g.withStrategies(CountStrategy).V().where(__.outE().count().is(0))", "java": "g.withStrategies(CountStrategy.instance()).V().where(__.outE().count().is(0))", @@ -12603,6 +13377,7 @@ "canonical": "g.withoutStrategies(CountStrategy).V().where(__.outE().count().is(0))", "anonymized": "g.withoutStrategies(CountStrategy).V().where(__.outE().count().is(number0))", "dotnet": "g.WithoutStrategies(typeof(CountStrategy)).V().Where(__.OutE().Count().Is(0))", + "dotnet_parameterize": "g.WithoutStrategies(typeof(CountStrategy)).V().Where(__.OutE().Count().Is(0))", "go": "g.WithoutStrategies(gremlingo.CountStrategy()).V().Where(gremlingo.T__.OutE().Count().Is(0))", "groovy": "g.withoutStrategies(CountStrategy).V().where(__.outE().count().is(0))", "java": "g.withoutStrategies(CountStrategy.class).V().where(__.outE().count().is(0))", @@ -12620,6 +13395,7 @@ "canonical": "g.withStrategies(EarlyLimitStrategy).V().out().order().by('name').valueMap().limit(3).select(\"name\")", "anonymized": "g.withStrategies(EarlyLimitStrategy).V().out().order().by(string0).valueMap().limit(number0).select(string1)", "dotnet": "g.WithStrategies(new EarlyLimitStrategy()).V().Out().Order().By(\"name\").ValueMap().Limit(3).Select(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new EarlyLimitStrategy()).V().Out().Order().By(\"name\").ValueMap().Limit(3).Select(\"name\")", "go": "g.WithStrategies(gremlingo.EarlyLimitStrategy()).V().Out().Order().By(\"name\").ValueMap().Limit(3).Select(\"name\")", "groovy": "g.withStrategies(EarlyLimitStrategy).V().out().order().by('name').valueMap().limit(3).select(\"name\")", "java": "g.withStrategies(EarlyLimitStrategy.instance()).V().out().order().by(\"name\").valueMap().limit(3).select(\"name\")", @@ -12637,6 +13413,7 @@ "canonical": "g.withoutStrategies(EarlyLimitStrategy).V().out().order().by('name').valueMap().limit(3).select(\"name\")", "anonymized": "g.withoutStrategies(EarlyLimitStrategy).V().out().order().by(string0).valueMap().limit(number0).select(string1)", "dotnet": "g.WithoutStrategies(typeof(EarlyLimitStrategy)).V().Out().Order().By(\"name\").ValueMap().Limit(3).Select(\"name\")", + "dotnet_parameterize": "g.WithoutStrategies(typeof(EarlyLimitStrategy)).V().Out().Order().By(\"name\").ValueMap().Limit(3).Select(\"name\")", "go": "g.WithoutStrategies(gremlingo.EarlyLimitStrategy()).V().Out().Order().By(\"name\").ValueMap().Limit(3).Select(\"name\")", "groovy": "g.withoutStrategies(EarlyLimitStrategy).V().out().order().by('name').valueMap().limit(3).select(\"name\")", "java": "g.withoutStrategies(EarlyLimitStrategy.class).V().out().order().by(\"name\").valueMap().limit(3).select(\"name\")", @@ -12654,6 +13431,7 @@ "canonical": "g.withStrategies(EdgeLabelVerificationStrategy(throwException:true, logWarning:false)).V().out()", "anonymized": "g.withStrategies(EdgeLabelVerificationStrategy(throwException:boolean0, logWarning:boolean1)).V().out()", "dotnet": "g.WithStrategies(new EdgeLabelVerificationStrategy(throwException: true, logWarning: false)).V().Out()", + "dotnet_parameterize": "g.WithStrategies(new EdgeLabelVerificationStrategy(throwException: true, logWarning: false)).V().Out()", "go": "g.WithStrategies(gremlingo.EdgeLabelVerificationStrategy(gremlingo.EdgeLabelVerificationStrategyConfig{ThrowException: true, LogWarning: false})).V().Out()", "groovy": "g.withStrategies(new EdgeLabelVerificationStrategy(throwException:true, logWarning:false)).V().out()", "java": "g.withStrategies(EdgeLabelVerificationStrategy.build().throwException(true).logWarning(false).create()).V().out()", @@ -12671,6 +13449,7 @@ "canonical": "g.withStrategies(EdgeLabelVerificationStrategy(throwException:false, logWarning:false)).V().out()", "anonymized": "g.withStrategies(EdgeLabelVerificationStrategy(throwException:boolean0, logWarning:boolean0)).V().out()", "dotnet": "g.WithStrategies(new EdgeLabelVerificationStrategy(throwException: false, logWarning: false)).V().Out()", + "dotnet_parameterize": "g.WithStrategies(new EdgeLabelVerificationStrategy(throwException: false, logWarning: false)).V().Out()", "go": "g.WithStrategies(gremlingo.EdgeLabelVerificationStrategy(gremlingo.EdgeLabelVerificationStrategyConfig{ThrowException: false, LogWarning: false})).V().Out()", "groovy": "g.withStrategies(new EdgeLabelVerificationStrategy(throwException:false, logWarning:false)).V().out()", "java": "g.withStrategies(EdgeLabelVerificationStrategy.build().throwException(false).logWarning(false).create()).V().out()", @@ -12688,6 +13467,7 @@ "canonical": "g.withoutStrategies(EdgeLabelVerificationStrategy).V().out()", "anonymized": "g.withoutStrategies(EdgeLabelVerificationStrategy).V().out()", "dotnet": "g.WithoutStrategies(typeof(EdgeLabelVerificationStrategy)).V().Out()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(EdgeLabelVerificationStrategy)).V().Out()", "go": "g.WithoutStrategies(gremlingo.EdgeLabelVerificationStrategy()).V().Out()", "groovy": "g.withoutStrategies(EdgeLabelVerificationStrategy).V().out()", "java": "g.withoutStrategies(EdgeLabelVerificationStrategy.class).V().out()", @@ -12705,6 +13485,7 @@ "canonical": "g.withStrategies(ElementIdStrategy).V()", "anonymized": "g.withStrategies(ElementIdStrategy).V()", "dotnet": "g.WithStrategies(new ElementIdStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new ElementIdStrategy()).V()", "go": "g.WithStrategies(gremlingo.ElementIdStrategy()).V()", "groovy": "g.withStrategies(ElementIdStrategy).V()", "java": "g.withStrategies(ElementIdStrategy.instance()).V()", @@ -12722,6 +13503,7 @@ "canonical": "g.withoutStrategies(ElementIdStrategy).V()", "anonymized": "g.withoutStrategies(ElementIdStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(ElementIdStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(ElementIdStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.ElementIdStrategy()).V()", "groovy": "g.withoutStrategies(ElementIdStrategy).V()", "java": "g.withoutStrategies(ElementIdStrategy.class).V()", @@ -12739,6 +13521,7 @@ "canonical": "g.withStrategies(FilterRankingStrategy).V().out().order().dedup()", "anonymized": "g.withStrategies(FilterRankingStrategy).V().out().order().dedup()", "dotnet": "g.WithStrategies(new FilterRankingStrategy()).V().Out().Order().Dedup()", + "dotnet_parameterize": "g.WithStrategies(new FilterRankingStrategy()).V().Out().Order().Dedup()", "go": "g.WithStrategies(gremlingo.FilterRankingStrategy()).V().Out().Order().Dedup()", "groovy": "g.withStrategies(FilterRankingStrategy).V().out().order().dedup()", "java": "g.withStrategies(FilterRankingStrategy.instance()).V().out().order().dedup()", @@ -12756,6 +13539,7 @@ "canonical": "g.withoutStrategies(FilterRankingStrategy).V().out().order().dedup()", "anonymized": "g.withoutStrategies(FilterRankingStrategy).V().out().order().dedup()", "dotnet": "g.WithoutStrategies(typeof(FilterRankingStrategy)).V().Out().Order().Dedup()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(FilterRankingStrategy)).V().Out().Order().Dedup()", "go": "g.WithoutStrategies(gremlingo.FilterRankingStrategy()).V().Out().Order().Dedup()", "groovy": "g.withoutStrategies(FilterRankingStrategy).V().out().order().dedup()", "java": "g.withoutStrategies(FilterRankingStrategy.class).V().out().order().dedup()", @@ -12773,6 +13557,7 @@ "canonical": "g.withStrategies(GraphFilterStrategy).V()", "anonymized": "g.withStrategies(GraphFilterStrategy).V()", "dotnet": "g.WithStrategies(new GraphFilterStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new GraphFilterStrategy()).V()", "go": "g.WithStrategies(gremlingo.GraphFilterStrategy()).V()", "groovy": "g.withStrategies(GraphFilterStrategy).V()", "java": "g.withStrategies(GraphFilterStrategy.instance()).V()", @@ -12790,6 +13575,7 @@ "canonical": "g.withoutStrategies(GraphFilterStrategy).V()", "anonymized": "g.withoutStrategies(GraphFilterStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(GraphFilterStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(GraphFilterStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.GraphFilterStrategy()).V()", "groovy": "g.withoutStrategies(GraphFilterStrategy).V()", "java": "g.withoutStrategies(GraphFilterStrategy.class).V()", @@ -12807,6 +13593,7 @@ "canonical": "g.withStrategies(HaltedTraverserStrategy(haltedTraverserFactory:\"org.apache.tinkerpop.gremlin.structure.util.detached.DetachedFactory\")).V()", "anonymized": "g.withStrategies(HaltedTraverserStrategy(haltedTraverserFactory:string0)).V()", "dotnet": "g.WithStrategies(new HaltedTraverserStrategy(haltedTraverserFactory: \"org.apache.tinkerpop.gremlin.structure.util.detached.DetachedFactory\")).V()", + "dotnet_parameterize": "g.WithStrategies(new HaltedTraverserStrategy(haltedTraverserFactory: \"org.apache.tinkerpop.gremlin.structure.util.detached.DetachedFactory\")).V()", "go": "g.WithStrategies(gremlingo.HaltedTraverserStrategy(gremlingo.HaltedTraverserStrategyConfig{HaltedTraverserFactory: \"org.apache.tinkerpop.gremlin.structure.util.detached.DetachedFactory\"})).V()", "groovy": "g.withStrategies(new HaltedTraverserStrategy(haltedTraverserFactory:\"org.apache.tinkerpop.gremlin.structure.util.detached.DetachedFactory\")).V()", "java": "g.withStrategies(HaltedTraverserStrategy.build().haltedTraverserFactory(\"org.apache.tinkerpop.gremlin.structure.util.detached.DetachedFactory\").create()).V()", @@ -12824,6 +13611,7 @@ "canonical": "g.withStrategies(HaltedTraverserStrategy(haltedTraverserFactory:\"org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceFactory\")).V()", "anonymized": "g.withStrategies(HaltedTraverserStrategy(haltedTraverserFactory:string0)).V()", "dotnet": "g.WithStrategies(new HaltedTraverserStrategy(haltedTraverserFactory: \"org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceFactory\")).V()", + "dotnet_parameterize": "g.WithStrategies(new HaltedTraverserStrategy(haltedTraverserFactory: \"org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceFactory\")).V()", "go": "g.WithStrategies(gremlingo.HaltedTraverserStrategy(gremlingo.HaltedTraverserStrategyConfig{HaltedTraverserFactory: \"org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceFactory\"})).V()", "groovy": "g.withStrategies(new HaltedTraverserStrategy(haltedTraverserFactory:\"org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceFactory\")).V()", "java": "g.withStrategies(HaltedTraverserStrategy.build().haltedTraverserFactory(\"org.apache.tinkerpop.gremlin.structure.util.reference.ReferenceFactory\").create()).V()", @@ -12841,6 +13629,7 @@ "canonical": "g.withoutStrategies(HaltedTraverserStrategy).V()", "anonymized": "g.withoutStrategies(HaltedTraverserStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(HaltedTraverserStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(HaltedTraverserStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.HaltedTraverserStrategy()).V()", "groovy": "g.withoutStrategies(HaltedTraverserStrategy).V()", "java": "g.withoutStrategies(HaltedTraverserStrategy.class).V()", @@ -12858,6 +13647,7 @@ "canonical": "g.withStrategies(IdentityRemovalStrategy).V().identity().out()", "anonymized": "g.withStrategies(IdentityRemovalStrategy).V().identity().out()", "dotnet": "g.WithStrategies(new IdentityRemovalStrategy()).V().Identity().Out()", + "dotnet_parameterize": "g.WithStrategies(new IdentityRemovalStrategy()).V().Identity().Out()", "go": "g.WithStrategies(gremlingo.IdentityRemovalStrategy()).V().Identity().Out()", "groovy": "g.withStrategies(IdentityRemovalStrategy).V().identity().out()", "java": "g.withStrategies(IdentityRemovalStrategy.instance()).V().identity().out()", @@ -12875,6 +13665,7 @@ "canonical": "g.withoutStrategies(IdentityRemovalStrategy).V().identity().out()", "anonymized": "g.withoutStrategies(IdentityRemovalStrategy).V().identity().out()", "dotnet": "g.WithoutStrategies(typeof(IdentityRemovalStrategy)).V().Identity().Out()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(IdentityRemovalStrategy)).V().Identity().Out()", "go": "g.WithoutStrategies(gremlingo.IdentityRemovalStrategy()).V().Identity().Out()", "groovy": "g.withoutStrategies(IdentityRemovalStrategy).V().identity().out()", "java": "g.withoutStrategies(IdentityRemovalStrategy.class).V().identity().out()", @@ -12892,6 +13683,7 @@ "canonical": "g.withStrategies(IncidentToAdjacentStrategy).V().outE().inV()", "anonymized": "g.withStrategies(IncidentToAdjacentStrategy).V().outE().inV()", "dotnet": "g.WithStrategies(new IncidentToAdjacentStrategy()).V().OutE().InV()", + "dotnet_parameterize": "g.WithStrategies(new IncidentToAdjacentStrategy()).V().OutE().InV()", "go": "g.WithStrategies(gremlingo.IncidentToAdjacentStrategy()).V().OutE().InV()", "groovy": "g.withStrategies(IncidentToAdjacentStrategy).V().outE().inV()", "java": "g.withStrategies(IncidentToAdjacentStrategy.instance()).V().outE().inV()", @@ -12909,6 +13701,7 @@ "canonical": "g.withoutStrategies(IncidentToAdjacentStrategy).V().outE().inV()", "anonymized": "g.withoutStrategies(IncidentToAdjacentStrategy).V().outE().inV()", "dotnet": "g.WithoutStrategies(typeof(IncidentToAdjacentStrategy)).V().OutE().InV()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(IncidentToAdjacentStrategy)).V().OutE().InV()", "go": "g.WithoutStrategies(gremlingo.IncidentToAdjacentStrategy()).V().OutE().InV()", "groovy": "g.withoutStrategies(IncidentToAdjacentStrategy).V().outE().inV()", "java": "g.withoutStrategies(IncidentToAdjacentStrategy.class).V().outE().inV()", @@ -12926,6 +13719,7 @@ "canonical": "g.withStrategies(InlineFilterStrategy).V().filter(__.has(\"name\", \"marko\"))", "anonymized": "g.withStrategies(InlineFilterStrategy).V().filter(__.has(string0, string1))", "dotnet": "g.WithStrategies(new InlineFilterStrategy()).V().Filter(__.Has(\"name\", \"marko\"))", + "dotnet_parameterize": "g.WithStrategies(new InlineFilterStrategy()).V().Filter(__.Has(\"name\", \"marko\"))", "go": "g.WithStrategies(gremlingo.InlineFilterStrategy()).V().Filter(gremlingo.T__.Has(\"name\", \"marko\"))", "groovy": "g.withStrategies(InlineFilterStrategy).V().filter(__.has(\"name\", \"marko\"))", "java": "g.withStrategies(InlineFilterStrategy.instance()).V().filter(__.has(\"name\", \"marko\"))", @@ -12943,6 +13737,7 @@ "canonical": "g.withoutStrategies(InlineFilterStrategy).V().filter(__.has(\"name\", \"marko\"))", "anonymized": "g.withoutStrategies(InlineFilterStrategy).V().filter(__.has(string0, string1))", "dotnet": "g.WithoutStrategies(typeof(InlineFilterStrategy)).V().Filter(__.Has(\"name\", \"marko\"))", + "dotnet_parameterize": "g.WithoutStrategies(typeof(InlineFilterStrategy)).V().Filter(__.Has(\"name\", \"marko\"))", "go": "g.WithoutStrategies(gremlingo.InlineFilterStrategy()).V().Filter(gremlingo.T__.Has(\"name\", \"marko\"))", "groovy": "g.withoutStrategies(InlineFilterStrategy).V().filter(__.has(\"name\", \"marko\"))", "java": "g.withoutStrategies(InlineFilterStrategy.class).V().filter(__.has(\"name\", \"marko\"))", @@ -12960,6 +13755,7 @@ "canonical": "g.withStrategies(LambdaRestrictionStrategy).V()", "anonymized": "g.withStrategies(LambdaRestrictionStrategy).V()", "dotnet": "g.WithStrategies(new LambdaRestrictionStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new LambdaRestrictionStrategy()).V()", "go": "g.WithStrategies(gremlingo.LambdaRestrictionStrategy()).V()", "groovy": "g.withStrategies(LambdaRestrictionStrategy).V()", "java": "g.withStrategies(LambdaRestrictionStrategy.instance()).V()", @@ -12977,6 +13773,7 @@ "canonical": "g.withoutStrategies(LambdaRestrictionStrategy).V()", "anonymized": "g.withoutStrategies(LambdaRestrictionStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(LambdaRestrictionStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(LambdaRestrictionStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.LambdaRestrictionStrategy()).V()", "groovy": "g.withoutStrategies(LambdaRestrictionStrategy).V()", "java": "g.withoutStrategies(LambdaRestrictionStrategy.class).V()", @@ -12994,6 +13791,7 @@ "canonical": "g.withStrategies(LazyBarrierStrategy).V().out().bothE().count()", "anonymized": "g.withStrategies(LazyBarrierStrategy).V().out().bothE().count()", "dotnet": "g.WithStrategies(new LazyBarrierStrategy()).V().Out().BothE().Count()", + "dotnet_parameterize": "g.WithStrategies(new LazyBarrierStrategy()).V().Out().BothE().Count()", "go": "g.WithStrategies(gremlingo.LazyBarrierStrategy()).V().Out().BothE().Count()", "groovy": "g.withStrategies(LazyBarrierStrategy).V().out().bothE().count()", "java": "g.withStrategies(LazyBarrierStrategy.instance()).V().out().bothE().count()", @@ -13011,6 +13809,7 @@ "canonical": "g.withoutStrategies(LazyBarrierStrategy).V().out().bothE().count()", "anonymized": "g.withoutStrategies(LazyBarrierStrategy).V().out().bothE().count()", "dotnet": "g.WithoutStrategies(typeof(LazyBarrierStrategy)).V().Out().BothE().Count()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(LazyBarrierStrategy)).V().Out().BothE().Count()", "go": "g.WithoutStrategies(gremlingo.LazyBarrierStrategy()).V().Out().BothE().Count()", "groovy": "g.withoutStrategies(LazyBarrierStrategy).V().out().bothE().count()", "java": "g.withoutStrategies(LazyBarrierStrategy.class).V().out().bothE().count()", @@ -13028,6 +13827,7 @@ "canonical": "g.withStrategies(MatchAlgorithmStrategy(matchAlgorithm:\"org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep$CountMatchAlgorithm\")).V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"a\").out(\"created\").as(\"c\"))", "anonymized": "g.withStrategies(MatchAlgorithmStrategy(matchAlgorithm:string0)).V().match(__.as(string1).out(string2).as(string3), __.as(string1).out(string4).as(string5))", "dotnet": "g.WithStrategies(new MatchAlgorithmStrategy(matchAlgorithm: \"org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep$CountMatchAlgorithm\")).V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"a\").Out(\"created\").As(\"c\"))", + "dotnet_parameterize": "g.WithStrategies(new MatchAlgorithmStrategy(matchAlgorithm: \"org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep$CountMatchAlgorithm\")).V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"a\").Out(\"created\").As(\"c\"))", "go": "g.WithStrategies(gremlingo.MatchAlgorithmStrategy(gremlingo.MatchAlgorithmStrategyConfig{MatchAlgorithm: \"org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep$CountMatchAlgorithm\"})).V().Match(gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"), gremlingo.T__.As(\"a\").Out(\"created\").As(\"c\"))", "groovy": "g.withStrategies(new MatchAlgorithmStrategy(matchAlgorithm:\"org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep\\$CountMatchAlgorithm\")).V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"a\").out(\"created\").as(\"c\"))", "java": "g.withStrategies(MatchAlgorithmStrategy.build().matchAlgorithm(\"org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep$CountMatchAlgorithm\").create()).V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"a\").out(\"created\").as(\"c\"))", @@ -13045,6 +13845,7 @@ "canonical": "g.withStrategies(MatchAlgorithmStrategy(matchAlgorithm:\"org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep$GreedyMatchAlgorithm\")).V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"a\").out(\"created\").as(\"c\"))", "anonymized": "g.withStrategies(MatchAlgorithmStrategy(matchAlgorithm:string0)).V().match(__.as(string1).out(string2).as(string3), __.as(string1).out(string4).as(string5))", "dotnet": "g.WithStrategies(new MatchAlgorithmStrategy(matchAlgorithm: \"org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep$GreedyMatchAlgorithm\")).V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"a\").Out(\"created\").As(\"c\"))", + "dotnet_parameterize": "g.WithStrategies(new MatchAlgorithmStrategy(matchAlgorithm: \"org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep$GreedyMatchAlgorithm\")).V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"a\").Out(\"created\").As(\"c\"))", "go": "g.WithStrategies(gremlingo.MatchAlgorithmStrategy(gremlingo.MatchAlgorithmStrategyConfig{MatchAlgorithm: \"org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep$GreedyMatchAlgorithm\"})).V().Match(gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"), gremlingo.T__.As(\"a\").Out(\"created\").As(\"c\"))", "groovy": "g.withStrategies(new MatchAlgorithmStrategy(matchAlgorithm:\"org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep\\$GreedyMatchAlgorithm\")).V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"a\").out(\"created\").as(\"c\"))", "java": "g.withStrategies(MatchAlgorithmStrategy.build().matchAlgorithm(\"org.apache.tinkerpop.gremlin.process.traversal.step.map.MatchStep$GreedyMatchAlgorithm\").create()).V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"a\").out(\"created\").as(\"c\"))", @@ -13062,6 +13863,7 @@ "canonical": "g.withoutStrategies(MatchAlgorithmStrategy).V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"a\").out(\"created\").as(\"c\"))", "anonymized": "g.withoutStrategies(MatchAlgorithmStrategy).V().match(__.as(string0).out(string1).as(string2), __.as(string0).out(string3).as(string4))", "dotnet": "g.WithoutStrategies(typeof(MatchAlgorithmStrategy)).V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"a\").Out(\"created\").As(\"c\"))", + "dotnet_parameterize": "g.WithoutStrategies(typeof(MatchAlgorithmStrategy)).V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"a\").Out(\"created\").As(\"c\"))", "go": "g.WithoutStrategies(gremlingo.MatchAlgorithmStrategy()).V().Match(gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"), gremlingo.T__.As(\"a\").Out(\"created\").As(\"c\"))", "groovy": "g.withoutStrategies(MatchAlgorithmStrategy).V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"a\").out(\"created\").as(\"c\"))", "java": "g.withoutStrategies(MatchAlgorithmStrategy.class).V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"a\").out(\"created\").as(\"c\"))", @@ -13079,6 +13881,7 @@ "canonical": "g.withStrategies(MatchPredicateStrategy).V().match(__.as(\"a\").out(\"created\").has(\"name\", \"lop\").as(\"b\"), __.as(\"b\").in(\"created\").has(\"age\", 29).as(\"c\")).where(__.as(\"c\").repeat(__.out()).times(2)).select(\"a\", \"b\", \"c\")", "anonymized": "g.withStrategies(MatchPredicateStrategy).V().match(__.as(string0).out(string1).has(string2, string3).as(string4), __.as(string4).in(string1).has(string5, number0).as(string6)).where(__.as(string6).repeat(__.out()).times(number1)).select(string0, string4, string6)", "dotnet": "g.WithStrategies(new MatchPredicateStrategy()).V().Match(__.As(\"a\").Out(\"created\").Has(\"name\", \"lop\").As(\"b\"), __.As(\"b\").In(\"created\").Has(\"age\", 29).As(\"c\")).Where(__.As(\"c\").Repeat(__.Out()).Times(2)).Select(\"a\", \"b\", \"c\")", + "dotnet_parameterize": "g.WithStrategies(new MatchPredicateStrategy()).V().Match(__.As(\"a\").Out(\"created\").Has(\"name\", \"lop\").As(\"b\"), __.As(\"b\").In(\"created\").Has(\"age\", 29).As(\"c\")).Where(__.As(\"c\").Repeat(__.Out()).Times(2)).Select(\"a\", \"b\", \"c\")", "go": "g.WithStrategies(gremlingo.MatchPredicateStrategy()).V().Match(gremlingo.T__.As(\"a\").Out(\"created\").Has(\"name\", \"lop\").As(\"b\"), gremlingo.T__.As(\"b\").In(\"created\").Has(\"age\", 29).As(\"c\")).Where(gremlingo.T__.As(\"c\").Repeat(gremlingo.T__.Out()).Times(2)).Select(\"a\", \"b\", \"c\")", "groovy": "g.withStrategies(MatchPredicateStrategy).V().match(__.as(\"a\").out(\"created\").has(\"name\", \"lop\").as(\"b\"), __.as(\"b\").in(\"created\").has(\"age\", 29).as(\"c\")).where(__.as(\"c\").repeat(__.out()).times(2)).select(\"a\", \"b\", \"c\")", "java": "g.withStrategies(MatchPredicateStrategy.instance()).V().match(__.as(\"a\").out(\"created\").has(\"name\", \"lop\").as(\"b\"), __.as(\"b\").in(\"created\").has(\"age\", 29).as(\"c\")).where(__.as(\"c\").repeat(__.out()).times(2)).select(\"a\", \"b\", \"c\")", @@ -13096,6 +13899,7 @@ "canonical": "g.withoutStrategies(MatchPredicateStrategy).V().match(__.as(\"a\").out(\"created\").has(\"name\", \"lop\").as(\"b\"), __.as(\"b\").in(\"created\").has(\"age\", 29).as(\"c\")).where(__.as(\"c\").repeat(__.out()).times(2)).select(\"a\", \"b\", \"c\")", "anonymized": "g.withoutStrategies(MatchPredicateStrategy).V().match(__.as(string0).out(string1).has(string2, string3).as(string4), __.as(string4).in(string1).has(string5, number0).as(string6)).where(__.as(string6).repeat(__.out()).times(number1)).select(string0, string4, string6)", "dotnet": "g.WithoutStrategies(typeof(MatchPredicateStrategy)).V().Match(__.As(\"a\").Out(\"created\").Has(\"name\", \"lop\").As(\"b\"), __.As(\"b\").In(\"created\").Has(\"age\", 29).As(\"c\")).Where(__.As(\"c\").Repeat(__.Out()).Times(2)).Select(\"a\", \"b\", \"c\")", + "dotnet_parameterize": "g.WithoutStrategies(typeof(MatchPredicateStrategy)).V().Match(__.As(\"a\").Out(\"created\").Has(\"name\", \"lop\").As(\"b\"), __.As(\"b\").In(\"created\").Has(\"age\", 29).As(\"c\")).Where(__.As(\"c\").Repeat(__.Out()).Times(2)).Select(\"a\", \"b\", \"c\")", "go": "g.WithoutStrategies(gremlingo.MatchPredicateStrategy()).V().Match(gremlingo.T__.As(\"a\").Out(\"created\").Has(\"name\", \"lop\").As(\"b\"), gremlingo.T__.As(\"b\").In(\"created\").Has(\"age\", 29).As(\"c\")).Where(gremlingo.T__.As(\"c\").Repeat(gremlingo.T__.Out()).Times(2)).Select(\"a\", \"b\", \"c\")", "groovy": "g.withoutStrategies(MatchPredicateStrategy).V().match(__.as(\"a\").out(\"created\").has(\"name\", \"lop\").as(\"b\"), __.as(\"b\").in(\"created\").has(\"age\", 29).as(\"c\")).where(__.as(\"c\").repeat(__.out()).times(2)).select(\"a\", \"b\", \"c\")", "java": "g.withoutStrategies(MatchPredicateStrategy.class).V().match(__.as(\"a\").out(\"created\").has(\"name\", \"lop\").as(\"b\"), __.as(\"b\").in(\"created\").has(\"age\", 29).as(\"c\")).where(__.as(\"c\").repeat(__.out()).times(2)).select(\"a\", \"b\", \"c\")", @@ -13113,6 +13917,7 @@ "canonical": "g.withStrategies(MessagePassingReductionStrategy).V()", "anonymized": "g.withStrategies(MessagePassingReductionStrategy).V()", "dotnet": "g.WithStrategies(new MessagePassingReductionStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new MessagePassingReductionStrategy()).V()", "go": "g.WithStrategies(gremlingo.MessagePassingReductionStrategy()).V()", "groovy": "g.withStrategies(MessagePassingReductionStrategy).V()", "java": "g.withStrategies(MessagePassingReductionStrategy.instance()).V()", @@ -13130,6 +13935,7 @@ "canonical": "g.withoutStrategies(MessagePassingReductionStrategy).V()", "anonymized": "g.withoutStrategies(MessagePassingReductionStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(MessagePassingReductionStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(MessagePassingReductionStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.MessagePassingReductionStrategy()).V()", "groovy": "g.withoutStrategies(MessagePassingReductionStrategy).V()", "java": "g.withoutStrategies(MessagePassingReductionStrategy.class).V()", @@ -13147,6 +13953,7 @@ "canonical": "g.V().hasLabel(\"person\").filter(__.outE(\"created\")).aggregate(\"p\").as(\"p1\").values(\"name\").as(\"p1n\").select(\"p\").unfold().where(P.neq(\"p1\")).as(\"p2\").values(\"name\").as(\"p2n\").select(\"p2\").out(\"created\").choose(__.in(\"created\").where(P.eq(\"p1\")), __.values(\"name\"), __.constant([])).group().by(__.select(\"p1n\")).by(__.group().by(__.select(\"p2n\")).by(__.unfold().fold().project(\"numCoCreated\", \"coCreated\").by(__.count(Scope.local)).by())).unfold()", "anonymized": "g.V().hasLabel(string0).filter(__.outE(string1)).aggregate(string2).as(string3).values(string4).as(string5).select(string2).unfold().where(P.neq(string3)).as(string6).values(string4).as(string7).select(string6).out(string1).choose(__.in(string1).where(P.eq(string3)), __.values(string4), __.constant(list0)).group().by(__.select(string5)).by(__.group().by(__.select(string7)).by(__.unfold().fold().project(string8, string9).by(__.count(Scope.local)).by())).unfold()", "dotnet": "g.V().HasLabel(\"person\").Filter(__.OutE(\"created\")).Aggregate(\"p\").As(\"p1\").Values(\"name\").As(\"p1n\").Select(\"p\").Unfold().Where(P.Neq(\"p1\")).As(\"p2\").Values(\"name\").As(\"p2n\").Select(\"p2\").Out(\"created\").Choose(__.In(\"created\").Where(P.Eq(\"p1\")), __.Values(\"name\"), __.Constant(new List { })).Group().By(__.Select(\"p1n\")).By(__.Group().By(__.Select(\"p2n\")).By(__.Unfold().Fold().Project(\"numCoCreated\", \"coCreated\").By(__.Count(Scope.Local)).By())).Unfold()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Filter(__.OutE(\"created\")).Aggregate(\"p\").As(\"p1\").Values(\"name\").As(\"p1n\").Select(\"p\").Unfold().Where(P.Neq(\"p1\")).As(\"p2\").Values(\"name\").As(\"p2n\").Select(\"p2\").Out(\"created\").Choose(__.In(\"created\").Where(P.Eq(\"p1\")), __.Values(\"name\"), __.Constant(new List { })).Group().By(__.Select(\"p1n\")).By(__.Group().By(__.Select(\"p2n\")).By(__.Unfold().Fold().Project(\"numCoCreated\", \"coCreated\").By(__.Count(Scope.Local)).By())).Unfold()", "go": "g.V().HasLabel(\"person\").Filter(gremlingo.T__.OutE(\"created\")).Aggregate(\"p\").As(\"p1\").Values(\"name\").As(\"p1n\").Select(\"p\").Unfold().Where(gremlingo.P.Neq(\"p1\")).As(\"p2\").Values(\"name\").As(\"p2n\").Select(\"p2\").Out(\"created\").Choose(gremlingo.T__.In(\"created\").Where(gremlingo.P.Eq(\"p1\")), gremlingo.T__.Values(\"name\"), gremlingo.T__.Constant([]interface{}{})).Group().By(gremlingo.T__.Select(\"p1n\")).By(gremlingo.T__.Group().By(gremlingo.T__.Select(\"p2n\")).By(gremlingo.T__.Unfold().Fold().Project(\"numCoCreated\", \"coCreated\").By(gremlingo.T__.Count(gremlingo.Scope.Local)).By())).Unfold()", "groovy": "g.V().hasLabel(\"person\").filter(__.outE(\"created\")).aggregate(\"p\").as(\"p1\").values(\"name\").as(\"p1n\").select(\"p\").unfold().where(P.neq(\"p1\")).as(\"p2\").values(\"name\").as(\"p2n\").select(\"p2\").out(\"created\").choose(__.in(\"created\").where(P.eq(\"p1\")), __.values(\"name\"), __.constant([])).group().by(__.select(\"p1n\")).by(__.group().by(__.select(\"p2n\")).by(__.unfold().fold().project(\"numCoCreated\", \"coCreated\").by(__.count(Scope.local)).by())).unfold()", "java": "g.V().hasLabel(\"person\").filter(__.outE(\"created\")).aggregate(\"p\").as(\"p1\").values(\"name\").as(\"p1n\").select(\"p\").unfold().where(P.neq(\"p1\")).as(\"p2\").values(\"name\").as(\"p2n\").select(\"p2\").out(\"created\").choose(__.in(\"created\").where(P.eq(\"p1\")), __.values(\"name\"), __.constant(new ArrayList() {{ }})).group().by(__.select(\"p1n\")).by(__.group().by(__.select(\"p2n\")).by(__.unfold().fold().project(\"numCoCreated\", \"coCreated\").by(__.count(Scope.local)).by())).unfold()", @@ -13164,6 +13971,7 @@ "canonical": "g.V().hasLabel(\"person\").filter(__.outE(\"created\")).as(\"p1\").V().hasLabel(\"person\").where(P.neq(\"p1\")).filter(__.outE(\"created\")).as(\"p2\").map(__.out(\"created\").where(__.in(\"created\").as(\"p1\")).values(\"name\").fold()).group().by(__.select(\"p1\").by(\"name\")).by(__.group().by(__.select(\"p2\").by(\"name\")).by(__.project(\"numCoCreated\", \"coCreated\").by(__.count(Scope.local)).by())).unfold()", "anonymized": "g.V().hasLabel(string0).filter(__.outE(string1)).as(string2).V().hasLabel(string0).where(P.neq(string2)).filter(__.outE(string1)).as(string3).map(__.out(string1).where(__.in(string1).as(string2)).values(string4).fold()).group().by(__.select(string2).by(string4)).by(__.group().by(__.select(string3).by(string4)).by(__.project(string5, string6).by(__.count(Scope.local)).by())).unfold()", "dotnet": "g.V().HasLabel(\"person\").Filter(__.OutE(\"created\")).As(\"p1\").V().HasLabel(\"person\").Where(P.Neq(\"p1\")).Filter(__.OutE(\"created\")).As(\"p2\").Map(__.Out(\"created\").Where(__.In(\"created\").As(\"p1\")).Values(\"name\").Fold()).Group().By(__.Select(\"p1\").By(\"name\")).By(__.Group().By(__.Select(\"p2\").By(\"name\")).By(__.Project(\"numCoCreated\", \"coCreated\").By(__.Count(Scope.Local)).By())).Unfold()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Filter(__.OutE(\"created\")).As(\"p1\").V().HasLabel(\"person\").Where(P.Neq(\"p1\")).Filter(__.OutE(\"created\")).As(\"p2\").Map(__.Out(\"created\").Where(__.In(\"created\").As(\"p1\")).Values(\"name\").Fold()).Group().By(__.Select(\"p1\").By(\"name\")).By(__.Group().By(__.Select(\"p2\").By(\"name\")).By(__.Project(\"numCoCreated\", \"coCreated\").By(__.Count(Scope.Local)).By())).Unfold()", "go": "g.V().HasLabel(\"person\").Filter(gremlingo.T__.OutE(\"created\")).As(\"p1\").V().HasLabel(\"person\").Where(gremlingo.P.Neq(\"p1\")).Filter(gremlingo.T__.OutE(\"created\")).As(\"p2\").Map(gremlingo.T__.Out(\"created\").Where(gremlingo.T__.In(\"created\").As(\"p1\")).Values(\"name\").Fold()).Group().By(gremlingo.T__.Select(\"p1\").By(\"name\")).By(gremlingo.T__.Group().By(gremlingo.T__.Select(\"p2\").By(\"name\")).By(gremlingo.T__.Project(\"numCoCreated\", \"coCreated\").By(gremlingo.T__.Count(gremlingo.Scope.Local)).By())).Unfold()", "groovy": "g.V().hasLabel(\"person\").filter(__.outE(\"created\")).as(\"p1\").V().hasLabel(\"person\").where(P.neq(\"p1\")).filter(__.outE(\"created\")).as(\"p2\").map(__.out(\"created\").where(__.in(\"created\").as(\"p1\")).values(\"name\").fold()).group().by(__.select(\"p1\").by(\"name\")).by(__.group().by(__.select(\"p2\").by(\"name\")).by(__.project(\"numCoCreated\", \"coCreated\").by(__.count(Scope.local)).by())).unfold()", "java": "g.V().hasLabel(\"person\").filter(__.outE(\"created\")).as(\"p1\").V().hasLabel(\"person\").where(P.neq(\"p1\")).filter(__.outE(\"created\")).as(\"p2\").map(__.out(\"created\").where(__.in(\"created\").as(\"p1\")).values(\"name\").fold()).group().by(__.select(\"p1\").by(\"name\")).by(__.group().by(__.select(\"p2\").by(\"name\")).by(__.project(\"numCoCreated\", \"coCreated\").by(__.count(Scope.local)).by())).unfold()", @@ -13181,6 +13989,7 @@ "canonical": "g.withStrategies(OptionsStrategy).V()", "anonymized": "g.withStrategies(OptionsStrategy).V()", "dotnet": "g.WithStrategies(new OptionsStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new OptionsStrategy()).V()", "go": "g.WithStrategies(gremlingo.OptionsStrategy()).V()", "groovy": "g.withStrategies(OptionsStrategy).V()", "java": "g.withStrategies(OptionsStrategy.instance()).V()", @@ -13198,6 +14007,7 @@ "canonical": "g.withStrategies(OptionsStrategy(myVar:\"myValue\")).V()", "anonymized": "g.withStrategies(OptionsStrategy(myVar:string0)).V()", "dotnet": "g.WithStrategies(new OptionsStrategy(new Dictionary {{\"myVar\",\"myValue\"},})).V()", + "dotnet_parameterize": "g.WithStrategies(new OptionsStrategy(new Dictionary {{\"myVar\",\"myValue\"},})).V()", "go": "g.WithStrategies(gremlingo.OptionsStrategy(map[string]interface{}{\"myVar\": \"myValue\"})).V()", "groovy": "g.withStrategies(new OptionsStrategy(myVar:\"myValue\")).V()", "java": "g.withStrategies(OptionsStrategy.build().myVar(\"myValue\").create()).V()", @@ -13215,6 +14025,7 @@ "canonical": "g.withoutStrategies(OptionsStrategy).V()", "anonymized": "g.withoutStrategies(OptionsStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(OptionsStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(OptionsStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.OptionsStrategy()).V()", "groovy": "g.withoutStrategies(OptionsStrategy).V()", "java": "g.withoutStrategies(OptionsStrategy.class).V()", @@ -13232,6 +14043,7 @@ "canonical": "g.withStrategies(OrderLimitStrategy).V()", "anonymized": "g.withStrategies(OrderLimitStrategy).V()", "dotnet": "g.WithStrategies(new OrderLimitStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new OrderLimitStrategy()).V()", "go": "g.WithStrategies(gremlingo.OrderLimitStrategy()).V()", "groovy": "g.withStrategies(OrderLimitStrategy).V()", "java": "g.withStrategies(OrderLimitStrategy.instance()).V()", @@ -13249,6 +14061,7 @@ "canonical": "g.withoutStrategies(OrderLimitStrategy).V()", "anonymized": "g.withoutStrategies(OrderLimitStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(OrderLimitStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(OrderLimitStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.OrderLimitStrategy()).V()", "groovy": "g.withoutStrategies(OrderLimitStrategy).V()", "java": "g.withoutStrategies(OrderLimitStrategy.class).V()", @@ -13266,6 +14079,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).addV(string0).property(string1, string5).property(string3, string6)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\")", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\")", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\")", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\")", @@ -13278,6 +14092,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).V().values(\"name\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).V().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).V().Values(\"name\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).V().Values(\"name\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).V().values(\"name\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).V().values(\"name\")", @@ -13295,6 +14110,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).addV(string0).property(string1, string5).property(string3, string6)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\")", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\")", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\")", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\")", @@ -13307,6 +14123,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\", \"b\"])).V().values(\"name\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\", \"b\" })).V().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\", \"b\" })).V().Values(\"name\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\", \"b\")})).V().Values(\"name\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\", \"b\"])).V().values(\"name\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); add(\"b\"); }}).create()).V().values(\"name\")", @@ -13324,6 +14141,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).addV(string0).property(string1, string5).property(string3, string6)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\")", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\")", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\")", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\")", @@ -13336,6 +14154,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"c\"])).V().values(\"name\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"c\" })).V().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"c\" })).V().Values(\"name\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"c\")})).V().Values(\"name\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"c\"])).V().values(\"name\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"c\"); }}).create()).V().values(\"name\")", @@ -13353,6 +14172,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).as(string2).addV(string0).property(string1, string5).property(string3, string6).as(string5).addE(string7).from(string2).to(string5).property(string1, string2).property(string8, double0).addE(string7).from(string5).to(string2).property(string1, string5).property(string8, double1)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0).AddE(\"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0)", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", @@ -13365,6 +14185,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).V().bothE().values(\"weight\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().bothE().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).V().BothE().Values(\"weight\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).V().BothE().Values(\"weight\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).V().BothE().Values(\"weight\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).V().bothE().values(\"weight\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).V().bothE().values(\"weight\")", @@ -13382,6 +14203,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).as(string2).addV(string0).property(string1, string5).property(string3, string6).as(string5).addE(string7).from(string2).to(string5).property(string1, string2).property(string8, double0).addE(string7).from(string5).to(string2).property(string1, string5).property(string8, double1)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0).AddE(\"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0)", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", @@ -13394,6 +14216,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"b\"])).V().bothE().values(\"weight\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().bothE().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"b\" })).V().BothE().Values(\"weight\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"b\" })).V().BothE().Values(\"weight\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"b\")})).V().BothE().Values(\"weight\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"b\"])).V().bothE().values(\"weight\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"b\"); }}).create()).V().bothE().values(\"weight\")", @@ -13411,6 +14234,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).as(string2).addV(string0).property(string1, string5).property(string3, string6).as(string5).addE(string7).from(string2).to(string5).property(string1, string2).property(string8, double0).addE(string7).from(string5).to(string2).property(string1, string5).property(string8, double1)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0).AddE(\"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0)", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", @@ -13423,6 +14247,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\", \"b\"])).V().bothE().dedup().values(\"weight\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().bothE().dedup().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\", \"b\" })).V().BothE().Dedup().Values(\"weight\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\", \"b\" })).V().BothE().Dedup().Values(\"weight\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\", \"b\")})).V().BothE().Dedup().Values(\"weight\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\", \"b\"])).V().bothE().dedup().values(\"weight\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); add(\"b\"); }}).create()).V().bothE().dedup().values(\"weight\")", @@ -13440,6 +14265,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).as(string2).addV(string0).property(string1, string5).property(string3, string6).as(string5).addE(string7).from(string2).to(string5).property(string1, string2).property(string8, double0).addE(string7).from(string5).to(string2).property(string1, string5).property(string8, double1)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0).AddE(\"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0)", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", @@ -13452,6 +14278,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"c\"])).V().bothE().values(\"weight\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().bothE().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"c\" })).V().BothE().Values(\"weight\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"c\" })).V().BothE().Values(\"weight\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"c\")})).V().BothE().Values(\"weight\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"c\"])).V().bothE().values(\"weight\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"c\"); }}).create()).V().bothE().values(\"weight\")", @@ -13469,6 +14296,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).as(string2).addV(string0).property(string1, string5).property(string3, string6).as(string5).addE(string7).from(string2).to(string5).property(string1, string2).property(string8, double0).addE(string7).from(string5).to(string2).property(string1, string5).property(string8, double1)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0).AddE(\"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0)", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", @@ -13481,6 +14309,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).V().both().values(\"name\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().both().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).V().Both().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).V().Both().Values(\"name\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).V().Both().Values(\"name\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).V().both().values(\"name\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).V().both().values(\"name\")", @@ -13498,6 +14327,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).as(string2).addV(string0).property(string1, string5).property(string3, string6).as(string5).addE(string7).from(string2).to(string5).property(string1, string2).property(string8, double0).addE(string7).from(string5).to(string2).property(string1, string5).property(string8, double1)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0).AddE(\"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0)", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", @@ -13510,6 +14340,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"b\"])).V().both().values(\"name\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().both().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"b\" })).V().Both().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"b\" })).V().Both().Values(\"name\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"b\")})).V().Both().Values(\"name\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"b\"])).V().both().values(\"name\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"b\"); }}).create()).V().both().values(\"name\")", @@ -13527,6 +14358,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).as(string2).addV(string0).property(string1, string5).property(string3, string6).as(string5).addE(string7).from(string2).to(string5).property(string1, string2).property(string8, double0).addE(string7).from(string5).to(string2).property(string1, string5).property(string8, double1)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0).AddE(\"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0)", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", @@ -13539,6 +14371,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\", \"b\"])).V().both().dedup().values(\"name\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().both().dedup().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\", \"b\" })).V().Both().Dedup().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\", \"b\" })).V().Both().Dedup().Values(\"name\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\", \"b\")})).V().Both().Dedup().Values(\"name\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\", \"b\"])).V().both().dedup().values(\"name\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); add(\"b\"); }}).create()).V().both().dedup().values(\"name\")", @@ -13556,6 +14389,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).as(string2).addV(string0).property(string1, string5).property(string3, string6).as(string5).addE(string7).from(string2).to(string5).property(string1, string2).property(string8, double0).addE(string7).from(string5).to(string2).property(string1, string5).property(string8, double1)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0).AddE(\"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0)", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", @@ -13568,6 +14402,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"c\"])).V().both().values(\"name\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().both().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"c\" })).V().Both().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"c\" })).V().Both().Values(\"name\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"c\")})).V().Both().Values(\"name\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"c\"])).V().both().values(\"name\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"c\"); }}).create()).V().both().values(\"name\")", @@ -13585,6 +14420,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).as(string2).addV(string0).property(string1, string5).property(string3, string6).as(string5).addE(string7).from(string2).to(string5).property(string1, string2).property(string8, double0).addE(string7).from(string5).to(string2).property(string1, string5).property(string8, double1)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0).AddE(\"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0)", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", @@ -13597,6 +14433,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).V().out().values(\"name\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().out().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).V().Out().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).V().Out().Values(\"name\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).V().Out().Values(\"name\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).V().out().values(\"name\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).V().out().values(\"name\")", @@ -13614,6 +14451,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).as(string2).addV(string0).property(string1, string5).property(string3, string6).as(string5).addE(string7).from(string2).to(string5).property(string1, string2).property(string8, double0).addE(string7).from(string5).to(string2).property(string1, string5).property(string8, double1)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0).AddE(\"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0)", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", @@ -13626,6 +14464,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"b\"])).V().in().values(\"name\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().in().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"b\" })).V().In().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"b\" })).V().In().Values(\"name\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"b\")})).V().In().Values(\"name\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"b\"])).V().in().values(\"name\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"b\"); }}).create()).V().in().values(\"name\")", @@ -13643,6 +14482,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).as(string2).addV(string0).property(string1, string5).property(string3, string6).as(string5).addE(string7).from(string2).to(string5).property(string1, string2).property(string8, double0).addE(string7).from(string5).to(string2).property(string1, string5).property(string8, double1)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0).AddE(\"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0)", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", @@ -13655,6 +14495,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\", \"b\"])).V().out().values(\"name\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().out().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\", \"b\" })).V().Out().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\", \"b\" })).V().Out().Values(\"name\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\", \"b\")})).V().Out().Values(\"name\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\", \"b\"])).V().out().values(\"name\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); add(\"b\"); }}).create()).V().out().values(\"name\")", @@ -13672,6 +14513,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).as(string2).addV(string0).property(string1, string5).property(string3, string6).as(string5).addE(string7).from(string2).to(string5).property(string1, string2).property(string8, double0).addE(string7).from(string5).to(string2).property(string1, string5).property(string8, double1)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0d).AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0d)", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"_partition\", \"a\").Property(\"weight\", 1.0).AddE(\"knows\").From(\"b\").To(\"a\").Property(\"_partition\", \"b\").Property(\"weight\", 2.0)", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"_partition\", \"a\").property(\"weight\", 1.0d).addE(\"knows\").from(\"b\").to(\"a\").property(\"_partition\", \"b\").property(\"weight\", 2.0d)", @@ -13684,6 +14526,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"c\"])).V().out().values(\"name\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).V().out().values(string2)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"c\" })).V().Out().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"c\" })).V().Out().Values(\"name\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"c\")})).V().Out().Values(\"name\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"c\"])).V().out().values(\"name\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"c\"); }}).create()).V().out().values(\"name\")", @@ -13701,6 +14544,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).addV(\"person\").property(\"name\", \"alice\").addE(\"self\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).addV(string2).property(string3, string4).addE(string5)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).AddV((string) \"person\").Property(\"name\", \"alice\").AddE((string) \"self\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).AddV((string) \"person\").Property(\"name\", \"alice\").AddE((string) \"self\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).AddV(\"person\").Property(\"name\", \"alice\").AddE(\"self\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).addV(\"person\").property(\"name\", \"alice\").addE(\"self\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).addV(\"person\").property(\"name\", \"alice\").addE(\"self\")", @@ -13713,6 +14557,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").has(\"_partition\", \"a\")", "anonymized": "g.V().has(string0, string1, string2).has(string3, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"_partition\", \"a\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"_partition\", \"a\")", "go": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"_partition\", \"a\")", "groovy": "g.V().has(\"person\", \"name\", \"alice\").has(\"_partition\", \"a\")", "java": "g.V().has(\"person\", \"name\", \"alice\").has(\"_partition\", \"a\")", @@ -13725,6 +14570,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -13737,6 +14583,7 @@ "canonical": "g.E().has(\"_partition\", \"a\")", "anonymized": "g.E().has(string0, string1)", "dotnet": "g.E().Has(\"_partition\", \"a\")", + "dotnet_parameterize": "g.E().Has(\"_partition\", \"a\")", "go": "g.E().Has(\"_partition\", \"a\")", "groovy": "g.E().has(\"_partition\", \"a\")", "java": "g.E().has(\"_partition\", \"a\")", @@ -13749,6 +14596,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -13766,6 +14614,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).inject(0).addV(\"person\").property(\"name\", \"alice\").addE(\"self\")", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).inject(number0).addV(string2).property(string3, string4).addE(string5)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).Inject(0).AddV((string) \"person\").Property(\"name\", \"alice\").AddE((string) \"self\")", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).Inject(0).AddV((string) \"person\").Property(\"name\", \"alice\").AddE((string) \"self\")", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).Inject(0).AddV(\"person\").Property(\"name\", \"alice\").AddE(\"self\")", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).inject(0).addV(\"person\").property(\"name\", \"alice\").addE(\"self\")", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).inject(0).addV(\"person\").property(\"name\", \"alice\").addE(\"self\")", @@ -13778,6 +14627,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").has(\"_partition\", \"a\")", "anonymized": "g.V().has(string0, string1, string2).has(string3, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"_partition\", \"a\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"_partition\", \"a\")", "go": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"_partition\", \"a\")", "groovy": "g.V().has(\"person\", \"name\", \"alice\").has(\"_partition\", \"a\")", "java": "g.V().has(\"person\", \"name\", \"alice\").has(\"_partition\", \"a\")", @@ -13790,6 +14640,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -13802,6 +14653,7 @@ "canonical": "g.E().has(\"_partition\", \"a\")", "anonymized": "g.E().has(string0, string1)", "dotnet": "g.E().Has(\"_partition\", \"a\")", + "dotnet_parameterize": "g.E().Has(\"_partition\", \"a\")", "go": "g.E().Has(\"_partition\", \"a\")", "groovy": "g.E().has(\"_partition\", \"a\")", "java": "g.E().has(\"_partition\", \"a\")", @@ -13814,6 +14666,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -13831,6 +14684,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).mergeV(xx1)", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).mergeV(map0)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).MergeV((IDictionary) xx1)", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).MergeV(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).MergeV(xx1)", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).mergeV(xx1)", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).mergeV(xx1)", @@ -13843,6 +14697,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").has(\"_partition\", \"a\")", "anonymized": "g.V().has(string0, string1, string2).has(string3, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"_partition\", \"a\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"_partition\", \"a\")", "go": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"_partition\", \"a\")", "groovy": "g.V().has(\"person\", \"name\", \"alice\").has(\"_partition\", \"a\")", "java": "g.V().has(\"person\", \"name\", \"alice\").has(\"_partition\", \"a\")", @@ -13855,6 +14710,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -13872,6 +14728,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).inject(0).mergeV(xx1)", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).inject(number0).mergeV(map0)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).Inject(0).MergeV((IDictionary) xx1)", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).Inject(0).MergeV(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).Inject(0).MergeV(xx1)", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).inject(0).mergeV(xx1)", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).inject(0).mergeV(xx1)", @@ -13884,6 +14741,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").has(\"_partition\", \"a\")", "anonymized": "g.V().has(string0, string1, string2).has(string3, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"_partition\", \"a\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"_partition\", \"a\")", "go": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"_partition\", \"a\")", "groovy": "g.V().has(\"person\", \"name\", \"alice\").has(\"_partition\", \"a\")", "java": "g.V().has(\"person\", \"name\", \"alice\").has(\"_partition\", \"a\")", @@ -13896,6 +14754,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -13913,6 +14772,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"bob\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).addV(string0).property(string1, string2).property(string3, string5)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"bob\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"bob\")", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"bob\")", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"bob\")", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"bob\")", @@ -13925,6 +14785,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).mergeE(xx1)", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).mergeE(map0)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).MergeE((IDictionary) xx1)", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).MergeE(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).MergeE(xx1)", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).mergeE(xx1)", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).mergeE(xx1)", @@ -13937,6 +14798,7 @@ "canonical": "g.E().has(\"knows\", \"_partition\", \"a\")", "anonymized": "g.E().has(string0, string1, string2)", "dotnet": "g.E().Has(\"knows\", \"_partition\", \"a\")", + "dotnet_parameterize": "g.E().Has(\"knows\", \"_partition\", \"a\")", "go": "g.E().Has(\"knows\", \"_partition\", \"a\")", "groovy": "g.E().has(\"knows\", \"_partition\", \"a\")", "java": "g.E().has(\"knows\", \"_partition\", \"a\")", @@ -13949,6 +14811,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -13966,6 +14829,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"bob\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).addV(string0).property(string1, string2).property(string3, string5)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"bob\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"bob\")", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"bob\")", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"bob\")", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"bob\")", @@ -13978,6 +14842,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).inject(0).mergeE(xx1)", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).inject(number0).mergeE(map0)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).Inject(0).MergeE((IDictionary) xx1)", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).Inject(0).MergeE(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).Inject(0).MergeE(xx1)", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).inject(0).mergeE(xx1)", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).inject(0).mergeE(xx1)", @@ -13990,6 +14855,7 @@ "canonical": "g.E().has(\"knows\", \"_partition\", \"a\")", "anonymized": "g.E().has(string0, string1, string2)", "dotnet": "g.E().Has(\"knows\", \"_partition\", \"a\")", + "dotnet_parameterize": "g.E().Has(\"knows\", \"_partition\", \"a\")", "go": "g.E().Has(\"knows\", \"_partition\", \"a\")", "groovy": "g.E().has(\"knows\", \"_partition\", \"a\")", "java": "g.E().has(\"knows\", \"_partition\", \"a\")", @@ -14002,6 +14868,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -14019,6 +14886,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"alice\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).addV(string0).property(string1, string5).property(string3, string4)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"alice\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"alice\")", "go": "g.AddV(\"person\").Property(\"_partition\", \"a\").Property(\"name\", \"alice\").AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"alice\")", "groovy": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"alice\")", "java": "g.addV(\"person\").property(\"_partition\", \"a\").property(\"name\", \"alice\").addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"alice\")", @@ -14031,6 +14899,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).mergeV(xx1).option(Merge.onMatch, xx2)", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).MergeV((IDictionary) xx1).Option(Merge.OnMatch, (IDictionary) xx2)", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnMatch, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).MergeV(xx1).Option(gremlingo.Merge.OnMatch, xx2)", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).mergeV(xx1).option(Merge.onMatch, xx2)", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).mergeV(xx1).option(Merge.onMatch, xx2)", @@ -14043,6 +14912,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"bob\").has(\"_partition\", \"a\")", "anonymized": "g.V().has(string0, string1, string2).has(string3, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"bob\").Has(\"_partition\", \"a\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"bob\").Has(\"_partition\", \"a\")", "go": "g.V().Has(\"person\", \"name\", \"bob\").Has(\"_partition\", \"a\")", "groovy": "g.V().has(\"person\", \"name\", \"bob\").has(\"_partition\", \"a\")", "java": "g.V().has(\"person\", \"name\", \"bob\").has(\"_partition\", \"a\")", @@ -14055,6 +14925,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -14072,6 +14943,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"alice\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"alice\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"alice\")", "go": "g.AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"alice\")", "groovy": "g.addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"alice\")", "java": "g.addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"alice\")", @@ -14084,6 +14956,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).mergeV(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).MergeV((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).MergeV(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).mergeV(xx1).option(Merge.onCreate, xx2)", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).mergeV(xx1).option(Merge.onCreate, xx2)", @@ -14096,6 +14969,7 @@ "canonical": "g.V().has(\"name\", \"alice\").has(\"age\", 35).has(\"_partition\", \"a\")", "anonymized": "g.V().has(string0, string1).has(string2, number0).has(string3, string4)", "dotnet": "g.V().Has(\"name\", \"alice\").Has(\"age\", 35).Has(\"_partition\", \"a\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"alice\").Has(\"age\", 35).Has(\"_partition\", \"a\")", "go": "g.V().Has(\"name\", \"alice\").Has(\"age\", 35).Has(\"_partition\", \"a\")", "groovy": "g.V().has(\"name\", \"alice\").has(\"age\", 35).has(\"_partition\", \"a\")", "java": "g.V().has(\"name\", \"alice\").has(\"age\", 35).has(\"_partition\", \"a\")", @@ -14108,6 +14982,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -14125,6 +15000,7 @@ "canonical": "g.addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"alice\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4)", "dotnet": "g.AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"alice\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"_partition\", \"b\").Property(\"name\", \"alice\")", "go": "g.AddV(\"person\").Property(\"_partition\", \"b\").Property(\"name\", \"alice\")", "groovy": "g.addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"alice\")", "java": "g.addV(\"person\").property(\"_partition\", \"b\").property(\"name\", \"alice\")", @@ -14137,6 +15013,7 @@ "canonical": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).inject(0).mergeV(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.withStrategies(new PartitionStrategy(partitionKey:string0, writePartition:string1, readPartitions:list0)).inject(number0).mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).Inject(0).MergeV((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.WithStrategies(new PartitionStrategy(partitionKey: \"_partition\", writePartition: \"a\", readPartitions: new HashSet { \"a\" })).Inject(0).MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.WithStrategies(gremlingo.PartitionStrategy(gremlingo.PartitionStrategyConfig{PartitionKey: \"_partition\", WritePartition: \"a\", ReadPartitions: gremlingo.NewSimpleSet(\"a\")})).Inject(0).MergeV(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.withStrategies(new PartitionStrategy(partitionKey:\"_partition\", writePartition:\"a\", readPartitions:[\"a\"])).inject(0).mergeV(xx1).option(Merge.onCreate, xx2)", "java": "g.withStrategies(PartitionStrategy.build().partitionKey(\"_partition\").writePartition(\"a\").readPartitions(new ArrayList() {{ add(\"a\"); }}).create()).inject(0).mergeV(xx1).option(Merge.onCreate, xx2)", @@ -14149,6 +15026,7 @@ "canonical": "g.V().has(\"name\", \"alice\").has(\"age\", 35).has(\"_partition\", \"a\")", "anonymized": "g.V().has(string0, string1).has(string2, number0).has(string3, string4)", "dotnet": "g.V().Has(\"name\", \"alice\").Has(\"age\", 35).Has(\"_partition\", \"a\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"alice\").Has(\"age\", 35).Has(\"_partition\", \"a\")", "go": "g.V().Has(\"name\", \"alice\").Has(\"age\", 35).Has(\"_partition\", \"a\")", "groovy": "g.V().has(\"name\", \"alice\").has(\"age\", 35).has(\"_partition\", \"a\")", "java": "g.V().has(\"name\", \"alice\").has(\"age\", 35).has(\"_partition\", \"a\")", @@ -14161,6 +15039,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -14178,6 +15057,7 @@ "canonical": "g.withStrategies(PathProcessorStrategy).V().as(\"a\").select(\"a\").by(__.values(\"name\"))", "anonymized": "g.withStrategies(PathProcessorStrategy).V().as(string0).select(string0).by(__.values(string1))", "dotnet": "g.WithStrategies(new PathProcessorStrategy()).V().As(\"a\").Select(\"a\").By(__.Values(\"name\"))", + "dotnet_parameterize": "g.WithStrategies(new PathProcessorStrategy()).V().As(\"a\").Select(\"a\").By(__.Values(\"name\"))", "go": "g.WithStrategies(gremlingo.PathProcessorStrategy()).V().As(\"a\").Select(\"a\").By(gremlingo.T__.Values(\"name\"))", "groovy": "g.withStrategies(PathProcessorStrategy).V().as(\"a\").select(\"a\").by(__.values(\"name\"))", "java": "g.withStrategies(PathProcessorStrategy.instance()).V().as(\"a\").select(\"a\").by(__.values(\"name\"))", @@ -14195,6 +15075,7 @@ "canonical": "g.withoutStrategies(PathProcessorStrategy).V().as(\"a\").select(\"a\").by(__.values(\"name\"))", "anonymized": "g.withoutStrategies(PathProcessorStrategy).V().as(string0).select(string0).by(__.values(string1))", "dotnet": "g.WithoutStrategies(typeof(PathProcessorStrategy)).V().As(\"a\").Select(\"a\").By(__.Values(\"name\"))", + "dotnet_parameterize": "g.WithoutStrategies(typeof(PathProcessorStrategy)).V().As(\"a\").Select(\"a\").By(__.Values(\"name\"))", "go": "g.WithoutStrategies(gremlingo.PathProcessorStrategy()).V().As(\"a\").Select(\"a\").By(gremlingo.T__.Values(\"name\"))", "groovy": "g.withoutStrategies(PathProcessorStrategy).V().as(\"a\").select(\"a\").by(__.values(\"name\"))", "java": "g.withoutStrategies(PathProcessorStrategy.class).V().as(\"a\").select(\"a\").by(__.values(\"name\"))", @@ -14212,6 +15093,7 @@ "canonical": "g.withStrategies(PathRetractionStrategy).V()", "anonymized": "g.withStrategies(PathRetractionStrategy).V()", "dotnet": "g.WithStrategies(new PathRetractionStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new PathRetractionStrategy()).V()", "go": "g.WithStrategies(gremlingo.PathRetractionStrategy()).V()", "groovy": "g.withStrategies(PathRetractionStrategy).V()", "java": "g.withStrategies(PathRetractionStrategy.instance()).V()", @@ -14229,6 +15111,7 @@ "canonical": "g.withoutStrategies(PathRetractionStrategy).V()", "anonymized": "g.withoutStrategies(PathRetractionStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(PathRetractionStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(PathRetractionStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.PathRetractionStrategy()).V()", "groovy": "g.withoutStrategies(PathRetractionStrategy).V()", "java": "g.withoutStrategies(PathRetractionStrategy.class).V()", @@ -14246,6 +15129,7 @@ "canonical": "g.V().as(\"v\").both().as(\"v\").project(\"src\", \"tgt\", \"p\").by(__.select(Pop.first, \"v\")).by(__.select(Pop.last, \"v\")).by(__.select(Pop.all, \"v\")).as(\"triple\").group(\"x\").by(__.select(\"src\", \"tgt\")).by(__.select(\"p\").fold()).select(\"tgt\").barrier().repeat(__.both().as(\"v\").project(\"src\", \"tgt\", \"p\").by(__.select(Pop.first, \"v\")).by(__.select(Pop.last, \"v\")).by(__.select(Pop.all, \"v\")).as(\"t\").filter(__.select(Pop.all, \"p\").count(Scope.local).as(\"l\").select(Pop.last, \"t\").select(Pop.all, \"p\").dedup(Scope.local).count(Scope.local).where(P.eq(\"l\"))).where(\"src\", P.neq(\"tgt\")).select(Pop.last, \"t\").not(__.select(Pop.all, \"p\").as(\"p\").count(Scope.local).as(\"l\").select(Pop.all, \"x\").unfold().filter(__.select(Column.keys).where(P.eq(\"t\")).by(__.select(\"src\", \"tgt\"))).filter(__.select(Column.values).unfold().or(__.count(Scope.local).where(P.lt(\"l\")), __.where(P.eq(\"p\"))))).barrier().group(\"x\").by(__.select(\"src\", \"tgt\")).by(__.select(Pop.all, \"p\").fold()).select(\"tgt\").barrier()).cap(\"x\").select(Column.values).unfold().unfold().map(__.unfold().values(\"name\").fold())", "anonymized": "g.V().as(string0).both().as(string0).project(string1, string2, string3).by(__.select(Pop.first, string0)).by(__.select(Pop.last, string0)).by(__.select(Pop.all, string0)).as(string4).group(string5).by(__.select(string1, string2)).by(__.select(string3).fold()).select(string2).barrier().repeat(__.both().as(string0).project(string1, string2, string3).by(__.select(Pop.first, string0)).by(__.select(Pop.last, string0)).by(__.select(Pop.all, string0)).as(string6).filter(__.select(Pop.all, string3).count(Scope.local).as(string7).select(Pop.last, string6).select(Pop.all, string3).dedup(Scope.local).count(Scope.local).where(P.eq(string7))).where(string1, P.neq(string2)).select(Pop.last, string6).not(__.select(Pop.all, string3).as(string3).count(Scope.local).as(string7).select(Pop.all, string5).unfold().filter(__.select(Column.keys).where(P.eq(string6)).by(__.select(string1, string2))).filter(__.select(Column.values).unfold().or(__.count(Scope.local).where(P.lt(string7)), __.where(P.eq(string3))))).barrier().group(string5).by(__.select(string1, string2)).by(__.select(Pop.all, string3).fold()).select(string2).barrier()).cap(string5).select(Column.values).unfold().unfold().map(__.unfold().values(string8).fold())", "dotnet": "g.V().As(\"v\").Both().As(\"v\").Project(\"src\", \"tgt\", \"p\").By(__.Select(Pop.First, \"v\")).By(__.Select(Pop.Last, \"v\")).By(__.Select(Pop.All, \"v\")).As(\"triple\").Group(\"x\").By(__.Select(\"src\", \"tgt\")).By(__.Select(\"p\").Fold()).Select(\"tgt\").Barrier().Repeat(__.Both().As(\"v\").Project(\"src\", \"tgt\", \"p\").By(__.Select(Pop.First, \"v\")).By(__.Select(Pop.Last, \"v\")).By(__.Select(Pop.All, \"v\")).As(\"t\").Filter(__.Select(Pop.All, \"p\").Count(Scope.Local).As(\"l\").Select(Pop.Last, \"t\").Select(Pop.All, \"p\").Dedup(Scope.Local).Count(Scope.Local).Where(P.Eq(\"l\"))).Where(\"src\", P.Neq(\"tgt\")).Select(Pop.Last, \"t\").Not(__.Select(Pop.All, \"p\").As(\"p\").Count(Scope.Local).As(\"l\").Select(Pop.All, \"x\").Unfold().Filter(__.Select(Column.Keys).Where(P.Eq(\"t\")).By(__.Select(\"src\", \"tgt\"))).Filter(__.Select(Column.Values).Unfold().Or(__.Count(Scope.Local).Where(P.Lt(\"l\")), __.Where(P.Eq(\"p\"))))).Barrier().Group(\"x\").By(__.Select(\"src\", \"tgt\")).By(__.Select(Pop.All, \"p\").Fold()).Select(\"tgt\").Barrier()).Cap(\"x\").Select(Column.Values).Unfold().Unfold().Map(__.Unfold().Values(\"name\").Fold())", + "dotnet_parameterize": "g.V().As(\"v\").Both().As(\"v\").Project(\"src\", \"tgt\", \"p\").By(__.Select(Pop.First, \"v\")).By(__.Select(Pop.Last, \"v\")).By(__.Select(Pop.All, \"v\")).As(\"triple\").Group(\"x\").By(__.Select(\"src\", \"tgt\")).By(__.Select(\"p\").Fold()).Select(\"tgt\").Barrier().Repeat(__.Both().As(\"v\").Project(\"src\", \"tgt\", \"p\").By(__.Select(Pop.First, \"v\")).By(__.Select(Pop.Last, \"v\")).By(__.Select(Pop.All, \"v\")).As(\"t\").Filter(__.Select(Pop.All, \"p\").Count(Scope.Local).As(\"l\").Select(Pop.Last, \"t\").Select(Pop.All, \"p\").Dedup(Scope.Local).Count(Scope.Local).Where(P.Eq(\"l\"))).Where(\"src\", P.Neq(\"tgt\")).Select(Pop.Last, \"t\").Not(__.Select(Pop.All, \"p\").As(\"p\").Count(Scope.Local).As(\"l\").Select(Pop.All, \"x\").Unfold().Filter(__.Select(Column.Keys).Where(P.Eq(\"t\")).By(__.Select(\"src\", \"tgt\"))).Filter(__.Select(Column.Values).Unfold().Or(__.Count(Scope.Local).Where(P.Lt(\"l\")), __.Where(P.Eq(\"p\"))))).Barrier().Group(\"x\").By(__.Select(\"src\", \"tgt\")).By(__.Select(Pop.All, \"p\").Fold()).Select(\"tgt\").Barrier()).Cap(\"x\").Select(Column.Values).Unfold().Unfold().Map(__.Unfold().Values(\"name\").Fold())", "go": "g.V().As(\"v\").Both().As(\"v\").Project(\"src\", \"tgt\", \"p\").By(gremlingo.T__.Select(gremlingo.Pop.First, \"v\")).By(gremlingo.T__.Select(gremlingo.Pop.Last, \"v\")).By(gremlingo.T__.Select(gremlingo.Pop.All, \"v\")).As(\"triple\").Group(\"x\").By(gremlingo.T__.Select(\"src\", \"tgt\")).By(gremlingo.T__.Select(\"p\").Fold()).Select(\"tgt\").Barrier().Repeat(gremlingo.T__.Both().As(\"v\").Project(\"src\", \"tgt\", \"p\").By(gremlingo.T__.Select(gremlingo.Pop.First, \"v\")).By(gremlingo.T__.Select(gremlingo.Pop.Last, \"v\")).By(gremlingo.T__.Select(gremlingo.Pop.All, \"v\")).As(\"t\").Filter(gremlingo.T__.Select(gremlingo.Pop.All, \"p\").Count(gremlingo.Scope.Local).As(\"l\").Select(gremlingo.Pop.Last, \"t\").Select(gremlingo.Pop.All, \"p\").Dedup(gremlingo.Scope.Local).Count(gremlingo.Scope.Local).Where(gremlingo.P.Eq(\"l\"))).Where(\"src\", gremlingo.P.Neq(\"tgt\")).Select(gremlingo.Pop.Last, \"t\").Not(gremlingo.T__.Select(gremlingo.Pop.All, \"p\").As(\"p\").Count(gremlingo.Scope.Local).As(\"l\").Select(gremlingo.Pop.All, \"x\").Unfold().Filter(gremlingo.T__.Select(gremlingo.Column.Keys).Where(gremlingo.P.Eq(\"t\")).By(gremlingo.T__.Select(\"src\", \"tgt\"))).Filter(gremlingo.T__.Select(gremlingo.Column.Values).Unfold().Or(gremlingo.T__.Count(gremlingo.Scope.Local).Where(gremlingo.P.Lt(\"l\")), gremlingo.T__.Where(gremlingo.P.Eq(\"p\"))))).Barrier().Group(\"x\").By(gremlingo.T__.Select(\"src\", \"tgt\")).By(gremlingo.T__.Select(gremlingo.Pop.All, \"p\").Fold()).Select(\"tgt\").Barrier()).Cap(\"x\").Select(gremlingo.Column.Values).Unfold().Unfold().Map(gremlingo.T__.Unfold().Values(\"name\").Fold())", "groovy": "g.V().as(\"v\").both().as(\"v\").project(\"src\", \"tgt\", \"p\").by(__.select(Pop.first, \"v\")).by(__.select(Pop.last, \"v\")).by(__.select(Pop.all, \"v\")).as(\"triple\").group(\"x\").by(__.select(\"src\", \"tgt\")).by(__.select(\"p\").fold()).select(\"tgt\").barrier().repeat(__.both().as(\"v\").project(\"src\", \"tgt\", \"p\").by(__.select(Pop.first, \"v\")).by(__.select(Pop.last, \"v\")).by(__.select(Pop.all, \"v\")).as(\"t\").filter(__.select(Pop.all, \"p\").count(Scope.local).as(\"l\").select(Pop.last, \"t\").select(Pop.all, \"p\").dedup(Scope.local).count(Scope.local).where(P.eq(\"l\"))).where(\"src\", P.neq(\"tgt\")).select(Pop.last, \"t\").not(__.select(Pop.all, \"p\").as(\"p\").count(Scope.local).as(\"l\").select(Pop.all, \"x\").unfold().filter(__.select(Column.keys).where(P.eq(\"t\")).by(__.select(\"src\", \"tgt\"))).filter(__.select(Column.values).unfold().or(__.count(Scope.local).where(P.lt(\"l\")), __.where(P.eq(\"p\"))))).barrier().group(\"x\").by(__.select(\"src\", \"tgt\")).by(__.select(Pop.all, \"p\").fold()).select(\"tgt\").barrier()).cap(\"x\").select(Column.values).unfold().unfold().map(__.unfold().values(\"name\").fold())", "java": "g.V().as(\"v\").both().as(\"v\").project(\"src\", \"tgt\", \"p\").by(__.select(Pop.first, \"v\")).by(__.select(Pop.last, \"v\")).by(__.select(Pop.all, \"v\")).as(\"triple\").group(\"x\").by(__.select(\"src\", \"tgt\")).by(__.select(\"p\").fold()).select(\"tgt\").barrier().repeat(__.both().as(\"v\").project(\"src\", \"tgt\", \"p\").by(__.select(Pop.first, \"v\")).by(__.select(Pop.last, \"v\")).by(__.select(Pop.all, \"v\")).as(\"t\").filter(__.select(Pop.all, \"p\").count(Scope.local).as(\"l\").select(Pop.last, \"t\").select(Pop.all, \"p\").dedup(Scope.local).count(Scope.local).where(P.eq(\"l\"))).where(\"src\", P.neq(\"tgt\")).select(Pop.last, \"t\").not(__.select(Pop.all, \"p\").as(\"p\").count(Scope.local).as(\"l\").select(Pop.all, \"x\").unfold().filter(__.select(Column.keys).where(P.eq(\"t\")).by(__.select(\"src\", \"tgt\"))).filter(__.select(Column.values).unfold().or(__.count(Scope.local).where(P.lt(\"l\")), __.where(P.eq(\"p\"))))).barrier().group(\"x\").by(__.select(\"src\", \"tgt\")).by(__.select(Pop.all, \"p\").fold()).select(\"tgt\").barrier()).cap(\"x\").select(Column.values).unfold().unfold().map(__.unfold().values(\"name\").fold())", @@ -14263,6 +15147,7 @@ "canonical": "g.withStrategies(SeedStrategy(seed:99999)).V().has(\"name\", \"Bob_Dylan\").in(\"sungBy\").as(\"a\").repeat(__.out().order().by(Order.shuffle).simplePath().from(\"a\")).until(__.out(\"writtenBy\").has(\"name\", \"Johnny_Cash\")).limit(1).as(\"b\").repeat(__.out().order().by(Order.shuffle).as(\"c\").simplePath().from(\"b\").to(\"c\")).until(__.out(\"sungBy\").has(\"name\", \"Grateful_Dead\")).limit(1).path().from(\"a\").unfold().project(\"song\", \"artists\").by(\"name\").by(__.coalesce(__.out(\"sungBy\", \"writtenBy\").dedup().values(\"name\"), __.constant(\"Unknown\")).fold())", "anonymized": "g.withStrategies(SeedStrategy(seed:number0)).V().has(string0, string1).in(string2).as(string3).repeat(__.out().order().by(Order.shuffle).simplePath().from(string3)).until(__.out(string4).has(string0, string5)).limit(number1).as(string6).repeat(__.out().order().by(Order.shuffle).as(string7).simplePath().from(string6).to(string7)).until(__.out(string2).has(string0, string8)).limit(number1).path().from(string3).unfold().project(string9, string10).by(string0).by(__.coalesce(__.out(string2, string4).dedup().values(string0), __.constant(string11)).fold())", "dotnet": "g.WithStrategies(new SeedStrategy(seed: 99999)).V().Has(\"name\", \"Bob_Dylan\").In(\"sungBy\").As(\"a\").Repeat(__.Out().Order().By(Order.Shuffle).SimplePath().From(\"a\")).Until(__.Out(\"writtenBy\").Has(\"name\", \"Johnny_Cash\")).Limit(1).As(\"b\").Repeat(__.Out().Order().By(Order.Shuffle).As(\"c\").SimplePath().From(\"b\").To(\"c\")).Until(__.Out(\"sungBy\").Has(\"name\", \"Grateful_Dead\")).Limit(1).Path().From(\"a\").Unfold().Project(\"song\", \"artists\").By(\"name\").By(__.Coalesce(__.Out(\"sungBy\", \"writtenBy\").Dedup().Values(\"name\"), __.Constant(\"Unknown\")).Fold())", + "dotnet_parameterize": "g.WithStrategies(new SeedStrategy(seed: 99999)).V().Has(\"name\", \"Bob_Dylan\").In(\"sungBy\").As(\"a\").Repeat(__.Out().Order().By(Order.Shuffle).SimplePath().From(\"a\")).Until(__.Out(\"writtenBy\").Has(\"name\", \"Johnny_Cash\")).Limit(1).As(\"b\").Repeat(__.Out().Order().By(Order.Shuffle).As(\"c\").SimplePath().From(\"b\").To(\"c\")).Until(__.Out(\"sungBy\").Has(\"name\", \"Grateful_Dead\")).Limit(1).Path().From(\"a\").Unfold().Project(\"song\", \"artists\").By(\"name\").By(__.Coalesce(__.Out(\"sungBy\", \"writtenBy\").Dedup().Values(\"name\"), __.Constant(\"Unknown\")).Fold())", "go": "g.WithStrategies(gremlingo.SeedStrategy(gremlingo.SeedStrategyConfig{Seed: 99999})).V().Has(\"name\", \"Bob_Dylan\").In(\"sungBy\").As(\"a\").Repeat(gremlingo.T__.Out().Order().By(gremlingo.Order.Shuffle).SimplePath().From(\"a\")).Until(gremlingo.T__.Out(\"writtenBy\").Has(\"name\", \"Johnny_Cash\")).Limit(1).As(\"b\").Repeat(gremlingo.T__.Out().Order().By(gremlingo.Order.Shuffle).As(\"c\").SimplePath().From(\"b\").To(\"c\")).Until(gremlingo.T__.Out(\"sungBy\").Has(\"name\", \"Grateful_Dead\")).Limit(1).Path().From(\"a\").Unfold().Project(\"song\", \"artists\").By(\"name\").By(gremlingo.T__.Coalesce(gremlingo.T__.Out(\"sungBy\", \"writtenBy\").Dedup().Values(\"name\"), gremlingo.T__.Constant(\"Unknown\")).Fold())", "groovy": "g.withStrategies(new SeedStrategy(seed:99999)).V().has(\"name\", \"Bob_Dylan\").in(\"sungBy\").as(\"a\").repeat(__.out().order().by(Order.shuffle).simplePath().from(\"a\")).until(__.out(\"writtenBy\").has(\"name\", \"Johnny_Cash\")).limit(1).as(\"b\").repeat(__.out().order().by(Order.shuffle).as(\"c\").simplePath().from(\"b\").to(\"c\")).until(__.out(\"sungBy\").has(\"name\", \"Grateful_Dead\")).limit(1).path().from(\"a\").unfold().project(\"song\", \"artists\").by(\"name\").by(__.coalesce(__.out(\"sungBy\", \"writtenBy\").dedup().values(\"name\"), __.constant(\"Unknown\")).fold())", "java": "g.withStrategies(SeedStrategy.build().seed(99999).create()).V().has(\"name\", \"Bob_Dylan\").in(\"sungBy\").as(\"a\").repeat(__.out().order().by(Order.shuffle).simplePath().from(\"a\")).until(__.out(\"writtenBy\").has(\"name\", \"Johnny_Cash\")).limit(1).as(\"b\").repeat(__.out().order().by(Order.shuffle).as(\"c\").simplePath().from(\"b\").to(\"c\")).until(__.out(\"sungBy\").has(\"name\", \"Grateful_Dead\")).limit(1).path().from(\"a\").unfold().project(\"song\", \"artists\").by(\"name\").by(__.coalesce(__.out(\"sungBy\", \"writtenBy\").dedup().values(\"name\"), __.constant(\"Unknown\")).fold())", @@ -14280,6 +15165,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().group().by(\"age\").by(\"name\")", "anonymized": "g.withStrategies(ProductiveByStrategy).V().group().by(string0).by(string1)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Group().By(\"age\").By(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Group().By(\"age\").By(\"name\")", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Group().By(\"age\").By(\"name\")", "groovy": "g.withStrategies(ProductiveByStrategy).V().group().by(\"age\").by(\"name\")", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().group().by(\"age\").by(\"name\")", @@ -14297,6 +15183,7 @@ "canonical": "g.withoutStrategies(ProductiveByStrategy).V().group().by(\"age\").by(\"name\")", "anonymized": "g.withoutStrategies(ProductiveByStrategy).V().group().by(string0).by(string1)", "dotnet": "g.WithoutStrategies(typeof(ProductiveByStrategy)).V().Group().By(\"age\").By(\"name\")", + "dotnet_parameterize": "g.WithoutStrategies(typeof(ProductiveByStrategy)).V().Group().By(\"age\").By(\"name\")", "go": "g.WithoutStrategies(gremlingo.ProductiveByStrategy()).V().Group().By(\"age\").By(\"name\")", "groovy": "g.withoutStrategies(ProductiveByStrategy).V().group().by(\"age\").by(\"name\")", "java": "g.withoutStrategies(ProductiveByStrategy.class).V().group().by(\"age\").by(\"name\")", @@ -14314,6 +15201,7 @@ "canonical": "g.withStrategies(ProfileStrategy).V()", "anonymized": "g.withStrategies(ProfileStrategy).V()", "dotnet": "g.WithStrategies(new ProfileStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new ProfileStrategy()).V()", "go": "g.WithStrategies(gremlingo.ProfileStrategy()).V()", "groovy": "g.withStrategies(ProfileStrategy).V()", "java": "g.withStrategies(ProfileStrategy.instance()).V()", @@ -14331,6 +15219,7 @@ "canonical": "g.withoutStrategies(ProfileStrategy).V()", "anonymized": "g.withoutStrategies(ProfileStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(ProfileStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(ProfileStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.ProfileStrategy()).V()", "groovy": "g.withoutStrategies(ProfileStrategy).V()", "java": "g.withoutStrategies(ProfileStrategy.class).V()", @@ -14348,6 +15237,7 @@ "canonical": "g.withStrategies(ReadOnlyStrategy).V()", "anonymized": "g.withStrategies(ReadOnlyStrategy).V()", "dotnet": "g.WithStrategies(new ReadOnlyStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new ReadOnlyStrategy()).V()", "go": "g.WithStrategies(gremlingo.ReadOnlyStrategy()).V()", "groovy": "g.withStrategies(ReadOnlyStrategy).V()", "java": "g.withStrategies(ReadOnlyStrategy.instance()).V()", @@ -14365,6 +15255,7 @@ "canonical": "g.withStrategies(ReadOnlyStrategy).V().out(\"knows\").values(\"name\")", "anonymized": "g.withStrategies(ReadOnlyStrategy).V().out(string0).values(string1)", "dotnet": "g.WithStrategies(new ReadOnlyStrategy()).V().Out(\"knows\").Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new ReadOnlyStrategy()).V().Out(\"knows\").Values(\"name\")", "go": "g.WithStrategies(gremlingo.ReadOnlyStrategy()).V().Out(\"knows\").Values(\"name\")", "groovy": "g.withStrategies(ReadOnlyStrategy).V().out(\"knows\").values(\"name\")", "java": "g.withStrategies(ReadOnlyStrategy.instance()).V().out(\"knows\").values(\"name\")", @@ -14382,6 +15273,7 @@ "canonical": "g.withStrategies(ReadOnlyStrategy).addV(\"person\")", "anonymized": "g.withStrategies(ReadOnlyStrategy).addV(string0)", "dotnet": "g.WithStrategies(new ReadOnlyStrategy()).AddV((string) \"person\")", + "dotnet_parameterize": "g.WithStrategies(new ReadOnlyStrategy()).AddV((string) \"person\")", "go": "g.WithStrategies(gremlingo.ReadOnlyStrategy()).AddV(\"person\")", "groovy": "g.withStrategies(ReadOnlyStrategy).addV(\"person\")", "java": "g.withStrategies(ReadOnlyStrategy.instance()).addV(\"person\")", @@ -14399,6 +15291,7 @@ "canonical": "g.withStrategies(ReadOnlyStrategy).addE(\"link\").from(__.V(vid1)).to(__.V(vid2))", "anonymized": "g.withStrategies(ReadOnlyStrategy).addE(string0).from(__.V(vid1)).to(__.V(vid2))", "dotnet": "g.WithStrategies(new ReadOnlyStrategy()).AddE((string) \"link\").From(__.V(vid1)).To(__.V(vid2))", + "dotnet_parameterize": "g.WithStrategies(new ReadOnlyStrategy()).AddE((string) \"link\").From(__.V(vid1)).To(__.V(vid2))", "go": "g.WithStrategies(gremlingo.ReadOnlyStrategy()).AddE(\"link\").From(gremlingo.T__.V(vid1)).To(gremlingo.T__.V(vid2))", "groovy": "g.withStrategies(ReadOnlyStrategy).addE(\"link\").from(__.V(vid1)).to(__.V(vid2))", "java": "g.withStrategies(ReadOnlyStrategy.instance()).addE(\"link\").from(__.V(vid1)).to(__.V(vid2))", @@ -14416,6 +15309,7 @@ "canonical": "g.withStrategies(ReadOnlyStrategy).V().addE(\"link\").from(__.V(vid1))", "anonymized": "g.withStrategies(ReadOnlyStrategy).V().addE(string0).from(__.V(vid1))", "dotnet": "g.WithStrategies(new ReadOnlyStrategy()).V().AddE((string) \"link\").From(__.V(vid1))", + "dotnet_parameterize": "g.WithStrategies(new ReadOnlyStrategy()).V().AddE((string) \"link\").From(__.V(vid1))", "go": "g.WithStrategies(gremlingo.ReadOnlyStrategy()).V().AddE(\"link\").From(gremlingo.T__.V(vid1))", "groovy": "g.withStrategies(ReadOnlyStrategy).V().addE(\"link\").from(__.V(vid1))", "java": "g.withStrategies(ReadOnlyStrategy.instance()).V().addE(\"link\").from(__.V(vid1))", @@ -14433,6 +15327,7 @@ "canonical": "g.withStrategies(ReadOnlyStrategy).V().property(\"name\", \"josh\")", "anonymized": "g.withStrategies(ReadOnlyStrategy).V().property(string0, string1)", "dotnet": "g.WithStrategies(new ReadOnlyStrategy()).V().Property(\"name\", \"josh\")", + "dotnet_parameterize": "g.WithStrategies(new ReadOnlyStrategy()).V().Property(\"name\", \"josh\")", "go": "g.WithStrategies(gremlingo.ReadOnlyStrategy()).V().Property(\"name\", \"josh\")", "groovy": "g.withStrategies(ReadOnlyStrategy).V().property(\"name\", \"josh\")", "java": "g.withStrategies(ReadOnlyStrategy.instance()).V().property(\"name\", \"josh\")", @@ -14450,6 +15345,7 @@ "canonical": "g.withStrategies(ReadOnlyStrategy).E().property(\"weight\", 0)", "anonymized": "g.withStrategies(ReadOnlyStrategy).E().property(string0, number0)", "dotnet": "g.WithStrategies(new ReadOnlyStrategy()).E().Property(\"weight\", 0)", + "dotnet_parameterize": "g.WithStrategies(new ReadOnlyStrategy()).E().Property(\"weight\", 0)", "go": "g.WithStrategies(gremlingo.ReadOnlyStrategy()).E().Property(\"weight\", 0)", "groovy": "g.withStrategies(ReadOnlyStrategy).E().property(\"weight\", 0)", "java": "g.withStrategies(ReadOnlyStrategy.instance()).E().property(\"weight\", 0)", @@ -14467,6 +15363,7 @@ "canonical": "g.V().has(\"name\", \"DARK STAR\").as(\"a\").out(\"followedBy\").aggregate(\"stash\").in(\"followedBy\").where(P.neq(\"a\").and(P.not(P.within(\"stash\")))).groupCount().unfold().project(\"x\", \"y\", \"z\").by(__.select(Column.keys).values(\"name\")).by(__.select(Column.keys).values(\"performances\")).by(__.select(Column.values)).order().by(__.select(\"z\"), Order.desc).by(__.select(\"y\"), Order.asc).limit(5).local(__.aggregate(\"m\")).select(\"x\")", "anonymized": "g.V().has(string0, string1).as(string2).out(string3).aggregate(string4).in(string3).where(P.neq(string2).and(P.not(P.within(string4)))).groupCount().unfold().project(string5, string6, string7).by(__.select(Column.keys).values(string0)).by(__.select(Column.keys).values(string8)).by(__.select(Column.values)).order().by(__.select(string7), Order.desc).by(__.select(string6), Order.asc).limit(number0).local(__.aggregate(string9)).select(string5)", "dotnet": "g.V().Has(\"name\", \"DARK STAR\").As(\"a\").Out(\"followedBy\").Aggregate(\"stash\").In(\"followedBy\").Where(P.Neq(\"a\").And(P.Not(P.Within(\"stash\")))).GroupCount().Unfold().Project(\"x\", \"y\", \"z\").By(__.Select(Column.Keys).Values(\"name\")).By(__.Select(Column.Keys).Values(\"performances\")).By(__.Select(Column.Values)).Order().By(__.Select(\"z\"), Order.Desc).By(__.Select(\"y\"), Order.Asc).Limit(5).Local(__.Aggregate(\"m\")).Select(\"x\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"DARK STAR\").As(\"a\").Out(\"followedBy\").Aggregate(\"stash\").In(\"followedBy\").Where(P.Neq(\"a\").And(P.Not(P.Within(\"stash\")))).GroupCount().Unfold().Project(\"x\", \"y\", \"z\").By(__.Select(Column.Keys).Values(\"name\")).By(__.Select(Column.Keys).Values(\"performances\")).By(__.Select(Column.Values)).Order().By(__.Select(\"z\"), Order.Desc).By(__.Select(\"y\"), Order.Asc).Limit(5).Local(__.Aggregate(\"m\")).Select(\"x\")", "go": "g.V().Has(\"name\", \"DARK STAR\").As(\"a\").Out(\"followedBy\").Aggregate(\"stash\").In(\"followedBy\").Where(gremlingo.P.Neq(\"a\").And(gremlingo.P.Not(gremlingo.P.Within(\"stash\")))).GroupCount().Unfold().Project(\"x\", \"y\", \"z\").By(gremlingo.T__.Select(gremlingo.Column.Keys).Values(\"name\")).By(gremlingo.T__.Select(gremlingo.Column.Keys).Values(\"performances\")).By(gremlingo.T__.Select(gremlingo.Column.Values)).Order().By(gremlingo.T__.Select(\"z\"), gremlingo.Order.Desc).By(gremlingo.T__.Select(\"y\"), gremlingo.Order.Asc).Limit(5).Local(gremlingo.T__.Aggregate(\"m\")).Select(\"x\")", "groovy": "g.V().has(\"name\", \"DARK STAR\").as(\"a\").out(\"followedBy\").aggregate(\"stash\").in(\"followedBy\").where(P.neq(\"a\").and(P.not(P.within(\"stash\")))).groupCount().unfold().project(\"x\", \"y\", \"z\").by(__.select(Column.keys).values(\"name\")).by(__.select(Column.keys).values(\"performances\")).by(__.select(Column.values)).order().by(__.select(\"z\"), Order.desc).by(__.select(\"y\"), Order.asc).limit(5).local(__.aggregate(\"m\")).select(\"x\")", "java": "g.V().has(\"name\", \"DARK STAR\").as(\"a\").out(\"followedBy\").aggregate(\"stash\").in(\"followedBy\").where(P.neq(\"a\").and(P.not(P.within(\"stash\")))).groupCount().unfold().project(\"x\", \"y\", \"z\").by(__.select(Column.keys).values(\"name\")).by(__.select(Column.keys).values(\"performances\")).by(__.select(Column.values)).order().by(__.select(\"z\"), Order.desc).by(__.select(\"y\"), Order.asc).limit(5).local(__.aggregate(\"m\")).select(\"x\")", @@ -14484,6 +15381,7 @@ "canonical": "g.V().has(\"name\", \"DARK STAR\").as(\"a\").out(\"followedBy\").aggregate(\"stash\").in(\"followedBy\").where(P.neq(\"a\").and(P.not(P.within(\"stash\")))).groupCount().unfold().project(\"x\", \"y\", \"z\").by(__.select(Column.keys).values(\"name\")).by(__.select(Column.keys).values(\"performances\")).by(__.select(Column.values)).order().by(__.select(\"z\"), Order.desc).by(__.select(\"y\"), Order.asc).limit(5).local(__.aggregate(\"m\"))", "anonymized": "g.V().has(string0, string1).as(string2).out(string3).aggregate(string4).in(string3).where(P.neq(string2).and(P.not(P.within(string4)))).groupCount().unfold().project(string5, string6, string7).by(__.select(Column.keys).values(string0)).by(__.select(Column.keys).values(string8)).by(__.select(Column.values)).order().by(__.select(string7), Order.desc).by(__.select(string6), Order.asc).limit(number0).local(__.aggregate(string9))", "dotnet": "g.V().Has(\"name\", \"DARK STAR\").As(\"a\").Out(\"followedBy\").Aggregate(\"stash\").In(\"followedBy\").Where(P.Neq(\"a\").And(P.Not(P.Within(\"stash\")))).GroupCount().Unfold().Project(\"x\", \"y\", \"z\").By(__.Select(Column.Keys).Values(\"name\")).By(__.Select(Column.Keys).Values(\"performances\")).By(__.Select(Column.Values)).Order().By(__.Select(\"z\"), Order.Desc).By(__.Select(\"y\"), Order.Asc).Limit(5).Local(__.Aggregate(\"m\"))", + "dotnet_parameterize": "g.V().Has(\"name\", \"DARK STAR\").As(\"a\").Out(\"followedBy\").Aggregate(\"stash\").In(\"followedBy\").Where(P.Neq(\"a\").And(P.Not(P.Within(\"stash\")))).GroupCount().Unfold().Project(\"x\", \"y\", \"z\").By(__.Select(Column.Keys).Values(\"name\")).By(__.Select(Column.Keys).Values(\"performances\")).By(__.Select(Column.Values)).Order().By(__.Select(\"z\"), Order.Desc).By(__.Select(\"y\"), Order.Asc).Limit(5).Local(__.Aggregate(\"m\"))", "go": "g.V().Has(\"name\", \"DARK STAR\").As(\"a\").Out(\"followedBy\").Aggregate(\"stash\").In(\"followedBy\").Where(gremlingo.P.Neq(\"a\").And(gremlingo.P.Not(gremlingo.P.Within(\"stash\")))).GroupCount().Unfold().Project(\"x\", \"y\", \"z\").By(gremlingo.T__.Select(gremlingo.Column.Keys).Values(\"name\")).By(gremlingo.T__.Select(gremlingo.Column.Keys).Values(\"performances\")).By(gremlingo.T__.Select(gremlingo.Column.Values)).Order().By(gremlingo.T__.Select(\"z\"), gremlingo.Order.Desc).By(gremlingo.T__.Select(\"y\"), gremlingo.Order.Asc).Limit(5).Local(gremlingo.T__.Aggregate(\"m\"))", "groovy": "g.V().has(\"name\", \"DARK STAR\").as(\"a\").out(\"followedBy\").aggregate(\"stash\").in(\"followedBy\").where(P.neq(\"a\").and(P.not(P.within(\"stash\")))).groupCount().unfold().project(\"x\", \"y\", \"z\").by(__.select(Column.keys).values(\"name\")).by(__.select(Column.keys).values(\"performances\")).by(__.select(Column.values)).order().by(__.select(\"z\"), Order.desc).by(__.select(\"y\"), Order.asc).limit(5).local(__.aggregate(\"m\"))", "java": "g.V().has(\"name\", \"DARK STAR\").as(\"a\").out(\"followedBy\").aggregate(\"stash\").in(\"followedBy\").where(P.neq(\"a\").and(P.not(P.within(\"stash\")))).groupCount().unfold().project(\"x\", \"y\", \"z\").by(__.select(Column.keys).values(\"name\")).by(__.select(Column.keys).values(\"performances\")).by(__.select(Column.values)).order().by(__.select(\"z\"), Order.desc).by(__.select(\"y\"), Order.asc).limit(5).local(__.aggregate(\"m\"))", @@ -14501,6 +15399,7 @@ "canonical": "g.withStrategies(ReferenceElementStrategy).V()", "anonymized": "g.withStrategies(ReferenceElementStrategy).V()", "dotnet": "g.WithStrategies(new ReferenceElementStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new ReferenceElementStrategy()).V()", "go": "g.WithStrategies(gremlingo.ReferenceElementStrategy()).V()", "groovy": "g.withStrategies(ReferenceElementStrategy).V()", "java": "g.withStrategies(ReferenceElementStrategy.instance()).V()", @@ -14518,6 +15417,7 @@ "canonical": "g.withoutStrategies(ReferenceElementStrategy).V()", "anonymized": "g.withoutStrategies(ReferenceElementStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(ReferenceElementStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(ReferenceElementStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.ReferenceElementStrategy()).V()", "groovy": "g.withoutStrategies(ReferenceElementStrategy).V()", "java": "g.withoutStrategies(ReferenceElementStrategy.class).V()", @@ -14535,6 +15435,7 @@ "canonical": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.out()).times(2)", "anonymized": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.out()).times(number0)", "dotnet": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Out()).Times(2)", + "dotnet_parameterize": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Out()).Times(2)", "go": "g.WithStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.Out()).Times(2)", "groovy": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.out()).times(2)", "java": "g.withStrategies(RepeatUnrollStrategy.instance()).V().repeat(__.out()).times(2)", @@ -14552,6 +15453,7 @@ "canonical": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.out()).times(2)", "anonymized": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.out()).times(number0)", "dotnet": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Out()).Times(2)", + "dotnet_parameterize": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Out()).Times(2)", "go": "g.WithoutStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.Out()).Times(2)", "groovy": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.out()).times(2)", "java": "g.withoutStrategies(RepeatUnrollStrategy.class).V().repeat(__.out()).times(2)", @@ -14569,6 +15471,7 @@ "canonical": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.in()).times(2)", "anonymized": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.in()).times(number0)", "dotnet": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.In()).Times(2)", + "dotnet_parameterize": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.In()).Times(2)", "go": "g.WithStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.In()).Times(2)", "groovy": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.in()).times(2)", "java": "g.withStrategies(RepeatUnrollStrategy.instance()).V().repeat(__.in()).times(2)", @@ -14586,6 +15489,7 @@ "canonical": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.in()).times(2)", "anonymized": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.in()).times(number0)", "dotnet": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.In()).Times(2)", + "dotnet_parameterize": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.In()).Times(2)", "go": "g.WithoutStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.In()).Times(2)", "groovy": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.in()).times(2)", "java": "g.withoutStrategies(RepeatUnrollStrategy.class).V().repeat(__.in()).times(2)", @@ -14603,6 +15507,7 @@ "canonical": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.out().has(\"name\", TextP.notStartingWith(\"z\"))).times(2)", "anonymized": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.out().has(string0, TextP.notStartingWith(string1))).times(number0)", "dotnet": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Out().Has(\"name\", TextP.NotStartingWith(\"z\"))).Times(2)", + "dotnet_parameterize": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Out().Has(\"name\", TextP.NotStartingWith(\"z\"))).Times(2)", "go": "g.WithStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.Out().Has(\"name\", gremlingo.TextP.NotStartingWith(\"z\"))).Times(2)", "groovy": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.out().has(\"name\", TextP.notStartingWith(\"z\"))).times(2)", "java": "g.withStrategies(RepeatUnrollStrategy.instance()).V().repeat(__.out().has(\"name\", TextP.notStartingWith(\"z\"))).times(2)", @@ -14620,6 +15525,7 @@ "canonical": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.out().has(\"name\", TextP.notStartingWith(\"z\"))).times(2)", "anonymized": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.out().has(string0, TextP.notStartingWith(string1))).times(number0)", "dotnet": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Out().Has(\"name\", TextP.NotStartingWith(\"z\"))).Times(2)", + "dotnet_parameterize": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Out().Has(\"name\", TextP.NotStartingWith(\"z\"))).Times(2)", "go": "g.WithoutStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.Out().Has(\"name\", gremlingo.TextP.NotStartingWith(\"z\"))).Times(2)", "groovy": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.out().has(\"name\", TextP.notStartingWith(\"z\"))).times(2)", "java": "g.withoutStrategies(RepeatUnrollStrategy.class).V().repeat(__.out().has(\"name\", TextP.notStartingWith(\"z\"))).times(2)", @@ -14637,6 +15543,7 @@ "canonical": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.in().has(\"age\", P.gt(20))).times(2)", "anonymized": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.in().has(string0, P.gt(number0))).times(number1)", "dotnet": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.In().Has(\"age\", P.Gt(20))).Times(2)", + "dotnet_parameterize": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.In().Has(\"age\", P.Gt(20))).Times(2)", "go": "g.WithStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.In().Has(\"age\", gremlingo.P.Gt(20))).Times(2)", "groovy": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.in().has(\"age\", P.gt(20))).times(2)", "java": "g.withStrategies(RepeatUnrollStrategy.instance()).V().repeat(__.in().has(\"age\", P.gt(20))).times(2)", @@ -14654,6 +15561,7 @@ "canonical": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.in().has(\"age\", P.gt(20))).times(2)", "anonymized": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.in().has(string0, P.gt(number0))).times(number1)", "dotnet": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.In().Has(\"age\", P.Gt(20))).Times(2)", + "dotnet_parameterize": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.In().Has(\"age\", P.Gt(20))).Times(2)", "go": "g.WithoutStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.In().Has(\"age\", gremlingo.P.Gt(20))).Times(2)", "groovy": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.in().has(\"age\", P.gt(20))).times(2)", "java": "g.withoutStrategies(RepeatUnrollStrategy.class).V().repeat(__.in().has(\"age\", P.gt(20))).times(2)", @@ -14671,6 +15579,7 @@ "canonical": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.both().has(\"age\", P.lt(30))).times(2)", "anonymized": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.both().has(string0, P.lt(number0))).times(number1)", "dotnet": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Both().Has(\"age\", P.Lt(30))).Times(2)", + "dotnet_parameterize": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Both().Has(\"age\", P.Lt(30))).Times(2)", "go": "g.WithStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.Both().Has(\"age\", gremlingo.P.Lt(30))).Times(2)", "groovy": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.both().has(\"age\", P.lt(30))).times(2)", "java": "g.withStrategies(RepeatUnrollStrategy.instance()).V().repeat(__.both().has(\"age\", P.lt(30))).times(2)", @@ -14688,6 +15597,7 @@ "canonical": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.both().has(\"age\", P.lt(30))).times(2)", "anonymized": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.both().has(string0, P.lt(number0))).times(number1)", "dotnet": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Both().Has(\"age\", P.Lt(30))).Times(2)", + "dotnet_parameterize": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Both().Has(\"age\", P.Lt(30))).Times(2)", "go": "g.WithoutStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.Both().Has(\"age\", gremlingo.P.Lt(30))).Times(2)", "groovy": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.both().has(\"age\", P.lt(30))).times(2)", "java": "g.withoutStrategies(RepeatUnrollStrategy.class).V().repeat(__.both().has(\"age\", P.lt(30))).times(2)", @@ -14705,6 +15615,7 @@ "canonical": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.bothE().otherV().has(\"age\", P.lt(30))).times(2)", "anonymized": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.bothE().otherV().has(string0, P.lt(number0))).times(number1)", "dotnet": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.BothE().OtherV().Has(\"age\", P.Lt(30))).Times(2)", + "dotnet_parameterize": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.BothE().OtherV().Has(\"age\", P.Lt(30))).Times(2)", "go": "g.WithStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.BothE().OtherV().Has(\"age\", gremlingo.P.Lt(30))).Times(2)", "groovy": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.bothE().otherV().has(\"age\", P.lt(30))).times(2)", "java": "g.withStrategies(RepeatUnrollStrategy.instance()).V().repeat(__.bothE().otherV().has(\"age\", P.lt(30))).times(2)", @@ -14722,6 +15633,7 @@ "canonical": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.bothE().otherV().has(\"age\", P.lt(30))).times(2)", "anonymized": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.bothE().otherV().has(string0, P.lt(number0))).times(number1)", "dotnet": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.BothE().OtherV().Has(\"age\", P.Lt(30))).Times(2)", + "dotnet_parameterize": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.BothE().OtherV().Has(\"age\", P.Lt(30))).Times(2)", "go": "g.WithoutStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.BothE().OtherV().Has(\"age\", gremlingo.P.Lt(30))).Times(2)", "groovy": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.bothE().otherV().has(\"age\", P.lt(30))).times(2)", "java": "g.withoutStrategies(RepeatUnrollStrategy.class).V().repeat(__.bothE().otherV().has(\"age\", P.lt(30))).times(2)", @@ -14739,6 +15651,7 @@ "canonical": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.both().limit(1)).times(2)", "anonymized": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.both().limit(number0)).times(number1)", "dotnet": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Both().Limit(1)).Times(2)", + "dotnet_parameterize": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Both().Limit(1)).Times(2)", "go": "g.WithStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.Both().Limit(1)).Times(2)", "groovy": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.both().limit(1)).times(2)", "java": "g.withStrategies(RepeatUnrollStrategy.instance()).V().repeat(__.both().limit(1)).times(2)", @@ -14756,6 +15669,7 @@ "canonical": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.both().limit(1)).times(2)", "anonymized": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.both().limit(number0)).times(number1)", "dotnet": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Both().Limit(1)).Times(2)", + "dotnet_parameterize": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Both().Limit(1)).Times(2)", "go": "g.WithoutStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.Both().Limit(1)).Times(2)", "groovy": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.both().limit(1)).times(2)", "java": "g.withoutStrategies(RepeatUnrollStrategy.class).V().repeat(__.both().limit(1)).times(2)", @@ -14773,6 +15687,7 @@ "canonical": "g.withStrategies(RepeatUnrollStrategy).V().order().by('name').repeat(__.both().order().by('name').aggregate('x')).times(2).limit(10)", "anonymized": "g.withStrategies(RepeatUnrollStrategy).V().order().by(string0).repeat(__.both().order().by(string0).aggregate(string1)).times(number0).limit(number1)", "dotnet": "g.WithStrategies(new RepeatUnrollStrategy()).V().Order().By(\"name\").Repeat(__.Both().Order().By(\"name\").Aggregate(\"x\")).Times(2).Limit(10)", + "dotnet_parameterize": "g.WithStrategies(new RepeatUnrollStrategy()).V().Order().By(\"name\").Repeat(__.Both().Order().By(\"name\").Aggregate(\"x\")).Times(2).Limit(10)", "go": "g.WithStrategies(gremlingo.RepeatUnrollStrategy()).V().Order().By(\"name\").Repeat(gremlingo.T__.Both().Order().By(\"name\").Aggregate(\"x\")).Times(2).Limit(10)", "groovy": "g.withStrategies(RepeatUnrollStrategy).V().order().by('name').repeat(__.both().order().by('name').aggregate('x')).times(2).limit(10)", "java": "g.withStrategies(RepeatUnrollStrategy.instance()).V().order().by(\"name\").repeat(__.both().order().by(\"name\").aggregate(\"x\")).times(2).limit(10)", @@ -14790,6 +15705,7 @@ "canonical": "g.withoutStrategies(RepeatUnrollStrategy).V().order().by('name').repeat(__.both().order().by('name').aggregate('x')).times(2).limit(10)", "anonymized": "g.withoutStrategies(RepeatUnrollStrategy).V().order().by(string0).repeat(__.both().order().by(string0).aggregate(string1)).times(number0).limit(number1)", "dotnet": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Order().By(\"name\").Repeat(__.Both().Order().By(\"name\").Aggregate(\"x\")).Times(2).Limit(10)", + "dotnet_parameterize": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Order().By(\"name\").Repeat(__.Both().Order().By(\"name\").Aggregate(\"x\")).Times(2).Limit(10)", "go": "g.WithoutStrategies(gremlingo.RepeatUnrollStrategy()).V().Order().By(\"name\").Repeat(gremlingo.T__.Both().Order().By(\"name\").Aggregate(\"x\")).Times(2).Limit(10)", "groovy": "g.withoutStrategies(RepeatUnrollStrategy).V().order().by('name').repeat(__.both().order().by('name').aggregate('x')).times(2).limit(10)", "java": "g.withoutStrategies(RepeatUnrollStrategy.class).V().order().by(\"name\").repeat(__.both().order().by(\"name\").aggregate(\"x\")).times(2).limit(10)", @@ -14807,6 +15723,7 @@ "canonical": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.both().sample(1)).times(2)", "anonymized": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.both().sample(number0)).times(number1)", "dotnet": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Both().Sample(1)).Times(2)", + "dotnet_parameterize": "g.WithStrategies(new RepeatUnrollStrategy()).V().Repeat(__.Both().Sample(1)).Times(2)", "go": "g.WithStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.Both().Sample(1)).Times(2)", "groovy": "g.withStrategies(RepeatUnrollStrategy).V().repeat(__.both().sample(1)).times(2)", "java": "g.withStrategies(RepeatUnrollStrategy.instance()).V().repeat(__.both().sample(1)).times(2)", @@ -14824,6 +15741,7 @@ "canonical": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.both().sample(1)).times(2)", "anonymized": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.both().sample(number0)).times(number1)", "dotnet": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Both().Sample(1)).Times(2)", + "dotnet_parameterize": "g.WithoutStrategies(typeof(RepeatUnrollStrategy)).V().Repeat(__.Both().Sample(1)).Times(2)", "go": "g.WithoutStrategies(gremlingo.RepeatUnrollStrategy()).V().Repeat(gremlingo.T__.Both().Sample(1)).Times(2)", "groovy": "g.withoutStrategies(RepeatUnrollStrategy).V().repeat(__.both().sample(1)).times(2)", "java": "g.withoutStrategies(RepeatUnrollStrategy.class).V().repeat(__.both().sample(1)).times(2)", @@ -14841,6 +15759,7 @@ "canonical": "g.withStrategies(ReservedKeysVerificationStrategy(throwException:true)).addV(\"person\").property(\"id\", 123).property(\"name\", \"marko\")", "anonymized": "g.withStrategies(ReservedKeysVerificationStrategy(throwException:boolean0)).addV(string0).property(string1, number0).property(string2, string3)", "dotnet": "g.WithStrategies(new ReservedKeysVerificationStrategy(throwException: true)).AddV((string) \"person\").Property(\"id\", 123).Property(\"name\", \"marko\")", + "dotnet_parameterize": "g.WithStrategies(new ReservedKeysVerificationStrategy(throwException: true)).AddV((string) \"person\").Property(\"id\", 123).Property(\"name\", \"marko\")", "go": "g.WithStrategies(gremlingo.ReservedKeysVerificationStrategy(gremlingo.ReservedKeysVerificationStrategyConfig{ThrowException: true})).AddV(\"person\").Property(\"id\", 123).Property(\"name\", \"marko\")", "groovy": "g.withStrategies(new ReservedKeysVerificationStrategy(throwException:true)).addV(\"person\").property(\"id\", 123).property(\"name\", \"marko\")", "java": "g.withStrategies(ReservedKeysVerificationStrategy.build().throwException(true).create()).addV(\"person\").property(\"id\", 123).property(\"name\", \"marko\")", @@ -14858,6 +15777,7 @@ "canonical": "g.withStrategies(ReservedKeysVerificationStrategy(throwException:true, keys:{\"age\"})).addV(\"person\").property(\"age\", 29).property(\"name\", \"marko\")", "anonymized": "g.withStrategies(ReservedKeysVerificationStrategy(throwException:boolean0, keys:set0)).addV(string0).property(string1, number0).property(string2, string3)", "dotnet": "g.WithStrategies(new ReservedKeysVerificationStrategy(throwException: true, keys: new HashSet { \"age\" })).AddV((string) \"person\").Property(\"age\", 29).Property(\"name\", \"marko\")", + "dotnet_parameterize": "g.WithStrategies(new ReservedKeysVerificationStrategy(throwException: true, keys: new HashSet { \"age\" })).AddV((string) \"person\").Property(\"age\", 29).Property(\"name\", \"marko\")", "go": "g.WithStrategies(gremlingo.ReservedKeysVerificationStrategy(gremlingo.ReservedKeysVerificationStrategyConfig{ThrowException: true, Keys: gremlingo.NewSimpleSet(\"age\")})).AddV(\"person\").Property(\"age\", 29).Property(\"name\", \"marko\")", "groovy": "g.withStrategies(new ReservedKeysVerificationStrategy(throwException:true, keys:[\"age\"] as Set)).addV(\"person\").property(\"age\", 29).property(\"name\", \"marko\")", "java": "g.withStrategies(ReservedKeysVerificationStrategy.build().throwException(true).keys(new HashSet() {{ add(\"age\"); }}).create()).addV(\"person\").property(\"age\", 29).property(\"name\", \"marko\")", @@ -14875,6 +15795,7 @@ "canonical": "g.withoutStrategies(ReservedKeysVerificationStrategy).addV(\"person\").property(\"id\", 123).property(\"name\", \"marko\").values()", "anonymized": "g.withoutStrategies(ReservedKeysVerificationStrategy).addV(string0).property(string1, number0).property(string2, string3).values()", "dotnet": "g.WithoutStrategies(typeof(ReservedKeysVerificationStrategy)).AddV((string) \"person\").Property(\"id\", 123).Property(\"name\", \"marko\").Values()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(ReservedKeysVerificationStrategy)).AddV((string) \"person\").Property(\"id\", 123).Property(\"name\", \"marko\").Values()", "go": "g.WithoutStrategies(gremlingo.ReservedKeysVerificationStrategy()).AddV(\"person\").Property(\"id\", 123).Property(\"name\", \"marko\").Values()", "groovy": "g.withoutStrategies(ReservedKeysVerificationStrategy).addV(\"person\").property(\"id\", 123).property(\"name\", \"marko\").values()", "java": "g.withoutStrategies(ReservedKeysVerificationStrategy.class).addV(\"person\").property(\"id\", 123).property(\"name\", \"marko\").values()", @@ -14892,6 +15813,7 @@ "canonical": "g.withoutStrategies(SeedStrategy).V()", "anonymized": "g.withoutStrategies(SeedStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(SeedStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(SeedStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.SeedStrategy()).V()", "groovy": "g.withoutStrategies(SeedStrategy).V()", "java": "g.withoutStrategies(SeedStrategy.class).V()", @@ -14909,6 +15831,7 @@ "canonical": "g.withStrategies(StandardVerificationStrategy).V()", "anonymized": "g.withStrategies(StandardVerificationStrategy).V()", "dotnet": "g.WithStrategies(new StandardVerificationStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new StandardVerificationStrategy()).V()", "go": "g.WithStrategies(gremlingo.StandardVerificationStrategy()).V()", "groovy": "g.withStrategies(StandardVerificationStrategy).V()", "java": "g.withStrategies(StandardVerificationStrategy.instance()).V()", @@ -14926,6 +15849,7 @@ "canonical": "g.withoutStrategies(StandardVerificationStrategy).V()", "anonymized": "g.withoutStrategies(StandardVerificationStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(StandardVerificationStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(StandardVerificationStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.StandardVerificationStrategy()).V()", "groovy": "g.withoutStrategies(StandardVerificationStrategy).V()", "java": "g.withoutStrategies(StandardVerificationStrategy.class).V()", @@ -14943,6 +15867,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)))).V()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\"))})).V()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).create()).V()", @@ -14960,6 +15885,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).E()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)))).E()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).E()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).E()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\"))})).E()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).E()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).create()).E()", @@ -14977,6 +15903,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).outE()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)))).V(vid4).outE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).OutE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).OutE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\"))})).V(vid4).OutE()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).outE()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).create()).V(vid4).outE()", @@ -14994,6 +15921,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).inE()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)))).V(vid4).inE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).InE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).InE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\"))})).V(vid4).InE()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).inE()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).create()).V(vid4).inE()", @@ -15011,6 +15939,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).out()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)))).V(vid4).out()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).Out()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).Out()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\"))})).V(vid4).Out()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).out()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).create()).V(vid4).out()", @@ -15028,6 +15957,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).in()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)))).V(vid4).in()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).In()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).In()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\"))})).V(vid4).In()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).in()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).create()).V(vid4).in()", @@ -15045,6 +15975,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).both()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)))).V(vid4).both()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).Both()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).Both()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\"))})).V(vid4).Both()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).both()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).create()).V(vid4).both()", @@ -15062,6 +15993,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).bothE()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)))).V(vid4).bothE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).BothE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).BothE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\"))})).V(vid4).BothE()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).bothE()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).create()).V(vid4).bothE()", @@ -15079,6 +16011,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).local(__.bothE().limit(1))", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)))).V(vid4).local(__.bothE().limit(number0))", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).Local(__.BothE().Limit(1))", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).V(vid4).Local(__.BothE().Limit(1))", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\"))})).V(vid4).Local(gremlingo.T__.BothE().Limit(1))", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).V(vid4).local(__.bothE().limit(1))", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).create()).V(vid4).local(__.bothE().limit(1))", @@ -15096,6 +16029,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).E(eid11).bothV()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)))).E(eid11).bothV()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).E(eid11).BothV()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).E(eid11).BothV()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\"))})).E(eid11).BothV()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).E(eid11).bothV()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).create()).E(eid11).bothV()", @@ -15113,6 +16047,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).E(eid12).bothV()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)))).E(eid12).bothV()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).E(eid12).BothV()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")))).E(eid12).BothV()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\"))})).E(eid12).BothV()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")))).E(eid12).bothV()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).create()).E(eid12).bothV()", @@ -15130,6 +16065,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V()", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(string0, number0).hasLabel(string1), __.has(string0, number1).hasLabel(string2).outV().has(string3, string4), __.has(string0, number0).hasLabel(string2)))).V()", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"knows\"), gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V()", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V()", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V()", @@ -15147,6 +16083,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E()", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(string0, number0).hasLabel(string1), __.has(string0, number1).hasLabel(string2).outV().has(string3, string4), __.has(string0, number0).hasLabel(string2)))).E()", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"knows\"), gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).E()", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E()", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).E()", @@ -15164,6 +16101,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid1).outE()", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(string0, number0).hasLabel(string1), __.has(string0, number1).hasLabel(string2).outV().has(string3, string4), __.has(string0, number0).hasLabel(string2)))).V(vid1).outE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid1).OutE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid1).OutE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"knows\"), gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid1).OutE()", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid1).outE()", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid1).outE()", @@ -15181,6 +16119,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid1).out()", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(string0, number0).hasLabel(string1), __.has(string0, number1).hasLabel(string2).outV().has(string3, string4), __.has(string0, number0).hasLabel(string2)))).V(vid1).out()", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid1).Out()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid1).Out()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"knows\"), gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid1).Out()", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid1).out()", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid1).out()", @@ -15198,6 +16137,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid1).out(\"knows\")", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(string0, number0).hasLabel(string1), __.has(string0, number1).hasLabel(string2).outV().has(string3, string4), __.has(string0, number0).hasLabel(string2)))).V(vid1).out(string1)", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid1).Out(\"knows\")", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid1).Out(\"knows\")", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"knows\"), gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid1).Out(\"knows\")", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid1).out(\"knows\")", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid1).out(\"knows\")", @@ -15215,6 +16155,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).out(\"created\")", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(string0, number0).hasLabel(string1), __.has(string0, number1).hasLabel(string2).outV().has(string3, string4), __.has(string0, number0).hasLabel(string2)))).V(vid4).out(string2)", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Out(\"created\")", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Out(\"created\")", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"knows\"), gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).Out(\"created\")", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).out(\"created\")", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).out(\"created\")", @@ -15232,6 +16173,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).outE()", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(string0, number0).hasLabel(string1), __.has(string0, number1).hasLabel(string2).outV().has(string3, string4), __.has(string0, number0).hasLabel(string2)))).V(vid4).outE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).OutE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).OutE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"knows\"), gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).OutE()", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).outE()", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).outE()", @@ -15249,6 +16191,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).out()", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(string0, number0).hasLabel(string1), __.has(string0, number1).hasLabel(string2).outV().has(string3, string4), __.has(string0, number0).hasLabel(string2)))).V(vid4).out()", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Out()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Out()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"knows\"), gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).Out()", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).out()", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).out()", @@ -15266,6 +16209,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).bothE()", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(string0, number0).hasLabel(string1), __.has(string0, number1).hasLabel(string2).outV().has(string3, string4), __.has(string0, number0).hasLabel(string2)))).V(vid4).bothE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).BothE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).BothE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"knows\"), gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).BothE()", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).bothE()", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).bothE()", @@ -15283,6 +16227,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).both()", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(string0, number0).hasLabel(string1), __.has(string0, number1).hasLabel(string2).outV().has(string3, string4), __.has(string0, number0).hasLabel(string2)))).V(vid4).both()", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Both()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Both()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"knows\"), gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).Both()", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).both()", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).both()", @@ -15300,6 +16245,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid8).outV().outE()", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(string0, number0).hasLabel(string1), __.has(string0, number1).hasLabel(string2).outV().has(string3, string4), __.has(string0, number0).hasLabel(string2)))).E(eid8).outV().outE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid8).OutV().OutE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.Or(__.Has(\"weight\", 1.0).HasLabel(\"knows\"), __.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid8).OutV().OutE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"knows\"), gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\").OutV().Has(\"name\", \"marko\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).E(eid8).OutV().OutE()", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid8).outV().outE()", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.or(__.has(\"weight\", 1.0).hasLabel(\"knows\"), __.has(\"weight\", 0.4).hasLabel(\"created\").outV().has(\"name\", \"marko\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).E(eid8).outV().outE()", @@ -15317,6 +16263,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.in(\"knows\").has(\"name\", \"marko\"))).V().values(\"name\")", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.in(string0).has(string1, string2))).V().values(string1)", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.In(\"knows\").Has(\"name\", \"marko\"))).V().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.In(\"knows\").Has(\"name\", \"marko\"))).V().Values(\"name\")", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.In(\"knows\").Has(\"name\", \"marko\")})).V().Values(\"name\")", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.in(\"knows\").has(\"name\", \"marko\"))).V().values(\"name\")", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.in(\"knows\").has(\"name\", \"marko\")).create()).V().values(\"name\")", @@ -15334,6 +16281,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.in().has(\"name\", \"marko\"))).V().values(\"name\")", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.in().has(string0, string1))).V().values(string0)", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.In().Has(\"name\", \"marko\"))).V().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.In().Has(\"name\", \"marko\"))).V().Values(\"name\")", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.In().Has(\"name\", \"marko\")})).V().Values(\"name\")", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.in().has(\"name\", \"marko\"))).V().values(\"name\")", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.in().has(\"name\", \"marko\")).create()).V().values(\"name\")", @@ -15351,6 +16299,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.in(\"knows\").where(__.out(\"created\").has(\"name\", \"lop\")))).V().values(\"name\")", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.in(string0).where(__.out(string1).has(string2, string3)))).V().values(string2)", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.In(\"knows\").Where(__.Out(\"created\").Has(\"name\", \"lop\")))).V().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.In(\"knows\").Where(__.Out(\"created\").Has(\"name\", \"lop\")))).V().Values(\"name\")", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.In(\"knows\").Where(gremlingo.T__.Out(\"created\").Has(\"name\", \"lop\"))})).V().Values(\"name\")", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.in(\"knows\").where(__.out(\"created\").has(\"name\", \"lop\")))).V().values(\"name\")", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.in(\"knows\").where(__.out(\"created\").has(\"name\", \"lop\"))).create()).V().values(\"name\")", @@ -15368,6 +16317,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.in().where(__.has(\"name\", \"marko\").out(\"created\").has(\"name\", \"lop\")))).V().values(\"name\")", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.in().where(__.has(string0, string1).out(string2).has(string0, string3)))).V().values(string0)", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.In().Where(__.Has(\"name\", \"marko\").Out(\"created\").Has(\"name\", \"lop\")))).V().Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.In().Where(__.Has(\"name\", \"marko\").Out(\"created\").Has(\"name\", \"lop\")))).V().Values(\"name\")", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.In().Where(gremlingo.T__.Has(\"name\", \"marko\").Out(\"created\").Has(\"name\", \"lop\"))})).V().Values(\"name\")", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.in().where(__.has(\"name\", \"marko\").out(\"created\").has(\"name\", \"lop\")))).V().values(\"name\")", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.in().where(__.has(\"name\", \"marko\").out(\"created\").has(\"name\", \"lop\"))).create()).V().values(\"name\")", @@ -15385,6 +16335,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.or(__.both().has(\"name\", \"marko\"), __.has(\"name\", \"marko\")))).V().where(__.bothE().count().is(P.neq(0))).values(\"name\")", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.or(__.both().has(string0, string1), __.has(string0, string1)))).V().where(__.bothE().count().is(P.neq(number0))).values(string0)", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Or(__.Both().Has(\"name\", \"marko\"), __.Has(\"name\", \"marko\")))).V().Where(__.BothE().Count().Is(P.Neq(0))).Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Or(__.Both().Has(\"name\", \"marko\"), __.Has(\"name\", \"marko\")))).V().Where(__.BothE().Count().Is(P.Neq(0))).Values(\"name\")", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Or(gremlingo.T__.Both().Has(\"name\", \"marko\"), gremlingo.T__.Has(\"name\", \"marko\"))})).V().Where(gremlingo.T__.BothE().Count().Is(gremlingo.P.Neq(0))).Values(\"name\")", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.or(__.both().has(\"name\", \"marko\"), __.has(\"name\", \"marko\")))).V().where(__.bothE().count().is(P.neq(0))).values(\"name\")", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.or(__.both().has(\"name\", \"marko\"), __.has(\"name\", \"marko\"))).create()).V().where(__.bothE().count().is(P.neq(0))).values(\"name\")", @@ -15402,6 +16353,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V()", @@ -15419,6 +16371,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).E()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).E()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).E()", @@ -15436,6 +16389,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).outE()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).outE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).OutE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).OutE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).OutE()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).outE()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).outE()", @@ -15453,6 +16407,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).inE()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).inE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).InE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).InE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).InE()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).inE()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).inE()", @@ -15470,6 +16425,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).out()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).out()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Out()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Out()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).Out()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).out()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).out()", @@ -15487,6 +16443,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).in()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).in()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).In()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).In()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).In()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).in()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).in()", @@ -15504,6 +16461,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).both()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).both()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Both()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Both()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).Both()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).both()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).both()", @@ -15521,6 +16479,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).bothE()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).bothE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).BothE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).BothE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).BothE()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).bothE()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).bothE()", @@ -15538,6 +16497,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).local(__.bothE().limit(1))", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).local(__.bothE().limit(number2))", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Local(__.BothE().Limit(1))", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Local(__.BothE().Limit(1))", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).Local(gremlingo.T__.BothE().Limit(1))", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).local(__.bothE().limit(1))", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).local(__.bothE().limit(1))", @@ -15555,6 +16515,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid11).bothV()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).E(eid11).bothV()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid11).BothV()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid11).BothV()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).E(eid11).BothV()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid11).bothV()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).E(eid11).bothV()", @@ -15572,6 +16533,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid12).bothV()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).E(eid12).bothV()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid12).BothV()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid12).BothV()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).E(eid12).BothV()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid12).bothV()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).E(eid12).bothV()", @@ -15589,6 +16551,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid9).bothV()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).E(eid9).bothV()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid9).BothV()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid9).BothV()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).E(eid9).BothV()", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid9).bothV()", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).E(eid9).bothV()", @@ -15606,6 +16569,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"ripple\", \"josh\", \"marko\")))).V().as(\"a\").out().in().as(\"b\").dedup(\"a\", \"b\").values(\"name\")", "anonymized": "g.withStrategies(new SubgraphStrategy(vertices:__.has(string0, P.within(string1, string2, string3)))).V().as(string4).out().in().as(string5).dedup(string4, string5).values(string0)", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"ripple\", \"josh\", \"marko\")))).V().As(\"a\").Out().In().As(\"b\").Dedup(\"a\", \"b\").Values(\"name\")", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertices: __.Has(\"name\", P.Within(\"ripple\", \"josh\", \"marko\")))).V().As(\"a\").Out().In().As(\"b\").Dedup(\"a\", \"b\").Values(\"name\")", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"ripple\", \"josh\", \"marko\"))})).V().As(\"a\").Out().In().As(\"b\").Dedup(\"a\", \"b\").Values(\"name\")", "groovy": "g.withStrategies(new SubgraphStrategy(vertices:__.has(\"name\", P.within(\"ripple\", \"josh\", \"marko\")))).V().as(\"a\").out().in().as(\"b\").dedup(\"a\", \"b\").values(\"name\")", "java": "g.withStrategies(SubgraphStrategy.build().vertices(__.has(\"name\", P.within(\"ripple\", \"josh\", \"marko\"))).create()).V().as(\"a\").out().in().as(\"b\").dedup(\"a\", \"b\").values(\"name\")", @@ -15623,6 +16587,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(\"startTime\", P.gt(2005)))).V().properties(\"location\").value()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(string0, P.gt(number0)))).V().properties(string1).value()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has(\"startTime\", P.Gt(2005)))).V().Properties(\"location\").Value()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has(\"startTime\", P.Gt(2005)))).V().Properties(\"location\").Value()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{VertexProperties: gremlingo.T__.Has(\"startTime\", gremlingo.P.Gt(2005))})).V().Properties(\"location\").Value()", "groovy": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(\"startTime\", P.gt(2005)))).V().properties(\"location\").value()", "java": "g.withStrategies(SubgraphStrategy.build().vertexProperties(__.has(\"startTime\", P.gt(2005))).create()).V().properties(\"location\").value()", @@ -15640,6 +16605,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(\"startTime\", P.gt(2005)))).V().values(\"location\")", "anonymized": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(string0, P.gt(number0)))).V().values(string1)", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has(\"startTime\", P.Gt(2005)))).V().Values(\"location\")", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has(\"startTime\", P.Gt(2005)))).V().Values(\"location\")", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{VertexProperties: gremlingo.T__.Has(\"startTime\", gremlingo.P.Gt(2005))})).V().Values(\"location\")", "groovy": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(\"startTime\", P.gt(2005)))).V().values(\"location\")", "java": "g.withStrategies(SubgraphStrategy.build().vertexProperties(__.has(\"startTime\", P.gt(2005))).create()).V().values(\"location\")", @@ -15657,6 +16623,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(\"startTime\", P.gt(2005)))).V().as(\"a\").properties(\"location\").as(\"b\").select(\"a\").outE().properties().select(\"b\").value().dedup()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(string0, P.gt(number0)))).V().as(string1).properties(string2).as(string3).select(string1).outE().properties().select(string3).value().dedup()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has(\"startTime\", P.Gt(2005)))).V().As(\"a\").Properties(\"location\").As(\"b\").Select(\"a\").OutE().Properties().Select(\"b\").Value().Dedup()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has(\"startTime\", P.Gt(2005)))).V().As(\"a\").Properties(\"location\").As(\"b\").Select(\"a\").OutE().Properties().Select(\"b\").Value().Dedup()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{VertexProperties: gremlingo.T__.Has(\"startTime\", gremlingo.P.Gt(2005))})).V().As(\"a\").Properties(\"location\").As(\"b\").Select(\"a\").OutE().Properties().Select(\"b\").Value().Dedup()", "groovy": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(\"startTime\", P.gt(2005)))).V().as(\"a\").properties(\"location\").as(\"b\").select(\"a\").outE().properties().select(\"b\").value().dedup()", "java": "g.withStrategies(SubgraphStrategy.build().vertexProperties(__.has(\"startTime\", P.gt(2005))).create()).V().as(\"a\").properties(\"location\").as(\"b\").select(\"a\").outE().properties().select(\"b\").value().dedup()", @@ -15674,6 +16641,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(\"startTime\", P.gt(2005)))).V().as(\"a\").values(\"location\").as(\"b\").select(\"a\").outE().properties().select(\"b\").dedup()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(string0, P.gt(number0)))).V().as(string1).values(string2).as(string3).select(string1).outE().properties().select(string3).dedup()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has(\"startTime\", P.Gt(2005)))).V().As(\"a\").Values(\"location\").As(\"b\").Select(\"a\").OutE().Properties().Select(\"b\").Dedup()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has(\"startTime\", P.Gt(2005)))).V().As(\"a\").Values(\"location\").As(\"b\").Select(\"a\").OutE().Properties().Select(\"b\").Dedup()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{VertexProperties: gremlingo.T__.Has(\"startTime\", gremlingo.P.Gt(2005))})).V().As(\"a\").Values(\"location\").As(\"b\").Select(\"a\").OutE().Properties().Select(\"b\").Dedup()", "groovy": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(\"startTime\", P.gt(2005)))).V().as(\"a\").values(\"location\").as(\"b\").select(\"a\").outE().properties().select(\"b\").dedup()", "java": "g.withStrategies(SubgraphStrategy.build().vertexProperties(__.has(\"startTime\", P.gt(2005))).create()).V().as(\"a\").values(\"location\").as(\"b\").select(\"a\").outE().properties().select(\"b\").dedup()", @@ -15691,6 +16659,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(\"startTime\", P.gt(2005)), vertices:__.has(\"name\", P.neq(\"stephen\")))).V().properties(\"location\").value()", "anonymized": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(string0, P.gt(number0)), vertices:__.has(string1, P.neq(string2)))).V().properties(string3).value()", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has(\"startTime\", P.Gt(2005)), vertices: __.Has(\"name\", P.Neq(\"stephen\")))).V().Properties(\"location\").Value()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has(\"startTime\", P.Gt(2005)), vertices: __.Has(\"name\", P.Neq(\"stephen\")))).V().Properties(\"location\").Value()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{VertexProperties: gremlingo.T__.Has(\"startTime\", gremlingo.P.Gt(2005)), Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Neq(\"stephen\"))})).V().Properties(\"location\").Value()", "groovy": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(\"startTime\", P.gt(2005)), vertices:__.has(\"name\", P.neq(\"stephen\")))).V().properties(\"location\").value()", "java": "g.withStrategies(SubgraphStrategy.build().vertexProperties(__.has(\"startTime\", P.gt(2005))).vertices(__.has(\"name\", P.neq(\"stephen\"))).create()).V().properties(\"location\").value()", @@ -15708,6 +16677,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(\"startTime\", P.gt(2005)), vertices:__.has(\"name\", P.neq(\"stephen\")))).V().values(\"location\")", "anonymized": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(string0, P.gt(number0)), vertices:__.has(string1, P.neq(string2)))).V().values(string3)", "dotnet": "g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has(\"startTime\", P.Gt(2005)), vertices: __.Has(\"name\", P.Neq(\"stephen\")))).V().Values(\"location\")", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(vertexProperties: __.Has(\"startTime\", P.Gt(2005)), vertices: __.Has(\"name\", P.Neq(\"stephen\")))).V().Values(\"location\")", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{VertexProperties: gremlingo.T__.Has(\"startTime\", gremlingo.P.Gt(2005)), Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Neq(\"stephen\"))})).V().Values(\"location\")", "groovy": "g.withStrategies(new SubgraphStrategy(vertexProperties:__.has(\"startTime\", P.gt(2005)), vertices:__.has(\"name\", P.neq(\"stephen\")))).V().values(\"location\")", "java": "g.withStrategies(SubgraphStrategy.build().vertexProperties(__.has(\"startTime\", P.gt(2005))).vertices(__.has(\"name\", P.neq(\"stephen\"))).create()).V().values(\"location\")", @@ -15725,6 +16695,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.hasLabel(\"uses\").has(\"skill\", 5))).V().outE().valueMap().select(Column.values).unfold()", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.hasLabel(string0).has(string1, number0))).V().outE().valueMap().select(Column.values).unfold()", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.HasLabel(\"uses\").Has(\"skill\", 5))).V().OutE().ValueMap().Select(Column.Values).Unfold()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.HasLabel(\"uses\").Has(\"skill\", 5))).V().OutE().ValueMap().Select(Column.Values).Unfold()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.HasLabel(\"uses\").Has(\"skill\", 5)})).V().OutE().ValueMap().Select(gremlingo.Column.Values).Unfold()", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.hasLabel(\"uses\").has(\"skill\", 5))).V().outE().valueMap().select(Column.values).unfold()", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.hasLabel(\"uses\").has(\"skill\", 5)).create()).V().outE().valueMap().select(Column.values).unfold()", @@ -15742,6 +16713,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: false, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(false).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V()", @@ -15759,6 +16731,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).E()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: false, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).E()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(false).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).E()", @@ -15776,6 +16749,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:true, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).E()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: true, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: true, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: true, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).E()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:true, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(true).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).E()", @@ -15793,6 +16767,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).outE()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).outE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).OutE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).OutE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: false, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).OutE()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).outE()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(false).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).outE()", @@ -15810,6 +16785,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).inE()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).inE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).InE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).InE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: false, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).InE()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).inE()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(false).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).inE()", @@ -15827,6 +16803,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).out()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).out()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Out()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Out()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: false, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).Out()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).out()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(false).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).out()", @@ -15844,6 +16821,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).in()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).in()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).In()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).In()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: false, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).In()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).in()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(false).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).in()", @@ -15861,6 +16839,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).both()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).both()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Both()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Both()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: false, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).Both()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).both()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(false).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).both()", @@ -15878,6 +16857,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).bothE()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).bothE()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).BothE()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).BothE()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: false, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).BothE()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).bothE()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(false).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).bothE()", @@ -15895,6 +16875,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).local(__.bothE().limit(1))", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).V(vid4).local(__.bothE().limit(number2))", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Local(__.BothE().Limit(1))", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).V(vid4).Local(__.BothE().Limit(1))", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: false, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).V(vid4).Local(gremlingo.T__.BothE().Limit(1))", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).V(vid4).local(__.bothE().limit(1))", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(false).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).V(vid4).local(__.bothE().limit(1))", @@ -15912,6 +16893,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid11).bothV()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).E(eid11).bothV()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid11).BothV()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid11).BothV()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: false, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).E(eid11).BothV()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid11).bothV()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(false).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).E(eid11).bothV()", @@ -15929,6 +16911,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid12).bothV()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).E(eid12).bothV()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid12).BothV()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid12).BothV()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: false, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).E(eid12).BothV()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid12).bothV()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(false).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).E(eid12).bothV()", @@ -15946,6 +16929,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid9).bothV()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).E(eid9).bothV()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid9).BothV()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: false, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid9).BothV()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: false, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).E(eid9).BothV()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:false, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid9).bothV()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(false).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).E(eid9).bothV()", @@ -15963,6 +16947,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:true, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid9).bothV()", "anonymized": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:boolean0, vertices:__.has(string0, P.within(string1, string2, string3)), edges:__.or(__.has(string4, number0).hasLabel(string5), __.has(string4, number1).hasLabel(string5)))).E(eid9).bothV()", "dotnet": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: true, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid9).BothV()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(checkAdjacentVertices: true, vertices: __.Has(\"name\", P.Within(\"josh\", \"lop\", \"ripple\")), edges: __.Or(__.Has(\"weight\", 0.4).HasLabel(\"created\"), __.Has(\"weight\", 1.0).HasLabel(\"created\")))).E(eid9).BothV()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{CheckAdjacentVertices: true, Vertices: gremlingo.T__.Has(\"name\", gremlingo.P.Within(\"josh\", \"lop\", \"ripple\")), Edges: gremlingo.T__.Or(gremlingo.T__.Has(\"weight\", 0.4).HasLabel(\"created\"), gremlingo.T__.Has(\"weight\", 1.0).HasLabel(\"created\"))})).E(eid9).BothV()", "groovy": "g.withStrategies(new SubgraphStrategy(checkAdjacentVertices:true, vertices:__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\")), edges:__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\")))).E(eid9).bothV()", "java": "g.withStrategies(SubgraphStrategy.build().checkAdjacentVertices(true).vertices(__.has(\"name\", P.within(\"josh\", \"lop\", \"ripple\"))).edges(__.or(__.has(\"weight\", 0.4).hasLabel(\"created\"), __.has(\"weight\", 1.0).hasLabel(\"created\"))).create()).E(eid9).bothV()", @@ -15980,6 +16965,7 @@ "canonical": "g.withStrategies(new SubgraphStrategy(edges:__.label().is(P.eq(\"created\")), vertices:__.values(\"name\").is(P.within(\"lop\", \"josh\")), checkAdjacentVertices:true)).E()", "anonymized": "g.withStrategies(new SubgraphStrategy(edges:__.label().is(P.eq(string0)), vertices:__.values(string1).is(P.within(string2, string3)), checkAdjacentVertices:boolean0)).E()", "dotnet": "g.WithStrategies(new SubgraphStrategy(edges: __.Label().Is(P.Eq(\"created\")), vertices: __.Values(\"name\").Is(P.Within(\"lop\", \"josh\")), checkAdjacentVertices: true)).E()", + "dotnet_parameterize": "g.WithStrategies(new SubgraphStrategy(edges: __.Label().Is(P.Eq(\"created\")), vertices: __.Values(\"name\").Is(P.Within(\"lop\", \"josh\")), checkAdjacentVertices: true)).E()", "go": "g.WithStrategies(gremlingo.SubgraphStrategy(gremlingo.SubgraphStrategyConfig{Edges: gremlingo.T__.Label().Is(gremlingo.P.Eq(\"created\")), Vertices: gremlingo.T__.Values(\"name\").Is(gremlingo.P.Within(\"lop\", \"josh\")), CheckAdjacentVertices: true})).E()", "groovy": "g.withStrategies(new SubgraphStrategy(edges:__.label().is(P.eq(\"created\")), vertices:__.values(\"name\").is(P.within(\"lop\", \"josh\")), checkAdjacentVertices:true)).E()", "java": "g.withStrategies(SubgraphStrategy.build().edges(__.label().is(P.eq(\"created\"))).vertices(__.values(\"name\").is(P.within(\"lop\", \"josh\"))).checkAdjacentVertices(true).create()).E()", @@ -15997,6 +16983,7 @@ "canonical": "g.withStrategies(VertexProgramRestrictionStrategy).withoutStrategies(VertexProgramStrategy).V()", "anonymized": "g.withStrategies(VertexProgramRestrictionStrategy).withoutStrategies(VertexProgramStrategy).V()", "dotnet": "g.WithStrategies(new VertexProgramRestrictionStrategy()).WithoutStrategies(typeof(VertexProgramStrategy)).V()", + "dotnet_parameterize": "g.WithStrategies(new VertexProgramRestrictionStrategy()).WithoutStrategies(typeof(VertexProgramStrategy)).V()", "go": "g.WithStrategies(gremlingo.VertexProgramRestrictionStrategy()).WithoutStrategies(gremlingo.VertexProgramStrategy()).V()", "groovy": "g.withStrategies(VertexProgramRestrictionStrategy).withoutStrategies(VertexProgramStrategy).V()", "java": "g.withStrategies(VertexProgramRestrictionStrategy.instance()).withoutStrategies(VertexProgramStrategy.class).V()", @@ -16014,6 +17001,7 @@ "canonical": "g.withStrategies(VertexProgramRestrictionStrategy, VertexProgramStrategy).V()", "anonymized": "g.withStrategies(VertexProgramRestrictionStrategy, VertexProgramStrategy).V()", "dotnet": "g.WithStrategies(new VertexProgramRestrictionStrategy(), new VertexProgramStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new VertexProgramRestrictionStrategy(), new VertexProgramStrategy()).V()", "go": "g.WithStrategies(gremlingo.VertexProgramRestrictionStrategy(), gremlingo.VertexProgramStrategy()).V()", "groovy": "g.withStrategies(VertexProgramRestrictionStrategy, VertexProgramStrategy).V()", "java": "g.withStrategies(VertexProgramRestrictionStrategy.instance(), VertexProgramStrategy.instance()).V()", @@ -16031,6 +17019,7 @@ "canonical": "g.withoutStrategies(VertexProgramRestrictionStrategy).withStrategies(VertexProgramStrategy).V()", "anonymized": "g.withoutStrategies(VertexProgramRestrictionStrategy).withStrategies(VertexProgramStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(VertexProgramRestrictionStrategy)).WithStrategies(new VertexProgramStrategy()).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(VertexProgramRestrictionStrategy)).WithStrategies(new VertexProgramStrategy()).V()", "go": "g.WithoutStrategies(gremlingo.VertexProgramRestrictionStrategy()).WithStrategies(gremlingo.VertexProgramStrategy()).V()", "groovy": "g.withoutStrategies(VertexProgramRestrictionStrategy).withStrategies(VertexProgramStrategy).V()", "java": "g.withoutStrategies(VertexProgramRestrictionStrategy.class).withStrategies(VertexProgramStrategy.instance()).V()", @@ -16048,6 +17037,7 @@ "canonical": "g.withStrategies(VertexProgramStrategy).V()", "anonymized": "g.withStrategies(VertexProgramStrategy).V()", "dotnet": "g.WithStrategies(new VertexProgramStrategy()).V()", + "dotnet_parameterize": "g.WithStrategies(new VertexProgramStrategy()).V()", "go": "g.WithStrategies(gremlingo.VertexProgramStrategy()).V()", "groovy": "g.withStrategies(VertexProgramStrategy).V()", "java": "g.withStrategies(VertexProgramStrategy.instance()).V()", @@ -16065,6 +17055,7 @@ "canonical": "g.withoutStrategies(VertexProgramStrategy).V()", "anonymized": "g.withoutStrategies(VertexProgramStrategy).V()", "dotnet": "g.WithoutStrategies(typeof(VertexProgramStrategy)).V()", + "dotnet_parameterize": "g.WithoutStrategies(typeof(VertexProgramStrategy)).V()", "go": "g.WithoutStrategies(gremlingo.VertexProgramStrategy()).V()", "groovy": "g.withoutStrategies(VertexProgramStrategy).V()", "java": "g.withoutStrategies(VertexProgramStrategy.class).V()", @@ -16082,6 +17073,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -16094,6 +17086,7 @@ "canonical": "g.V(vid1).as(\"a\").out(\"created\").addE(\"createdBy\").to(\"a\")", "anonymized": "g.V(vid1).as(string0).out(string1).addE(string2).to(string0)", "dotnet": "g.V(vid1).As(\"a\").Out(\"created\").AddE((string) \"createdBy\").To(\"a\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Out(\"created\").AddE((string) \"createdBy\").To(\"a\")", "go": "g.V(vid1).As(\"a\").Out(\"created\").AddE(\"createdBy\").To(\"a\")", "groovy": "g.V(vid1).as(\"a\").out(\"created\").addE(\"createdBy\").to(\"a\")", "java": "g.V(vid1).as(\"a\").out(\"created\").addE(\"createdBy\").to(\"a\")", @@ -16106,6 +17099,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -16118,6 +17112,7 @@ "canonical": "g.V(vid1).inE()", "anonymized": "g.V(vid1).inE()", "dotnet": "g.V(vid1).InE()", + "dotnet_parameterize": "g.V(vid1).InE()", "go": "g.V(vid1).InE()", "groovy": "g.V(vid1).inE()", "java": "g.V(vid1).inE()", @@ -16135,6 +17130,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -16147,6 +17143,7 @@ "canonical": "g.V(vid1).as(\"a\").out(\"created\").addE(\"createdBy\").to(\"a\").property(\"weight\", 2.0d)", "anonymized": "g.V(vid1).as(string0).out(string1).addE(string2).to(string0).property(string3, double0)", "dotnet": "g.V(vid1).As(\"a\").Out(\"created\").AddE((string) \"createdBy\").To(\"a\").Property(\"weight\", 2.0d)", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Out(\"created\").AddE((string) \"createdBy\").To(\"a\").Property(\"weight\", 2.0d)", "go": "g.V(vid1).As(\"a\").Out(\"created\").AddE(\"createdBy\").To(\"a\").Property(\"weight\", 2.0)", "groovy": "g.V(vid1).as(\"a\").out(\"created\").addE(\"createdBy\").to(\"a\").property(\"weight\", 2.0d)", "java": "g.V(vid1).as(\"a\").out(\"created\").addE(\"createdBy\").to(\"a\").property(\"weight\", 2.0d)", @@ -16159,6 +17156,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -16171,6 +17169,7 @@ "canonical": "g.V(vid1).bothE()", "anonymized": "g.V(vid1).bothE()", "dotnet": "g.V(vid1).BothE()", + "dotnet_parameterize": "g.V(vid1).BothE()", "go": "g.V(vid1).BothE()", "groovy": "g.V(vid1).bothE()", "java": "g.V(vid1).bothE()", @@ -16183,6 +17182,7 @@ "canonical": "g.V(vid1).inE().has(\"weight\", 2.0d)", "anonymized": "g.V(vid1).inE().has(string0, double0)", "dotnet": "g.V(vid1).InE().Has(\"weight\", 2.0d)", + "dotnet_parameterize": "g.V(vid1).InE().Has(\"weight\", 2.0d)", "go": "g.V(vid1).InE().Has(\"weight\", 2.0)", "groovy": "g.V(vid1).inE().has(\"weight\", 2.0d)", "java": "g.V(vid1).inE().has(\"weight\", 2.0d)", @@ -16200,6 +17200,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -16212,6 +17213,7 @@ "canonical": "g.V().outE().property(\"weight\", null)", "anonymized": "g.V().outE().property(string0, object0)", "dotnet": "g.V().OutE().Property(\"weight\", null)", + "dotnet_parameterize": "g.V().OutE().Property(\"weight\", null)", "go": "g.V().OutE().Property(\"weight\", nil)", "groovy": "g.V().outE().property(\"weight\", null)", "java": "g.V().outE().property(\"weight\", null)", @@ -16224,6 +17226,7 @@ "canonical": "g.E().properties(\"weight\")", "anonymized": "g.E().properties(string0)", "dotnet": "g.E().Properties(\"weight\")", + "dotnet_parameterize": "g.E().Properties(\"weight\")", "go": "g.E().Properties(\"weight\")", "groovy": "g.E().properties(\"weight\")", "java": "g.E().properties(\"weight\")", @@ -16241,6 +17244,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -16253,6 +17257,7 @@ "canonical": "g.V().aggregate(\"x\").as(\"a\").select(\"x\").unfold().addE(\"existsWith\").to(\"a\").property(\"time\", \"now\")", "anonymized": "g.V().aggregate(string0).as(string1).select(string0).unfold().addE(string2).to(string1).property(string3, string4)", "dotnet": "g.V().Aggregate(\"x\").As(\"a\").Select(\"x\").Unfold().AddE((string) \"existsWith\").To(\"a\").Property(\"time\", \"now\")", + "dotnet_parameterize": "g.V().Aggregate(\"x\").As(\"a\").Select(\"x\").Unfold().AddE((string) \"existsWith\").To(\"a\").Property(\"time\", \"now\")", "go": "g.V().Aggregate(\"x\").As(\"a\").Select(\"x\").Unfold().AddE(\"existsWith\").To(\"a\").Property(\"time\", \"now\")", "groovy": "g.V().aggregate(\"x\").as(\"a\").select(\"x\").unfold().addE(\"existsWith\").to(\"a\").property(\"time\", \"now\")", "java": "g.V().aggregate(\"x\").as(\"a\").select(\"x\").unfold().addE(\"existsWith\").to(\"a\").property(\"time\", \"now\")", @@ -16265,6 +17270,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -16277,6 +17283,7 @@ "canonical": "g.V(vid1).bothE()", "anonymized": "g.V(vid1).bothE()", "dotnet": "g.V(vid1).BothE()", + "dotnet_parameterize": "g.V(vid1).BothE()", "go": "g.V(vid1).BothE()", "groovy": "g.V(vid1).bothE()", "java": "g.V(vid1).bothE()", @@ -16289,6 +17296,7 @@ "canonical": "g.V(vid1).inE(\"existsWith\")", "anonymized": "g.V(vid1).inE(string0)", "dotnet": "g.V(vid1).InE(\"existsWith\")", + "dotnet_parameterize": "g.V(vid1).InE(\"existsWith\")", "go": "g.V(vid1).InE(\"existsWith\")", "groovy": "g.V(vid1).inE(\"existsWith\")", "java": "g.V(vid1).inE(\"existsWith\")", @@ -16301,6 +17309,7 @@ "canonical": "g.V(vid1).outE(\"existsWith\")", "anonymized": "g.V(vid1).outE(string0)", "dotnet": "g.V(vid1).OutE(\"existsWith\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"existsWith\")", "go": "g.V(vid1).OutE(\"existsWith\")", "groovy": "g.V(vid1).outE(\"existsWith\")", "java": "g.V(vid1).outE(\"existsWith\")", @@ -16313,6 +17322,7 @@ "canonical": "g.V(vid1).bothE(\"existsWith\").has(\"time\", \"now\")", "anonymized": "g.V(vid1).bothE(string0).has(string1, string2)", "dotnet": "g.V(vid1).BothE(\"existsWith\").Has(\"time\", \"now\")", + "dotnet_parameterize": "g.V(vid1).BothE(\"existsWith\").Has(\"time\", \"now\")", "go": "g.V(vid1).BothE(\"existsWith\").Has(\"time\", \"now\")", "groovy": "g.V(vid1).bothE(\"existsWith\").has(\"time\", \"now\")", "java": "g.V(vid1).bothE(\"existsWith\").has(\"time\", \"now\")", @@ -16325,6 +17335,7 @@ "canonical": "g.V(vid2).bothE()", "anonymized": "g.V(vid2).bothE()", "dotnet": "g.V(vid2).BothE()", + "dotnet_parameterize": "g.V(vid2).BothE()", "go": "g.V(vid2).BothE()", "groovy": "g.V(vid2).bothE()", "java": "g.V(vid2).bothE()", @@ -16337,6 +17348,7 @@ "canonical": "g.V(vid2).inE(\"existsWith\")", "anonymized": "g.V(vid2).inE(string0)", "dotnet": "g.V(vid2).InE(\"existsWith\")", + "dotnet_parameterize": "g.V(vid2).InE(\"existsWith\")", "go": "g.V(vid2).InE(\"existsWith\")", "groovy": "g.V(vid2).inE(\"existsWith\")", "java": "g.V(vid2).inE(\"existsWith\")", @@ -16349,6 +17361,7 @@ "canonical": "g.V(vid2).outE(\"existsWith\")", "anonymized": "g.V(vid2).outE(string0)", "dotnet": "g.V(vid2).OutE(\"existsWith\")", + "dotnet_parameterize": "g.V(vid2).OutE(\"existsWith\")", "go": "g.V(vid2).OutE(\"existsWith\")", "groovy": "g.V(vid2).outE(\"existsWith\")", "java": "g.V(vid2).outE(\"existsWith\")", @@ -16361,6 +17374,7 @@ "canonical": "g.V(vid2).bothE(\"existsWith\").has(\"time\", \"now\")", "anonymized": "g.V(vid2).bothE(string0).has(string1, string2)", "dotnet": "g.V(vid2).BothE(\"existsWith\").Has(\"time\", \"now\")", + "dotnet_parameterize": "g.V(vid2).BothE(\"existsWith\").Has(\"time\", \"now\")", "go": "g.V(vid2).BothE(\"existsWith\").Has(\"time\", \"now\")", "groovy": "g.V(vid2).bothE(\"existsWith\").has(\"time\", \"now\")", "java": "g.V(vid2).bothE(\"existsWith\").has(\"time\", \"now\")", @@ -16373,6 +17387,7 @@ "canonical": "g.V(vid3).bothE()", "anonymized": "g.V(vid3).bothE()", "dotnet": "g.V(vid3).BothE()", + "dotnet_parameterize": "g.V(vid3).BothE()", "go": "g.V(vid3).BothE()", "groovy": "g.V(vid3).bothE()", "java": "g.V(vid3).bothE()", @@ -16385,6 +17400,7 @@ "canonical": "g.V(vid3).inE(\"existsWith\")", "anonymized": "g.V(vid3).inE(string0)", "dotnet": "g.V(vid3).InE(\"existsWith\")", + "dotnet_parameterize": "g.V(vid3).InE(\"existsWith\")", "go": "g.V(vid3).InE(\"existsWith\")", "groovy": "g.V(vid3).inE(\"existsWith\")", "java": "g.V(vid3).inE(\"existsWith\")", @@ -16397,6 +17413,7 @@ "canonical": "g.V(vid3).outE(\"existsWith\")", "anonymized": "g.V(vid3).outE(string0)", "dotnet": "g.V(vid3).OutE(\"existsWith\")", + "dotnet_parameterize": "g.V(vid3).OutE(\"existsWith\")", "go": "g.V(vid3).OutE(\"existsWith\")", "groovy": "g.V(vid3).outE(\"existsWith\")", "java": "g.V(vid3).outE(\"existsWith\")", @@ -16409,6 +17426,7 @@ "canonical": "g.V(vid3).bothE(\"existsWith\").has(\"time\", \"now\")", "anonymized": "g.V(vid3).bothE(string0).has(string1, string2)", "dotnet": "g.V(vid3).BothE(\"existsWith\").Has(\"time\", \"now\")", + "dotnet_parameterize": "g.V(vid3).BothE(\"existsWith\").Has(\"time\", \"now\")", "go": "g.V(vid3).BothE(\"existsWith\").Has(\"time\", \"now\")", "groovy": "g.V(vid3).bothE(\"existsWith\").has(\"time\", \"now\")", "java": "g.V(vid3).bothE(\"existsWith\").has(\"time\", \"now\")", @@ -16421,6 +17439,7 @@ "canonical": "g.V(vid4).bothE()", "anonymized": "g.V(vid4).bothE()", "dotnet": "g.V(vid4).BothE()", + "dotnet_parameterize": "g.V(vid4).BothE()", "go": "g.V(vid4).BothE()", "groovy": "g.V(vid4).bothE()", "java": "g.V(vid4).bothE()", @@ -16433,6 +17452,7 @@ "canonical": "g.V(vid4).inE(\"existsWith\")", "anonymized": "g.V(vid4).inE(string0)", "dotnet": "g.V(vid4).InE(\"existsWith\")", + "dotnet_parameterize": "g.V(vid4).InE(\"existsWith\")", "go": "g.V(vid4).InE(\"existsWith\")", "groovy": "g.V(vid4).inE(\"existsWith\")", "java": "g.V(vid4).inE(\"existsWith\")", @@ -16445,6 +17465,7 @@ "canonical": "g.V(vid4).outE(\"existsWith\")", "anonymized": "g.V(vid4).outE(string0)", "dotnet": "g.V(vid4).OutE(\"existsWith\")", + "dotnet_parameterize": "g.V(vid4).OutE(\"existsWith\")", "go": "g.V(vid4).OutE(\"existsWith\")", "groovy": "g.V(vid4).outE(\"existsWith\")", "java": "g.V(vid4).outE(\"existsWith\")", @@ -16457,6 +17478,7 @@ "canonical": "g.V(vid4).bothE(\"existsWith\").has(\"time\", \"now\")", "anonymized": "g.V(vid4).bothE(string0).has(string1, string2)", "dotnet": "g.V(vid4).BothE(\"existsWith\").Has(\"time\", \"now\")", + "dotnet_parameterize": "g.V(vid4).BothE(\"existsWith\").Has(\"time\", \"now\")", "go": "g.V(vid4).BothE(\"existsWith\").Has(\"time\", \"now\")", "groovy": "g.V(vid4).bothE(\"existsWith\").has(\"time\", \"now\")", "java": "g.V(vid4).bothE(\"existsWith\").has(\"time\", \"now\")", @@ -16469,6 +17491,7 @@ "canonical": "g.V(vid5).bothE()", "anonymized": "g.V(vid5).bothE()", "dotnet": "g.V(vid5).BothE()", + "dotnet_parameterize": "g.V(vid5).BothE()", "go": "g.V(vid5).BothE()", "groovy": "g.V(vid5).bothE()", "java": "g.V(vid5).bothE()", @@ -16481,6 +17504,7 @@ "canonical": "g.V(vid5).inE(\"existsWith\")", "anonymized": "g.V(vid5).inE(string0)", "dotnet": "g.V(vid5).InE(\"existsWith\")", + "dotnet_parameterize": "g.V(vid5).InE(\"existsWith\")", "go": "g.V(vid5).InE(\"existsWith\")", "groovy": "g.V(vid5).inE(\"existsWith\")", "java": "g.V(vid5).inE(\"existsWith\")", @@ -16493,6 +17517,7 @@ "canonical": "g.V(vid5).outE(\"existsWith\")", "anonymized": "g.V(vid5).outE(string0)", "dotnet": "g.V(vid5).OutE(\"existsWith\")", + "dotnet_parameterize": "g.V(vid5).OutE(\"existsWith\")", "go": "g.V(vid5).OutE(\"existsWith\")", "groovy": "g.V(vid5).outE(\"existsWith\")", "java": "g.V(vid5).outE(\"existsWith\")", @@ -16505,6 +17530,7 @@ "canonical": "g.V(vid5).bothE(\"existsWith\").has(\"time\", \"now\")", "anonymized": "g.V(vid5).bothE(string0).has(string1, string2)", "dotnet": "g.V(vid5).BothE(\"existsWith\").Has(\"time\", \"now\")", + "dotnet_parameterize": "g.V(vid5).BothE(\"existsWith\").Has(\"time\", \"now\")", "go": "g.V(vid5).BothE(\"existsWith\").Has(\"time\", \"now\")", "groovy": "g.V(vid5).bothE(\"existsWith\").has(\"time\", \"now\")", "java": "g.V(vid5).bothE(\"existsWith\").has(\"time\", \"now\")", @@ -16517,6 +17543,7 @@ "canonical": "g.V(vid6).bothE()", "anonymized": "g.V(vid6).bothE()", "dotnet": "g.V(vid6).BothE()", + "dotnet_parameterize": "g.V(vid6).BothE()", "go": "g.V(vid6).BothE()", "groovy": "g.V(vid6).bothE()", "java": "g.V(vid6).bothE()", @@ -16529,6 +17556,7 @@ "canonical": "g.V(vid6).inE(\"existsWith\")", "anonymized": "g.V(vid6).inE(string0)", "dotnet": "g.V(vid6).InE(\"existsWith\")", + "dotnet_parameterize": "g.V(vid6).InE(\"existsWith\")", "go": "g.V(vid6).InE(\"existsWith\")", "groovy": "g.V(vid6).inE(\"existsWith\")", "java": "g.V(vid6).inE(\"existsWith\")", @@ -16541,6 +17569,7 @@ "canonical": "g.V(vid6).outE(\"existsWith\")", "anonymized": "g.V(vid6).outE(string0)", "dotnet": "g.V(vid6).OutE(\"existsWith\")", + "dotnet_parameterize": "g.V(vid6).OutE(\"existsWith\")", "go": "g.V(vid6).OutE(\"existsWith\")", "groovy": "g.V(vid6).outE(\"existsWith\")", "java": "g.V(vid6).outE(\"existsWith\")", @@ -16553,6 +17582,7 @@ "canonical": "g.V(vid6).bothE(\"existsWith\").has(\"time\", \"now\")", "anonymized": "g.V(vid6).bothE(string0).has(string1, string2)", "dotnet": "g.V(vid6).BothE(\"existsWith\").Has(\"time\", \"now\")", + "dotnet_parameterize": "g.V(vid6).BothE(\"existsWith\").Has(\"time\", \"now\")", "go": "g.V(vid6).BothE(\"existsWith\").Has(\"time\", \"now\")", "groovy": "g.V(vid6).bothE(\"existsWith\").has(\"time\", \"now\")", "java": "g.V(vid6).bothE(\"existsWith\").has(\"time\", \"now\")", @@ -16570,6 +17600,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -16582,6 +17613,7 @@ "canonical": "g.V().as(\"a\").out(\"created\").in(\"created\").where(P.neq(\"a\")).as(\"b\").addE(\"codeveloper\").from(\"a\").to(\"b\").property(\"year\", 2009)", "anonymized": "g.V().as(string0).out(string1).in(string1).where(P.neq(string0)).as(string2).addE(string3).from(string0).to(string2).property(string4, number0)", "dotnet": "g.V().As(\"a\").Out(\"created\").In(\"created\").Where(P.Neq(\"a\")).As(\"b\").AddE((string) \"codeveloper\").From(\"a\").To(\"b\").Property(\"year\", 2009)", + "dotnet_parameterize": "g.V().As(\"a\").Out(\"created\").In(\"created\").Where(P.Neq(\"a\")).As(\"b\").AddE((string) \"codeveloper\").From(\"a\").To(\"b\").Property(\"year\", 2009)", "go": "g.V().As(\"a\").Out(\"created\").In(\"created\").Where(gremlingo.P.Neq(\"a\")).As(\"b\").AddE(\"codeveloper\").From(\"a\").To(\"b\").Property(\"year\", 2009)", "groovy": "g.V().as(\"a\").out(\"created\").in(\"created\").where(P.neq(\"a\")).as(\"b\").addE(\"codeveloper\").from(\"a\").to(\"b\").property(\"year\", 2009)", "java": "g.V().as(\"a\").out(\"created\").in(\"created\").where(P.neq(\"a\")).as(\"b\").addE(\"codeveloper\").from(\"a\").to(\"b\").property(\"year\", 2009)", @@ -16594,6 +17626,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -16606,6 +17639,7 @@ "canonical": "g.V(vid1).bothE()", "anonymized": "g.V(vid1).bothE()", "dotnet": "g.V(vid1).BothE()", + "dotnet_parameterize": "g.V(vid1).BothE()", "go": "g.V(vid1).BothE()", "groovy": "g.V(vid1).bothE()", "java": "g.V(vid1).bothE()", @@ -16618,6 +17652,7 @@ "canonical": "g.V(vid1).inE(\"codeveloper\")", "anonymized": "g.V(vid1).inE(string0)", "dotnet": "g.V(vid1).InE(\"codeveloper\")", + "dotnet_parameterize": "g.V(vid1).InE(\"codeveloper\")", "go": "g.V(vid1).InE(\"codeveloper\")", "groovy": "g.V(vid1).inE(\"codeveloper\")", "java": "g.V(vid1).inE(\"codeveloper\")", @@ -16630,6 +17665,7 @@ "canonical": "g.V(vid1).outE(\"codeveloper\")", "anonymized": "g.V(vid1).outE(string0)", "dotnet": "g.V(vid1).OutE(\"codeveloper\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"codeveloper\")", "go": "g.V(vid1).OutE(\"codeveloper\")", "groovy": "g.V(vid1).outE(\"codeveloper\")", "java": "g.V(vid1).outE(\"codeveloper\")", @@ -16642,6 +17678,7 @@ "canonical": "g.V(vid1).bothE(\"codeveloper\").has(\"year\", 2009)", "anonymized": "g.V(vid1).bothE(string0).has(string1, number0)", "dotnet": "g.V(vid1).BothE(\"codeveloper\").Has(\"year\", 2009)", + "dotnet_parameterize": "g.V(vid1).BothE(\"codeveloper\").Has(\"year\", 2009)", "go": "g.V(vid1).BothE(\"codeveloper\").Has(\"year\", 2009)", "groovy": "g.V(vid1).bothE(\"codeveloper\").has(\"year\", 2009)", "java": "g.V(vid1).bothE(\"codeveloper\").has(\"year\", 2009)", @@ -16654,6 +17691,7 @@ "canonical": "g.V(vid2).bothE()", "anonymized": "g.V(vid2).bothE()", "dotnet": "g.V(vid2).BothE()", + "dotnet_parameterize": "g.V(vid2).BothE()", "go": "g.V(vid2).BothE()", "groovy": "g.V(vid2).bothE()", "java": "g.V(vid2).bothE()", @@ -16666,6 +17704,7 @@ "canonical": "g.V(vid4).bothE()", "anonymized": "g.V(vid4).bothE()", "dotnet": "g.V(vid4).BothE()", + "dotnet_parameterize": "g.V(vid4).BothE()", "go": "g.V(vid4).BothE()", "groovy": "g.V(vid4).bothE()", "java": "g.V(vid4).bothE()", @@ -16678,6 +17717,7 @@ "canonical": "g.V(vid4).inE(\"codeveloper\")", "anonymized": "g.V(vid4).inE(string0)", "dotnet": "g.V(vid4).InE(\"codeveloper\")", + "dotnet_parameterize": "g.V(vid4).InE(\"codeveloper\")", "go": "g.V(vid4).InE(\"codeveloper\")", "groovy": "g.V(vid4).inE(\"codeveloper\")", "java": "g.V(vid4).inE(\"codeveloper\")", @@ -16690,6 +17730,7 @@ "canonical": "g.V(vid4).outE(\"codeveloper\")", "anonymized": "g.V(vid4).outE(string0)", "dotnet": "g.V(vid4).OutE(\"codeveloper\")", + "dotnet_parameterize": "g.V(vid4).OutE(\"codeveloper\")", "go": "g.V(vid4).OutE(\"codeveloper\")", "groovy": "g.V(vid4).outE(\"codeveloper\")", "java": "g.V(vid4).outE(\"codeveloper\")", @@ -16702,6 +17743,7 @@ "canonical": "g.V(vid4).bothE(\"codeveloper\").has(\"year\", 2009)", "anonymized": "g.V(vid4).bothE(string0).has(string1, number0)", "dotnet": "g.V(vid4).BothE(\"codeveloper\").Has(\"year\", 2009)", + "dotnet_parameterize": "g.V(vid4).BothE(\"codeveloper\").Has(\"year\", 2009)", "go": "g.V(vid4).BothE(\"codeveloper\").Has(\"year\", 2009)", "groovy": "g.V(vid4).bothE(\"codeveloper\").has(\"year\", 2009)", "java": "g.V(vid4).bothE(\"codeveloper\").has(\"year\", 2009)", @@ -16714,6 +17756,7 @@ "canonical": "g.V(vid6).bothE()", "anonymized": "g.V(vid6).bothE()", "dotnet": "g.V(vid6).BothE()", + "dotnet_parameterize": "g.V(vid6).BothE()", "go": "g.V(vid6).BothE()", "groovy": "g.V(vid6).bothE()", "java": "g.V(vid6).bothE()", @@ -16726,6 +17769,7 @@ "canonical": "g.V(vid6).inE(\"codeveloper\")", "anonymized": "g.V(vid6).inE(string0)", "dotnet": "g.V(vid6).InE(\"codeveloper\")", + "dotnet_parameterize": "g.V(vid6).InE(\"codeveloper\")", "go": "g.V(vid6).InE(\"codeveloper\")", "groovy": "g.V(vid6).inE(\"codeveloper\")", "java": "g.V(vid6).inE(\"codeveloper\")", @@ -16738,6 +17782,7 @@ "canonical": "g.V(vid6).outE(\"codeveloper\")", "anonymized": "g.V(vid6).outE(string0)", "dotnet": "g.V(vid6).OutE(\"codeveloper\")", + "dotnet_parameterize": "g.V(vid6).OutE(\"codeveloper\")", "go": "g.V(vid6).OutE(\"codeveloper\")", "groovy": "g.V(vid6).outE(\"codeveloper\")", "java": "g.V(vid6).outE(\"codeveloper\")", @@ -16750,6 +17795,7 @@ "canonical": "g.V(vid6).bothE(\"codeveloper\").has(\"year\", 2009)", "anonymized": "g.V(vid6).bothE(string0).has(string1, number0)", "dotnet": "g.V(vid6).BothE(\"codeveloper\").Has(\"year\", 2009)", + "dotnet_parameterize": "g.V(vid6).BothE(\"codeveloper\").Has(\"year\", 2009)", "go": "g.V(vid6).BothE(\"codeveloper\").Has(\"year\", 2009)", "groovy": "g.V(vid6).bothE(\"codeveloper\").has(\"year\", 2009)", "java": "g.V(vid6).bothE(\"codeveloper\").has(\"year\", 2009)", @@ -16767,6 +17813,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -16779,6 +17826,7 @@ "canonical": "g.V().as(\"a\").in(\"created\").addE(\"createdBy\").from(\"a\").property(\"year\", 2009).property(\"acl\", \"public\")", "anonymized": "g.V().as(string0).in(string1).addE(string2).from(string0).property(string3, number0).property(string4, string5)", "dotnet": "g.V().As(\"a\").In(\"created\").AddE((string) \"createdBy\").From(\"a\").Property(\"year\", 2009).Property(\"acl\", \"public\")", + "dotnet_parameterize": "g.V().As(\"a\").In(\"created\").AddE((string) \"createdBy\").From(\"a\").Property(\"year\", 2009).Property(\"acl\", \"public\")", "go": "g.V().As(\"a\").In(\"created\").AddE(\"createdBy\").From(\"a\").Property(\"year\", 2009).Property(\"acl\", \"public\")", "groovy": "g.V().as(\"a\").in(\"created\").addE(\"createdBy\").from(\"a\").property(\"year\", 2009).property(\"acl\", \"public\")", "java": "g.V().as(\"a\").in(\"created\").addE(\"createdBy\").from(\"a\").property(\"year\", 2009).property(\"acl\", \"public\")", @@ -16791,6 +17839,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -16803,6 +17852,7 @@ "canonical": "g.V(vid1).bothE()", "anonymized": "g.V(vid1).bothE()", "dotnet": "g.V(vid1).BothE()", + "dotnet_parameterize": "g.V(vid1).BothE()", "go": "g.V(vid1).BothE()", "groovy": "g.V(vid1).bothE()", "java": "g.V(vid1).bothE()", @@ -16815,6 +17865,7 @@ "canonical": "g.V(vid1).inE(\"createdBy\")", "anonymized": "g.V(vid1).inE(string0)", "dotnet": "g.V(vid1).InE(\"createdBy\")", + "dotnet_parameterize": "g.V(vid1).InE(\"createdBy\")", "go": "g.V(vid1).InE(\"createdBy\")", "groovy": "g.V(vid1).inE(\"createdBy\")", "java": "g.V(vid1).inE(\"createdBy\")", @@ -16827,6 +17878,7 @@ "canonical": "g.V(vid1).outE(\"createdBy\")", "anonymized": "g.V(vid1).outE(string0)", "dotnet": "g.V(vid1).OutE(\"createdBy\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"createdBy\")", "go": "g.V(vid1).OutE(\"createdBy\")", "groovy": "g.V(vid1).outE(\"createdBy\")", "java": "g.V(vid1).outE(\"createdBy\")", @@ -16839,6 +17891,7 @@ "canonical": "g.V(vid1).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", "anonymized": "g.V(vid1).bothE(string0).has(string1, number0).has(string2, string3)", "dotnet": "g.V(vid1).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", + "dotnet_parameterize": "g.V(vid1).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", "go": "g.V(vid1).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", "groovy": "g.V(vid1).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", "java": "g.V(vid1).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", @@ -16851,6 +17904,7 @@ "canonical": "g.V(vid2).bothE()", "anonymized": "g.V(vid2).bothE()", "dotnet": "g.V(vid2).BothE()", + "dotnet_parameterize": "g.V(vid2).BothE()", "go": "g.V(vid2).BothE()", "groovy": "g.V(vid2).bothE()", "java": "g.V(vid2).bothE()", @@ -16863,6 +17917,7 @@ "canonical": "g.V(vid3).bothE()", "anonymized": "g.V(vid3).bothE()", "dotnet": "g.V(vid3).BothE()", + "dotnet_parameterize": "g.V(vid3).BothE()", "go": "g.V(vid3).BothE()", "groovy": "g.V(vid3).bothE()", "java": "g.V(vid3).bothE()", @@ -16875,6 +17930,7 @@ "canonical": "g.V(vid3).inE(\"createdBy\")", "anonymized": "g.V(vid3).inE(string0)", "dotnet": "g.V(vid3).InE(\"createdBy\")", + "dotnet_parameterize": "g.V(vid3).InE(\"createdBy\")", "go": "g.V(vid3).InE(\"createdBy\")", "groovy": "g.V(vid3).inE(\"createdBy\")", "java": "g.V(vid3).inE(\"createdBy\")", @@ -16887,6 +17943,7 @@ "canonical": "g.V(vid3).outE(\"createdBy\")", "anonymized": "g.V(vid3).outE(string0)", "dotnet": "g.V(vid3).OutE(\"createdBy\")", + "dotnet_parameterize": "g.V(vid3).OutE(\"createdBy\")", "go": "g.V(vid3).OutE(\"createdBy\")", "groovy": "g.V(vid3).outE(\"createdBy\")", "java": "g.V(vid3).outE(\"createdBy\")", @@ -16899,6 +17956,7 @@ "canonical": "g.V(vid3).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", "anonymized": "g.V(vid3).bothE(string0).has(string1, number0).has(string2, string3)", "dotnet": "g.V(vid3).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", + "dotnet_parameterize": "g.V(vid3).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", "go": "g.V(vid3).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", "groovy": "g.V(vid3).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", "java": "g.V(vid3).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", @@ -16911,6 +17969,7 @@ "canonical": "g.V(vid4).bothE()", "anonymized": "g.V(vid4).bothE()", "dotnet": "g.V(vid4).BothE()", + "dotnet_parameterize": "g.V(vid4).BothE()", "go": "g.V(vid4).BothE()", "groovy": "g.V(vid4).bothE()", "java": "g.V(vid4).bothE()", @@ -16923,6 +17982,7 @@ "canonical": "g.V(vid4).inE(\"createdBy\")", "anonymized": "g.V(vid4).inE(string0)", "dotnet": "g.V(vid4).InE(\"createdBy\")", + "dotnet_parameterize": "g.V(vid4).InE(\"createdBy\")", "go": "g.V(vid4).InE(\"createdBy\")", "groovy": "g.V(vid4).inE(\"createdBy\")", "java": "g.V(vid4).inE(\"createdBy\")", @@ -16935,6 +17995,7 @@ "canonical": "g.V(vid4).outE(\"createdBy\")", "anonymized": "g.V(vid4).outE(string0)", "dotnet": "g.V(vid4).OutE(\"createdBy\")", + "dotnet_parameterize": "g.V(vid4).OutE(\"createdBy\")", "go": "g.V(vid4).OutE(\"createdBy\")", "groovy": "g.V(vid4).outE(\"createdBy\")", "java": "g.V(vid4).outE(\"createdBy\")", @@ -16947,6 +18008,7 @@ "canonical": "g.V(vid4).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", "anonymized": "g.V(vid4).bothE(string0).has(string1, number0).has(string2, string3)", "dotnet": "g.V(vid4).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", + "dotnet_parameterize": "g.V(vid4).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", "go": "g.V(vid4).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", "groovy": "g.V(vid4).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", "java": "g.V(vid4).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", @@ -16959,6 +18021,7 @@ "canonical": "g.V(vid5).bothE()", "anonymized": "g.V(vid5).bothE()", "dotnet": "g.V(vid5).BothE()", + "dotnet_parameterize": "g.V(vid5).BothE()", "go": "g.V(vid5).BothE()", "groovy": "g.V(vid5).bothE()", "java": "g.V(vid5).bothE()", @@ -16971,6 +18034,7 @@ "canonical": "g.V(vid5).inE(\"createdBy\")", "anonymized": "g.V(vid5).inE(string0)", "dotnet": "g.V(vid5).InE(\"createdBy\")", + "dotnet_parameterize": "g.V(vid5).InE(\"createdBy\")", "go": "g.V(vid5).InE(\"createdBy\")", "groovy": "g.V(vid5).inE(\"createdBy\")", "java": "g.V(vid5).inE(\"createdBy\")", @@ -16983,6 +18047,7 @@ "canonical": "g.V(vid5).outE(\"createdBy\")", "anonymized": "g.V(vid5).outE(string0)", "dotnet": "g.V(vid5).OutE(\"createdBy\")", + "dotnet_parameterize": "g.V(vid5).OutE(\"createdBy\")", "go": "g.V(vid5).OutE(\"createdBy\")", "groovy": "g.V(vid5).outE(\"createdBy\")", "java": "g.V(vid5).outE(\"createdBy\")", @@ -16995,6 +18060,7 @@ "canonical": "g.V(vid5).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", "anonymized": "g.V(vid5).bothE(string0).has(string1, number0).has(string2, string3)", "dotnet": "g.V(vid5).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", + "dotnet_parameterize": "g.V(vid5).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", "go": "g.V(vid5).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", "groovy": "g.V(vid5).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", "java": "g.V(vid5).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", @@ -17007,6 +18073,7 @@ "canonical": "g.V(vid6).bothE()", "anonymized": "g.V(vid6).bothE()", "dotnet": "g.V(vid6).BothE()", + "dotnet_parameterize": "g.V(vid6).BothE()", "go": "g.V(vid6).BothE()", "groovy": "g.V(vid6).bothE()", "java": "g.V(vid6).bothE()", @@ -17019,6 +18086,7 @@ "canonical": "g.V(vid6).inE(\"createdBy\")", "anonymized": "g.V(vid6).inE(string0)", "dotnet": "g.V(vid6).InE(\"createdBy\")", + "dotnet_parameterize": "g.V(vid6).InE(\"createdBy\")", "go": "g.V(vid6).InE(\"createdBy\")", "groovy": "g.V(vid6).inE(\"createdBy\")", "java": "g.V(vid6).inE(\"createdBy\")", @@ -17031,6 +18099,7 @@ "canonical": "g.V(vid6).outE(\"createdBy\")", "anonymized": "g.V(vid6).outE(string0)", "dotnet": "g.V(vid6).OutE(\"createdBy\")", + "dotnet_parameterize": "g.V(vid6).OutE(\"createdBy\")", "go": "g.V(vid6).OutE(\"createdBy\")", "groovy": "g.V(vid6).outE(\"createdBy\")", "java": "g.V(vid6).outE(\"createdBy\")", @@ -17043,6 +18112,7 @@ "canonical": "g.V(vid6).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", "anonymized": "g.V(vid6).bothE(string0).has(string1, number0).has(string2, string3)", "dotnet": "g.V(vid6).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", + "dotnet_parameterize": "g.V(vid6).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", "go": "g.V(vid6).BothE(\"createdBy\").Has(\"year\", 2009).Has(\"acl\", \"public\")", "groovy": "g.V(vid6).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", "java": "g.V(vid6).bothE(\"createdBy\").has(\"year\", 2009).has(\"acl\", \"public\")", @@ -17060,6 +18130,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -17072,6 +18143,7 @@ "canonical": "g.V(vid1).addE(\"knows\").to(\"b\").property(\"weight\", 0.5d)", "anonymized": "g.V(vid1).addE(string0).to(string1).property(string2, double0)", "dotnet": "g.V(vid1).AddE((string) \"knows\").To(\"b\").Property(\"weight\", 0.5d)", + "dotnet_parameterize": "g.V(vid1).AddE((string) \"knows\").To(\"b\").Property(\"weight\", 0.5d)", "go": "g.V(vid1).AddE(\"knows\").To(\"b\").Property(\"weight\", 0.5)", "groovy": "g.V(vid1).addE(\"knows\").to(\"b\").property(\"weight\", 0.5d)", "java": "g.V(vid1).addE(\"knows\").to(\"b\").property(\"weight\", 0.5d)", @@ -17084,6 +18156,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -17096,6 +18169,7 @@ "canonical": "g.V(vid1).bothE()", "anonymized": "g.V(vid1).bothE()", "dotnet": "g.V(vid1).BothE()", + "dotnet_parameterize": "g.V(vid1).BothE()", "go": "g.V(vid1).BothE()", "groovy": "g.V(vid1).bothE()", "java": "g.V(vid1).bothE()", @@ -17108,6 +18182,7 @@ "canonical": "g.V(vid1).inE(\"knows\")", "anonymized": "g.V(vid1).inE(string0)", "dotnet": "g.V(vid1).InE(\"knows\")", + "dotnet_parameterize": "g.V(vid1).InE(\"knows\")", "go": "g.V(vid1).InE(\"knows\")", "groovy": "g.V(vid1).inE(\"knows\")", "java": "g.V(vid1).inE(\"knows\")", @@ -17120,6 +18195,7 @@ "canonical": "g.V(vid1).outE(\"knows\")", "anonymized": "g.V(vid1).outE(string0)", "dotnet": "g.V(vid1).OutE(\"knows\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"knows\")", "go": "g.V(vid1).OutE(\"knows\")", "groovy": "g.V(vid1).outE(\"knows\")", "java": "g.V(vid1).outE(\"knows\")", @@ -17132,6 +18208,7 @@ "canonical": "g.V(vid1).bothE(\"knows\").has(\"weight\", 0.5)", "anonymized": "g.V(vid1).bothE(string0).has(string1, number0)", "dotnet": "g.V(vid1).BothE(\"knows\").Has(\"weight\", 0.5)", + "dotnet_parameterize": "g.V(vid1).BothE(\"knows\").Has(\"weight\", 0.5)", "go": "g.V(vid1).BothE(\"knows\").Has(\"weight\", 0.5)", "groovy": "g.V(vid1).bothE(\"knows\").has(\"weight\", 0.5)", "java": "g.V(vid1).bothE(\"knows\").has(\"weight\", 0.5)", @@ -17144,6 +18221,7 @@ "canonical": "g.V(vid6).bothE()", "anonymized": "g.V(vid6).bothE()", "dotnet": "g.V(vid6).BothE()", + "dotnet_parameterize": "g.V(vid6).BothE()", "go": "g.V(vid6).BothE()", "groovy": "g.V(vid6).bothE()", "java": "g.V(vid6).bothE()", @@ -17156,6 +18234,7 @@ "canonical": "g.V(vid6).inE(\"knows\")", "anonymized": "g.V(vid6).inE(string0)", "dotnet": "g.V(vid6).InE(\"knows\")", + "dotnet_parameterize": "g.V(vid6).InE(\"knows\")", "go": "g.V(vid6).InE(\"knows\")", "groovy": "g.V(vid6).inE(\"knows\")", "java": "g.V(vid6).inE(\"knows\")", @@ -17168,6 +18247,7 @@ "canonical": "g.V(vid6).outE(\"knows\")", "anonymized": "g.V(vid6).outE(string0)", "dotnet": "g.V(vid6).OutE(\"knows\")", + "dotnet_parameterize": "g.V(vid6).OutE(\"knows\")", "go": "g.V(vid6).OutE(\"knows\")", "groovy": "g.V(vid6).outE(\"knows\")", "java": "g.V(vid6).outE(\"knows\")", @@ -17180,6 +18260,7 @@ "canonical": "g.V(vid6).bothE(\"knows\").has(\"weight\", 0.5)", "anonymized": "g.V(vid6).bothE(string0).has(string1, number0)", "dotnet": "g.V(vid6).BothE(\"knows\").Has(\"weight\", 0.5)", + "dotnet_parameterize": "g.V(vid6).BothE(\"knows\").Has(\"weight\", 0.5)", "go": "g.V(vid6).BothE(\"knows\").Has(\"weight\", 0.5)", "groovy": "g.V(vid6).bothE(\"knows\").has(\"weight\", 0.5)", "java": "g.V(vid6).bothE(\"knows\").has(\"weight\", 0.5)", @@ -17197,6 +18278,7 @@ "canonical": "g.addV().as(\"first\").repeat(__.addE(\"next\").to(__.addV()).inV()).times(5).addE(\"next\").to(__.select(\"first\"))", "anonymized": "g.addV().as(string0).repeat(__.addE(string1).to(__.addV()).inV()).times(number0).addE(string1).to(__.select(string0))", "dotnet": "g.AddV().As(\"first\").Repeat(__.AddE((string) \"next\").To(__.AddV()).InV()).Times(5).AddE((string) \"next\").To(__.Select(\"first\"))", + "dotnet_parameterize": "g.AddV().As(\"first\").Repeat(__.AddE((string) \"next\").To(__.AddV()).InV()).Times(5).AddE((string) \"next\").To(__.Select(\"first\"))", "go": "g.AddV().As(\"first\").Repeat(gremlingo.T__.AddE(\"next\").To(gremlingo.T__.AddV()).InV()).Times(5).AddE(\"next\").To(gremlingo.T__.Select(\"first\"))", "groovy": "g.addV().as(\"first\").repeat(__.addE(\"next\").to(__.addV()).inV()).times(5).addE(\"next\").to(__.select(\"first\"))", "java": "g.addV().as(\"first\").repeat(__.addE(\"next\").to(__.addV()).inV()).times(5).addE(\"next\").to(__.select(\"first\"))", @@ -17209,6 +18291,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -17221,6 +18304,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -17233,6 +18317,7 @@ "canonical": "g.E().hasLabel(\"next\")", "anonymized": "g.E().hasLabel(string0)", "dotnet": "g.E().HasLabel(\"next\")", + "dotnet_parameterize": "g.E().HasLabel(\"next\")", "go": "g.E().HasLabel(\"next\")", "groovy": "g.E().hasLabel(\"next\")", "java": "g.E().hasLabel(\"next\")", @@ -17245,6 +18330,7 @@ "canonical": "g.V().limit(1).bothE()", "anonymized": "g.V().limit(number0).bothE()", "dotnet": "g.V().Limit(1).BothE()", + "dotnet_parameterize": "g.V().Limit(1).BothE()", "go": "g.V().Limit(1).BothE()", "groovy": "g.V().limit(1).bothE()", "java": "g.V().limit(1).bothE()", @@ -17257,6 +18343,7 @@ "canonical": "g.V().limit(1).inE()", "anonymized": "g.V().limit(number0).inE()", "dotnet": "g.V().Limit(1).InE()", + "dotnet_parameterize": "g.V().Limit(1).InE()", "go": "g.V().Limit(1).InE()", "groovy": "g.V().limit(1).inE()", "java": "g.V().limit(1).inE()", @@ -17269,6 +18356,7 @@ "canonical": "g.V().limit(1).outE()", "anonymized": "g.V().limit(number0).outE()", "dotnet": "g.V().Limit(1).OutE()", + "dotnet_parameterize": "g.V().Limit(1).OutE()", "go": "g.V().Limit(1).OutE()", "groovy": "g.V().limit(1).outE()", "java": "g.V().limit(1).outE()", @@ -17286,6 +18374,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -17298,6 +18387,7 @@ "canonical": "g.V().has(\"name\", \"marko\").as(\"a\").outE(\"created\").as(\"b\").inV().addE(__.select(\"b\").label()).to(\"a\")", "anonymized": "g.V().has(string0, string1).as(string2).outE(string3).as(string4).inV().addE(__.select(string4).label()).to(string2)", "dotnet": "g.V().Has(\"name\", \"marko\").As(\"a\").OutE(\"created\").As(\"b\").InV().AddE(__.Select(\"b\").Label()).To(\"a\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").As(\"a\").OutE(\"created\").As(\"b\").InV().AddE(__.Select(\"b\").Label()).To(\"a\")", "go": "g.V().Has(\"name\", \"marko\").As(\"a\").OutE(\"created\").As(\"b\").InV().AddE(gremlingo.T__.Select(\"b\").Label()).To(\"a\")", "groovy": "g.V().has(\"name\", \"marko\").as(\"a\").outE(\"created\").as(\"b\").inV().addE(__.select(\"b\").label()).to(\"a\")", "java": "g.V().has(\"name\", \"marko\").as(\"a\").outE(\"created\").as(\"b\").inV().addE(__.select(\"b\").label()).to(\"a\")", @@ -17310,6 +18400,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -17322,6 +18413,7 @@ "canonical": "g.V(vid1).bothE()", "anonymized": "g.V(vid1).bothE()", "dotnet": "g.V(vid1).BothE()", + "dotnet_parameterize": "g.V(vid1).BothE()", "go": "g.V(vid1).BothE()", "groovy": "g.V(vid1).bothE()", "java": "g.V(vid1).bothE()", @@ -17334,6 +18426,7 @@ "canonical": "g.V(vid1).inE(\"created\")", "anonymized": "g.V(vid1).inE(string0)", "dotnet": "g.V(vid1).InE(\"created\")", + "dotnet_parameterize": "g.V(vid1).InE(\"created\")", "go": "g.V(vid1).InE(\"created\")", "groovy": "g.V(vid1).inE(\"created\")", "java": "g.V(vid1).inE(\"created\")", @@ -17346,6 +18439,7 @@ "canonical": "g.V(vid1).in(\"created\").has(\"name\", \"lop\")", "anonymized": "g.V(vid1).in(string0).has(string1, string2)", "dotnet": "g.V(vid1).In(\"created\").Has(\"name\", \"lop\")", + "dotnet_parameterize": "g.V(vid1).In(\"created\").Has(\"name\", \"lop\")", "go": "g.V(vid1).In(\"created\").Has(\"name\", \"lop\")", "groovy": "g.V(vid1).in(\"created\").has(\"name\", \"lop\")", "java": "g.V(vid1).in(\"created\").has(\"name\", \"lop\")", @@ -17358,6 +18452,7 @@ "canonical": "g.V(vid1).outE(\"created\")", "anonymized": "g.V(vid1).outE(string0)", "dotnet": "g.V(vid1).OutE(\"created\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"created\")", "go": "g.V(vid1).OutE(\"created\")", "groovy": "g.V(vid1).outE(\"created\")", "java": "g.V(vid1).outE(\"created\")", @@ -17375,6 +18470,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -17387,6 +18483,7 @@ "canonical": "g.addE(__.V().outE().label().groupCount().order(Scope.local).by(Column.values, Order.desc).select(Column.keys).unfold().limit(1)).from(__.V().has(\"name\", \"vadas\")).to(__.V().has(\"name\", \"lop\"))", "anonymized": "g.addE(__.V().outE().label().groupCount().order(Scope.local).by(Column.values, Order.desc).select(Column.keys).unfold().limit(number0)).from(__.V().has(string0, string1)).to(__.V().has(string0, string2))", "dotnet": "g.AddE(__.V().OutE().Label().GroupCount().Order(Scope.Local).By(Column.Values, Order.Desc).Select(Column.Keys).Unfold().Limit(1)).From(__.V().Has(\"name\", \"vadas\")).To(__.V().Has(\"name\", \"lop\"))", + "dotnet_parameterize": "g.AddE(__.V().OutE().Label().GroupCount().Order(Scope.Local).By(Column.Values, Order.Desc).Select(Column.Keys).Unfold().Limit(1)).From(__.V().Has(\"name\", \"vadas\")).To(__.V().Has(\"name\", \"lop\"))", "go": "g.AddE(gremlingo.T__.V().OutE().Label().GroupCount().Order(gremlingo.Scope.Local).By(gremlingo.Column.Values, gremlingo.Order.Desc).Select(gremlingo.Column.Keys).Unfold().Limit(1)).From(gremlingo.T__.V().Has(\"name\", \"vadas\")).To(gremlingo.T__.V().Has(\"name\", \"lop\"))", "groovy": "g.addE(__.V().outE().label().groupCount().order(Scope.local).by(Column.values, Order.desc).select(Column.keys).unfold().limit(1)).from(__.V().has(\"name\", \"vadas\")).to(__.V().has(\"name\", \"lop\"))", "java": "g.addE(__.V().outE().label().groupCount().order(Scope.local).by(Column.values, Order.desc).select(Column.keys).unfold().limit(1)).from(__.V().has(\"name\", \"vadas\")).to(__.V().has(\"name\", \"lop\"))", @@ -17399,6 +18496,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -17411,6 +18509,7 @@ "canonical": "g.V(vid2).bothE()", "anonymized": "g.V(vid2).bothE()", "dotnet": "g.V(vid2).BothE()", + "dotnet_parameterize": "g.V(vid2).BothE()", "go": "g.V(vid2).BothE()", "groovy": "g.V(vid2).bothE()", "java": "g.V(vid2).bothE()", @@ -17423,6 +18522,7 @@ "canonical": "g.V(vid2).inE(\"knows\")", "anonymized": "g.V(vid2).inE(string0)", "dotnet": "g.V(vid2).InE(\"knows\")", + "dotnet_parameterize": "g.V(vid2).InE(\"knows\")", "go": "g.V(vid2).InE(\"knows\")", "groovy": "g.V(vid2).inE(\"knows\")", "java": "g.V(vid2).inE(\"knows\")", @@ -17435,6 +18535,7 @@ "canonical": "g.V(vid2).outE(\"created\")", "anonymized": "g.V(vid2).outE(string0)", "dotnet": "g.V(vid2).OutE(\"created\")", + "dotnet_parameterize": "g.V(vid2).OutE(\"created\")", "go": "g.V(vid2).OutE(\"created\")", "groovy": "g.V(vid2).outE(\"created\")", "java": "g.V(vid2).outE(\"created\")", @@ -17447,6 +18548,7 @@ "canonical": "g.V(vid2).out(\"created\").has(\"name\", \"lop\")", "anonymized": "g.V(vid2).out(string0).has(string1, string2)", "dotnet": "g.V(vid2).Out(\"created\").Has(\"name\", \"lop\")", + "dotnet_parameterize": "g.V(vid2).Out(\"created\").Has(\"name\", \"lop\")", "go": "g.V(vid2).Out(\"created\").Has(\"name\", \"lop\")", "groovy": "g.V(vid2).out(\"created\").has(\"name\", \"lop\")", "java": "g.V(vid2).out(\"created\").has(\"name\", \"lop\")", @@ -17464,6 +18566,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -17476,6 +18579,7 @@ "canonical": "g.addE(\"knows\").from(__.V(vid1)).to(__.V(vid6)).property(\"weight\", xx1)", "anonymized": "g.addE(string0).from(__.V(vid1)).to(__.V(vid6)).property(string1, xx1)", "dotnet": "g.AddE((string) \"knows\").From(__.V(vid1)).To(__.V(vid6)).Property(\"weight\", xx1)", + "dotnet_parameterize": "g.AddE((string) \"knows\").From(__.V(vid1)).To(__.V(vid6)).Property(\"weight\", xx1)", "go": "g.AddE(\"knows\").From(gremlingo.T__.V(vid1)).To(gremlingo.T__.V(vid6)).Property(\"weight\", xx1)", "groovy": "g.addE(\"knows\").from(__.V(vid1)).to(__.V(vid6)).property(\"weight\", xx1)", "java": "g.addE(\"knows\").from(__.V(vid1)).to(__.V(vid6)).property(\"weight\", xx1)", @@ -17488,6 +18592,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -17500,6 +18605,7 @@ "canonical": "g.V(vid1).outE(\"knows\")", "anonymized": "g.V(vid1).outE(string0)", "dotnet": "g.V(vid1).OutE(\"knows\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"knows\")", "go": "g.V(vid1).OutE(\"knows\")", "groovy": "g.V(vid1).outE(\"knows\")", "java": "g.V(vid1).outE(\"knows\")", @@ -17512,6 +18618,7 @@ "canonical": "g.V(vid1).out(\"knows\").has(\"name\", \"peter\")", "anonymized": "g.V(vid1).out(string0).has(string1, string2)", "dotnet": "g.V(vid1).Out(\"knows\").Has(\"name\", \"peter\")", + "dotnet_parameterize": "g.V(vid1).Out(\"knows\").Has(\"name\", \"peter\")", "go": "g.V(vid1).Out(\"knows\").Has(\"name\", \"peter\")", "groovy": "g.V(vid1).out(\"knows\").has(\"name\", \"peter\")", "java": "g.V(vid1).out(\"knows\").has(\"name\", \"peter\")", @@ -17529,6 +18636,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -17541,6 +18649,7 @@ "canonical": "g.addE(xx1).from(__.V(vid1)).to(__.V(vid6)).property(\"weight\", xx2)", "anonymized": "g.addE(xx1).from(__.V(vid1)).to(__.V(vid6)).property(string0, xx2)", "dotnet": "g.AddE((string) xx1).From(__.V(vid1)).To(__.V(vid6)).Property(\"weight\", xx2)", + "dotnet_parameterize": "g.AddE(new GValue(\"xx1\", (string) xx1)).From(__.V(vid1)).To(__.V(vid6)).Property(\"weight\", xx2)", "go": "g.AddE(xx1).From(gremlingo.T__.V(vid1)).To(gremlingo.T__.V(vid6)).Property(\"weight\", xx2)", "groovy": "g.addE(xx1).from(__.V(vid1)).to(__.V(vid6)).property(\"weight\", xx2)", "java": "g.addE(xx1).from(__.V(vid1)).to(__.V(vid6)).property(\"weight\", xx2)", @@ -17553,6 +18662,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -17565,6 +18675,7 @@ "canonical": "g.V(vid1).outE(\"knows\")", "anonymized": "g.V(vid1).outE(string0)", "dotnet": "g.V(vid1).OutE(\"knows\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"knows\")", "go": "g.V(vid1).OutE(\"knows\")", "groovy": "g.V(vid1).outE(\"knows\")", "java": "g.V(vid1).outE(\"knows\")", @@ -17577,6 +18688,7 @@ "canonical": "g.V(vid1).out(\"knows\").has(\"name\", \"peter\")", "anonymized": "g.V(vid1).out(string0).has(string1, string2)", "dotnet": "g.V(vid1).Out(\"knows\").Has(\"name\", \"peter\")", + "dotnet_parameterize": "g.V(vid1).Out(\"knows\").Has(\"name\", \"peter\")", "go": "g.V(vid1).Out(\"knows\").Has(\"name\", \"peter\")", "groovy": "g.V(vid1).out(\"knows\").has(\"name\", \"peter\")", "java": "g.V(vid1).out(\"knows\").has(\"name\", \"peter\")", @@ -17594,6 +18706,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -17606,6 +18719,7 @@ "canonical": "g.V(vid1).addE(\"knows\").to(__.V(vid6)).property(\"weight\", xx1)", "anonymized": "g.V(vid1).addE(string0).to(__.V(vid6)).property(string1, xx1)", "dotnet": "g.V(vid1).AddE((string) \"knows\").To(__.V(vid6)).Property(\"weight\", xx1)", + "dotnet_parameterize": "g.V(vid1).AddE((string) \"knows\").To(__.V(vid6)).Property(\"weight\", xx1)", "go": "g.V(vid1).AddE(\"knows\").To(gremlingo.T__.V(vid6)).Property(\"weight\", xx1)", "groovy": "g.V(vid1).addE(\"knows\").to(__.V(vid6)).property(\"weight\", xx1)", "java": "g.V(vid1).addE(\"knows\").to(__.V(vid6)).property(\"weight\", xx1)", @@ -17618,6 +18732,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -17630,6 +18745,7 @@ "canonical": "g.V(vid1).outE(\"knows\")", "anonymized": "g.V(vid1).outE(string0)", "dotnet": "g.V(vid1).OutE(\"knows\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"knows\")", "go": "g.V(vid1).OutE(\"knows\")", "groovy": "g.V(vid1).outE(\"knows\")", "java": "g.V(vid1).outE(\"knows\")", @@ -17642,6 +18758,7 @@ "canonical": "g.V(vid1).out(\"knows\").has(\"name\", \"peter\")", "anonymized": "g.V(vid1).out(string0).has(string1, string2)", "dotnet": "g.V(vid1).Out(\"knows\").Has(\"name\", \"peter\")", + "dotnet_parameterize": "g.V(vid1).Out(\"knows\").Has(\"name\", \"peter\")", "go": "g.V(vid1).Out(\"knows\").Has(\"name\", \"peter\")", "groovy": "g.V(vid1).out(\"knows\").has(\"name\", \"peter\")", "java": "g.V(vid1).out(\"knows\").has(\"name\", \"peter\")", @@ -17659,6 +18776,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addV(string0).property(string1, string4).property(string3, number1)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", @@ -17671,6 +18789,7 @@ "canonical": "g.addE(\"knows\").property(\"weight\", null).from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\"))", "anonymized": "g.addE(string0).property(string1, object0).from(__.V().has(string2, string3)).to(__.V().has(string2, string4))", "dotnet": "g.AddE((string) \"knows\").Property(\"weight\", null).From(__.V().Has(\"name\", \"marko\")).To(__.V().Has(\"name\", \"vadas\"))", + "dotnet_parameterize": "g.AddE((string) \"knows\").Property(\"weight\", null).From(__.V().Has(\"name\", \"marko\")).To(__.V().Has(\"name\", \"vadas\"))", "go": "g.AddE(\"knows\").Property(\"weight\", nil).From(gremlingo.T__.V().Has(\"name\", \"marko\")).To(gremlingo.T__.V().Has(\"name\", \"vadas\"))", "groovy": "g.addE(\"knows\").property(\"weight\", null).from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\"))", "java": "g.addE(\"knows\").property(\"weight\", null).from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\"))", @@ -17683,6 +18802,7 @@ "canonical": "g.E().has(\"knows\", \"weight\", null)", "anonymized": "g.E().has(string0, string1, object0)", "dotnet": "g.E().Has(\"knows\", \"weight\", (object) null)", + "dotnet_parameterize": "g.E().Has(\"knows\", \"weight\", (object) null)", "go": "g.E().Has(\"knows\", \"weight\", nil)", "groovy": "g.E().has(\"knows\", \"weight\", null)", "java": "g.E().has(\"knows\", \"weight\", null)", @@ -17700,6 +18820,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addV(string0).property(string1, string4).property(string3, number1)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", @@ -17712,6 +18833,7 @@ "canonical": "g.addE(xx1).property(\"weight\", null).from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\"))", "anonymized": "g.addE(xx1).property(string0, object0).from(__.V().has(string1, string2)).to(__.V().has(string1, string3))", "dotnet": "g.AddE((string) xx1).Property(\"weight\", null).From(__.V().Has(\"name\", \"marko\")).To(__.V().Has(\"name\", \"vadas\"))", + "dotnet_parameterize": "g.AddE(new GValue(\"xx1\", (string) xx1)).Property(\"weight\", null).From(__.V().Has(\"name\", \"marko\")).To(__.V().Has(\"name\", \"vadas\"))", "go": "g.AddE(xx1).Property(\"weight\", nil).From(gremlingo.T__.V().Has(\"name\", \"marko\")).To(gremlingo.T__.V().Has(\"name\", \"vadas\"))", "groovy": "g.addE(xx1).property(\"weight\", null).from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\"))", "java": "g.addE(xx1).property(\"weight\", null).from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\"))", @@ -17724,6 +18846,7 @@ "canonical": "g.E().has(\"knows\", \"weight\", null)", "anonymized": "g.E().has(string0, string1, object0)", "dotnet": "g.E().Has(\"knows\", \"weight\", (object) null)", + "dotnet_parameterize": "g.E().Has(\"knows\", \"weight\", (object) null)", "go": "g.E().Has(\"knows\", \"weight\", nil)", "groovy": "g.E().has(\"knows\", \"weight\", null)", "java": "g.E().has(\"knows\", \"weight\", null)", @@ -17741,6 +18864,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addV(string0).property(string1, string4).property(string3, number1)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", @@ -17753,6 +18877,7 @@ "canonical": "g.union(__.addE(xx1).property(\"weight\", 1).from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\")))", "anonymized": "g.union(__.addE(xx1).property(string0, number0).from(__.V().has(string1, string2)).to(__.V().has(string1, string3)))", "dotnet": "g.Union(__.AddE((string) xx1).Property(\"weight\", 1).From(__.V().Has(\"name\", \"marko\")).To(__.V().Has(\"name\", \"vadas\")))", + "dotnet_parameterize": "g.Union(__.AddE(new GValue(\"xx1\", (string) xx1)).Property(\"weight\", 1).From(__.V().Has(\"name\", \"marko\")).To(__.V().Has(\"name\", \"vadas\")))", "go": "g.Union(gremlingo.T__.AddE(xx1).Property(\"weight\", 1).From(gremlingo.T__.V().Has(\"name\", \"marko\")).To(gremlingo.T__.V().Has(\"name\", \"vadas\")))", "groovy": "g.union(__.addE(xx1).property(\"weight\", 1).from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\")))", "java": "g.union(__.addE(xx1).property(\"weight\", 1).from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\")))", @@ -17765,6 +18890,7 @@ "canonical": "g.E().has(\"knows\", \"weight\", 1)", "anonymized": "g.E().has(string0, string1, number0)", "dotnet": "g.E().Has(\"knows\", \"weight\", 1)", + "dotnet_parameterize": "g.E().Has(\"knows\", \"weight\", 1)", "go": "g.E().Has(\"knows\", \"weight\", 1)", "groovy": "g.E().has(\"knows\", \"weight\", 1)", "java": "g.E().has(\"knows\", \"weight\", 1)", @@ -17782,6 +18908,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addV(string0).property(string1, string4).property(string3, number1)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", @@ -17794,6 +18921,7 @@ "canonical": "g.addE(\"edge\").from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\")).property(\"weight\", 0.5).with(\"key\", \"value\").values(\"weight\", \"key\")", "anonymized": "g.addE(string0).from(__.V().has(string1, string2)).to(__.V().has(string1, string3)).property(string4, number0).with(string5, string6).values(string4, string5)", "dotnet": "g.AddE((string) \"edge\").From(__.V().Has(\"name\", \"marko\")).To(__.V().Has(\"name\", \"vadas\")).Property(\"weight\", 0.5).With(\"key\", \"value\").Values(\"weight\", \"key\")", + "dotnet_parameterize": "g.AddE((string) \"edge\").From(__.V().Has(\"name\", \"marko\")).To(__.V().Has(\"name\", \"vadas\")).Property(\"weight\", 0.5).With(\"key\", \"value\").Values(\"weight\", \"key\")", "go": "g.AddE(\"edge\").From(gremlingo.T__.V().Has(\"name\", \"marko\")).To(gremlingo.T__.V().Has(\"name\", \"vadas\")).Property(\"weight\", 0.5).With(\"key\", \"value\").Values(\"weight\", \"key\")", "groovy": "g.addE(\"edge\").from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\")).property(\"weight\", 0.5).with(\"key\", \"value\").values(\"weight\", \"key\")", "java": "g.addE(\"edge\").from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\")).property(\"weight\", 0.5).with(\"key\", \"value\").values(\"weight\", \"key\")", @@ -17811,6 +18939,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addV(string0).property(string1, string4).property(string3, number1)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", @@ -17823,6 +18952,7 @@ "canonical": "g.addE(\"knows\").from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\")).property(\"weight\", 0.5).addE(\"knows\").from(__.V().has(\"name\", \"marko\"))", "anonymized": "g.addE(string0).from(__.V().has(string1, string2)).to(__.V().has(string1, string3)).property(string4, number0).addE(string0).from(__.V().has(string1, string2))", "dotnet": "g.AddE((string) \"knows\").From(__.V().Has(\"name\", \"marko\")).To(__.V().Has(\"name\", \"vadas\")).Property(\"weight\", 0.5).AddE((string) \"knows\").From(__.V().Has(\"name\", \"marko\"))", + "dotnet_parameterize": "g.AddE((string) \"knows\").From(__.V().Has(\"name\", \"marko\")).To(__.V().Has(\"name\", \"vadas\")).Property(\"weight\", 0.5).AddE((string) \"knows\").From(__.V().Has(\"name\", \"marko\"))", "go": "g.AddE(\"knows\").From(gremlingo.T__.V().Has(\"name\", \"marko\")).To(gremlingo.T__.V().Has(\"name\", \"vadas\")).Property(\"weight\", 0.5).AddE(\"knows\").From(gremlingo.T__.V().Has(\"name\", \"marko\"))", "groovy": "g.addE(\"knows\").from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\")).property(\"weight\", 0.5).addE(\"knows\").from(__.V().has(\"name\", \"marko\"))", "java": "g.addE(\"knows\").from(__.V().has(\"name\", \"marko\")).to(__.V().has(\"name\", \"vadas\")).property(\"weight\", 0.5).addE(\"knows\").from(__.V().has(\"name\", \"marko\"))", @@ -17840,6 +18970,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -17852,6 +18983,7 @@ "canonical": "g.V(vid1).as(\"a\").addV(\"animal\").property(\"age\", __.select(\"a\").by(\"age\")).property(\"name\", \"puppy\")", "anonymized": "g.V(vid1).as(string0).addV(string1).property(string2, __.select(string0).by(string2)).property(string3, string4)", "dotnet": "g.V(vid1).As(\"a\").AddV((string) \"animal\").Property(\"age\", __.Select(\"a\").By(\"age\")).Property(\"name\", \"puppy\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").AddV((string) \"animal\").Property(\"age\", __.Select(\"a\").By(\"age\")).Property(\"name\", \"puppy\")", "go": "g.V(vid1).As(\"a\").AddV(\"animal\").Property(\"age\", gremlingo.T__.Select(\"a\").By(\"age\")).Property(\"name\", \"puppy\")", "groovy": "g.V(vid1).as(\"a\").addV(\"animal\").property(\"age\", __.select(\"a\").by(\"age\")).property(\"name\", \"puppy\")", "java": "g.V(vid1).as(\"a\").addV(\"animal\").property(\"age\", __.select(\"a\").by(\"age\")).property(\"name\", \"puppy\")", @@ -17864,6 +18996,7 @@ "canonical": "g.V().has(\"animal\", \"age\", 29)", "anonymized": "g.V().has(string0, string1, number0)", "dotnet": "g.V().Has(\"animal\", \"age\", 29)", + "dotnet_parameterize": "g.V().Has(\"animal\", \"age\", 29)", "go": "g.V().Has(\"animal\", \"age\", 29)", "groovy": "g.V().has(\"animal\", \"age\", 29)", "java": "g.V().has(\"animal\", \"age\", 29)", @@ -17881,6 +19014,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -17893,6 +19027,7 @@ "canonical": "g.V().addV(\"animal\").property(\"age\", 0)", "anonymized": "g.V().addV(string0).property(string1, number0)", "dotnet": "g.V().AddV((string) \"animal\").Property(\"age\", 0)", + "dotnet_parameterize": "g.V().AddV((string) \"animal\").Property(\"age\", 0)", "go": "g.V().AddV(\"animal\").Property(\"age\", 0)", "groovy": "g.V().addV(\"animal\").property(\"age\", 0)", "java": "g.V().addV(\"animal\").property(\"age\", 0)", @@ -17905,6 +19040,7 @@ "canonical": "g.V().has(\"animal\", \"age\", 0)", "anonymized": "g.V().has(string0, string1, number0)", "dotnet": "g.V().Has(\"animal\", \"age\", 0)", + "dotnet_parameterize": "g.V().Has(\"animal\", \"age\", 0)", "go": "g.V().Has(\"animal\", \"age\", 0)", "groovy": "g.V().has(\"animal\", \"age\", 0)", "java": "g.V().has(\"animal\", \"age\", 0)", @@ -17922,6 +19058,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -17934,6 +19071,7 @@ "canonical": "g.V().addV(xx1).property(\"age\", xx2)", "anonymized": "g.V().addV(xx1).property(string0, xx2)", "dotnet": "g.V().AddV((string) xx1).Property(\"age\", xx2)", + "dotnet_parameterize": "g.V().AddV(new GValue(\"xx1\", (string) xx1)).Property(\"age\", xx2)", "go": "g.V().AddV(xx1).Property(\"age\", xx2)", "groovy": "g.V().addV(xx1).property(\"age\", xx2)", "java": "g.V().addV(xx1).property(\"age\", xx2)", @@ -17946,6 +19084,7 @@ "canonical": "g.V().has(\"animal\", \"age\", 0)", "anonymized": "g.V().has(string0, string1, number0)", "dotnet": "g.V().Has(\"animal\", \"age\", 0)", + "dotnet_parameterize": "g.V().Has(\"animal\", \"age\", 0)", "go": "g.V().Has(\"animal\", \"age\", 0)", "groovy": "g.V().has(\"animal\", \"age\", 0)", "java": "g.V().has(\"animal\", \"age\", 0)", @@ -17963,6 +19102,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -17975,6 +19115,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"stephen\")", "anonymized": "g.addV(string0).property(string1, string2)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"stephen\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"stephen\")", "go": "g.AddV(\"person\").Property(\"name\", \"stephen\")", "groovy": "g.addV(\"person\").property(\"name\", \"stephen\")", "java": "g.addV(\"person\").property(\"name\", \"stephen\")", @@ -17987,6 +19128,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\")", "go": "g.V().Has(\"person\", \"name\", \"stephen\")", "groovy": "g.V().has(\"person\", \"name\", \"stephen\")", "java": "g.V().has(\"person\", \"name\", \"stephen\")", @@ -18004,6 +19146,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18016,6 +19159,7 @@ "canonical": "g.addV(xx1).property(\"name\", xx2)", "anonymized": "g.addV(xx1).property(string0, xx2)", "dotnet": "g.AddV((string) xx1).Property(\"name\", xx2)", + "dotnet_parameterize": "g.AddV(new GValue(\"xx1\", (string) xx1)).Property(\"name\", xx2)", "go": "g.AddV(xx1).Property(\"name\", xx2)", "groovy": "g.addV(xx1).property(\"name\", xx2)", "java": "g.addV(xx1).property(\"name\", xx2)", @@ -18028,6 +19172,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\")", "go": "g.V().Has(\"person\", \"name\", \"stephen\")", "groovy": "g.V().has(\"person\", \"name\", \"stephen\")", "java": "g.V().has(\"person\", \"name\", \"stephen\")", @@ -18045,6 +19190,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18057,6 +19203,7 @@ "canonical": "g.V().hasLabel(\"person\").property(Cardinality.single, \"name\", null)", "anonymized": "g.V().hasLabel(string0).property(Cardinality.single, string1, object0)", "dotnet": "g.V().HasLabel(\"person\").Property(Cardinality.Single, \"name\", (object) null)", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Property(Cardinality.Single, \"name\", (object) null)", "go": "g.V().HasLabel(\"person\").Property(gremlingo.Cardinality.Single, \"name\", nil)", "groovy": "g.V().hasLabel(\"person\").property(Cardinality.single, \"name\", null)", "java": "g.V().hasLabel(\"person\").property(Cardinality.single, \"name\", null)", @@ -18069,6 +19216,7 @@ "canonical": "g.V().properties(\"name\")", "anonymized": "g.V().properties(string0)", "dotnet": "g.V().Properties(\"name\")", + "dotnet_parameterize": "g.V().Properties(\"name\")", "go": "g.V().Properties(\"name\")", "groovy": "g.V().properties(\"name\")", "java": "g.V().properties(\"name\")", @@ -18086,6 +19234,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18098,6 +19247,7 @@ "canonical": "g.addV(\"person\").property(Cardinality.single, \"name\", \"stephen\").property(Cardinality.single, \"name\", \"stephenm\")", "anonymized": "g.addV(string0).property(Cardinality.single, string1, string2).property(Cardinality.single, string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(Cardinality.Single, \"name\", \"stephen\").Property(Cardinality.Single, \"name\", \"stephenm\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(Cardinality.Single, \"name\", \"stephen\").Property(Cardinality.Single, \"name\", \"stephenm\")", "go": "g.AddV(\"person\").Property(gremlingo.Cardinality.Single, \"name\", \"stephen\").Property(gremlingo.Cardinality.Single, \"name\", \"stephenm\")", "groovy": "g.addV(\"person\").property(Cardinality.single, \"name\", \"stephen\").property(Cardinality.single, \"name\", \"stephenm\")", "java": "g.addV(\"person\").property(Cardinality.single, \"name\", \"stephen\").property(Cardinality.single, \"name\", \"stephenm\")", @@ -18110,6 +19260,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\")", "go": "g.V().Has(\"person\", \"name\", \"stephen\")", "groovy": "g.V().has(\"person\", \"name\", \"stephen\")", "java": "g.V().has(\"person\", \"name\", \"stephen\")", @@ -18122,6 +19273,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephenm\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephenm\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephenm\")", "go": "g.V().Has(\"person\", \"name\", \"stephenm\")", "groovy": "g.V().has(\"person\", \"name\", \"stephenm\")", "java": "g.V().has(\"person\", \"name\", \"stephenm\")", @@ -18139,6 +19291,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18151,6 +19304,7 @@ "canonical": "g.addV(\"person\").property(Cardinality.single, \"name\", \"stephen\").property(Cardinality.single, \"name\", \"stephenm\", \"since\", 2010)", "anonymized": "g.addV(string0).property(Cardinality.single, string1, string2).property(Cardinality.single, string1, string3, string4, number0)", "dotnet": "g.AddV((string) \"person\").Property(Cardinality.Single, \"name\", \"stephen\").Property(Cardinality.Single, \"name\", \"stephenm\", \"since\", 2010)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(Cardinality.Single, \"name\", \"stephen\").Property(Cardinality.Single, \"name\", \"stephenm\", \"since\", 2010)", "go": "g.AddV(\"person\").Property(gremlingo.Cardinality.Single, \"name\", \"stephen\").Property(gremlingo.Cardinality.Single, \"name\", \"stephenm\", \"since\", 2010)", "groovy": "g.addV(\"person\").property(Cardinality.single, \"name\", \"stephen\").property(Cardinality.single, \"name\", \"stephenm\", \"since\", 2010)", "java": "g.addV(\"person\").property(Cardinality.single, \"name\", \"stephen\").property(Cardinality.single, \"name\", \"stephenm\", \"since\", 2010)", @@ -18163,6 +19317,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\")", "go": "g.V().Has(\"person\", \"name\", \"stephen\")", "groovy": "g.V().has(\"person\", \"name\", \"stephen\")", "java": "g.V().has(\"person\", \"name\", \"stephen\")", @@ -18175,6 +19330,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephenm\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephenm\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephenm\")", "go": "g.V().Has(\"person\", \"name\", \"stephenm\")", "groovy": "g.V().has(\"person\", \"name\", \"stephenm\")", "java": "g.V().has(\"person\", \"name\", \"stephenm\")", @@ -18187,6 +19343,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephenm\").properties(\"name\").has(\"since\", 2010)", "anonymized": "g.V().has(string0, string1, string2).properties(string1).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephenm\").Properties(\"name\").Has(\"since\", 2010)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephenm\").Properties(\"name\").Has(\"since\", 2010)", "go": "g.V().Has(\"person\", \"name\", \"stephenm\").Properties(\"name\").Has(\"since\", 2010)", "groovy": "g.V().has(\"person\", \"name\", \"stephenm\").properties(\"name\").has(\"since\", 2010)", "java": "g.V().has(\"person\", \"name\", \"stephenm\").properties(\"name\").has(\"since\", 2010)", @@ -18204,6 +19361,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18216,6 +19374,7 @@ "canonical": "g.V().has(\"name\", \"marko\").property(\"friendWeight\", __.outE(\"knows\").values(\"weight\").sum(), \"acl\", \"private\")", "anonymized": "g.V().has(string0, string1).property(string2, __.outE(string3).values(string4).sum(), string5, string6)", "dotnet": "g.V().Has(\"name\", \"marko\").Property(\"friendWeight\", __.OutE(\"knows\").Values(\"weight\").Sum(), \"acl\", \"private\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Property(\"friendWeight\", __.OutE(\"knows\").Values(\"weight\").Sum(), \"acl\", \"private\")", "go": "g.V().Has(\"name\", \"marko\").Property(\"friendWeight\", gremlingo.T__.OutE(\"knows\").Values(\"weight\").Sum(), \"acl\", \"private\")", "groovy": "g.V().has(\"name\", \"marko\").property(\"friendWeight\", __.outE(\"knows\").values(\"weight\").sum(), \"acl\", \"private\")", "java": "g.V().has(\"name\", \"marko\").property(\"friendWeight\", __.outE(\"knows\").values(\"weight\").sum(), \"acl\", \"private\")", @@ -18228,6 +19387,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"friendWeight\", 1.5)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"friendWeight\", 1.5)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"friendWeight\", 1.5)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"friendWeight\", 1.5)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"friendWeight\", 1.5)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"friendWeight\", 1.5)", @@ -18240,6 +19400,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").properties(\"friendWeight\").has(\"acl\", \"private\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3).has(string4, string5)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"friendWeight\").Has(\"acl\", \"private\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"friendWeight\").Has(\"acl\", \"private\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"friendWeight\").Has(\"acl\", \"private\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").properties(\"friendWeight\").has(\"acl\", \"private\")", "java": "g.V().has(\"person\", \"name\", \"marko\").properties(\"friendWeight\").has(\"acl\", \"private\")", @@ -18252,6 +19413,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").properties(\"friendWeight\").count()", "anonymized": "g.V().has(string0, string1, string2).properties(string3).count()", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"friendWeight\").Count()", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"friendWeight\").Count()", "go": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"friendWeight\").Count()", "groovy": "g.V().has(\"person\", \"name\", \"marko\").properties(\"friendWeight\").count()", "java": "g.V().has(\"person\", \"name\", \"marko\").properties(\"friendWeight\").count()", @@ -18269,6 +19431,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18281,6 +19444,7 @@ "canonical": "g.addV(\"animal\").property(\"name\", \"mateo\").property(\"name\", \"gateo\").property(\"name\", \"cateo\").property(\"age\", 5)", "anonymized": "g.addV(string0).property(string1, string2).property(string1, string3).property(string1, string4).property(string5, number0)", "dotnet": "g.AddV((string) \"animal\").Property(\"name\", \"mateo\").Property(\"name\", \"gateo\").Property(\"name\", \"cateo\").Property(\"age\", 5)", + "dotnet_parameterize": "g.AddV((string) \"animal\").Property(\"name\", \"mateo\").Property(\"name\", \"gateo\").Property(\"name\", \"cateo\").Property(\"age\", 5)", "go": "g.AddV(\"animal\").Property(\"name\", \"mateo\").Property(\"name\", \"gateo\").Property(\"name\", \"cateo\").Property(\"age\", 5)", "groovy": "g.addV(\"animal\").property(\"name\", \"mateo\").property(\"name\", \"gateo\").property(\"name\", \"cateo\").property(\"age\", 5)", "java": "g.addV(\"animal\").property(\"name\", \"mateo\").property(\"name\", \"gateo\").property(\"name\", \"cateo\").property(\"age\", 5)", @@ -18293,6 +19457,7 @@ "canonical": "g.V().hasLabel(\"animal\").has(\"name\", \"mateo\").has(\"name\", \"gateo\").has(\"name\", \"cateo\").has(\"age\", 5)", "anonymized": "g.V().hasLabel(string0).has(string1, string2).has(string1, string3).has(string1, string4).has(string5, number0)", "dotnet": "g.V().HasLabel(\"animal\").Has(\"name\", \"mateo\").Has(\"name\", \"gateo\").Has(\"name\", \"cateo\").Has(\"age\", 5)", + "dotnet_parameterize": "g.V().HasLabel(\"animal\").Has(\"name\", \"mateo\").Has(\"name\", \"gateo\").Has(\"name\", \"cateo\").Has(\"age\", 5)", "go": "g.V().HasLabel(\"animal\").Has(\"name\", \"mateo\").Has(\"name\", \"gateo\").Has(\"name\", \"cateo\").Has(\"age\", 5)", "groovy": "g.V().hasLabel(\"animal\").has(\"name\", \"mateo\").has(\"name\", \"gateo\").has(\"name\", \"cateo\").has(\"age\", 5)", "java": "g.V().hasLabel(\"animal\").has(\"name\", \"mateo\").has(\"name\", \"gateo\").has(\"name\", \"cateo\").has(\"age\", 5)", @@ -18310,6 +19475,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18322,6 +19488,7 @@ "canonical": "g.withSideEffect(\"a\", \"marko\").addV().property(\"name\", __.select(\"a\")).values(\"name\")", "anonymized": "g.withSideEffect(string0, string1).addV().property(string2, __.select(string0)).values(string2)", "dotnet": "g.WithSideEffect(\"a\", \"marko\").AddV().Property(\"name\", __.Select(\"a\")).Values(\"name\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", \"marko\").AddV().Property(\"name\", __.Select(\"a\")).Values(\"name\")", "go": "g.WithSideEffect(\"a\", \"marko\").AddV().Property(\"name\", gremlingo.T__.Select(\"a\")).Values(\"name\")", "groovy": "g.withSideEffect(\"a\", \"marko\").addV().property(\"name\", __.select(\"a\")).values(\"name\")", "java": "g.withSideEffect(\"a\", \"marko\").addV().property(\"name\", __.select(\"a\")).values(\"name\")", @@ -18334,6 +19501,7 @@ "canonical": "g.V().has(\"name\", \"marko\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"marko\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\")", "go": "g.V().Has(\"name\", \"marko\")", "groovy": "g.V().has(\"name\", \"marko\")", "java": "g.V().has(\"name\", \"marko\")", @@ -18351,6 +19519,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18363,6 +19532,7 @@ "canonical": "g.addV(\"person\").property(Cardinality.single, \"name\", \"stephen\").property(Cardinality.single, \"name\", \"stephenm\", \"since\", 2010)", "anonymized": "g.addV(string0).property(Cardinality.single, string1, string2).property(Cardinality.single, string1, string3, string4, number0)", "dotnet": "g.AddV((string) \"person\").Property(Cardinality.Single, \"name\", \"stephen\").Property(Cardinality.Single, \"name\", \"stephenm\", \"since\", 2010)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(Cardinality.Single, \"name\", \"stephen\").Property(Cardinality.Single, \"name\", \"stephenm\", \"since\", 2010)", "go": "g.AddV(\"person\").Property(gremlingo.Cardinality.Single, \"name\", \"stephen\").Property(gremlingo.Cardinality.Single, \"name\", \"stephenm\", \"since\", 2010)", "groovy": "g.addV(\"person\").property(Cardinality.single, \"name\", \"stephen\").property(Cardinality.single, \"name\", \"stephenm\", \"since\", 2010)", "java": "g.addV(\"person\").property(Cardinality.single, \"name\", \"stephen\").property(Cardinality.single, \"name\", \"stephenm\", \"since\", 2010)", @@ -18375,6 +19545,7 @@ "canonical": "g.V().has(\"name\", \"stephen\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"stephen\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"stephen\")", "go": "g.V().Has(\"name\", \"stephen\")", "groovy": "g.V().has(\"name\", \"stephen\")", "java": "g.V().has(\"name\", \"stephen\")", @@ -18387,6 +19558,7 @@ "canonical": "g.V().has(\"name\", \"stephenm\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"stephenm\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"stephenm\")", "go": "g.V().Has(\"name\", \"stephenm\")", "groovy": "g.V().has(\"name\", \"stephenm\")", "java": "g.V().has(\"name\", \"stephenm\")", @@ -18399,6 +19571,7 @@ "canonical": "g.V().has(\"name\", \"stephenm\").properties(\"name\").has(\"since\", 2010)", "anonymized": "g.V().has(string0, string1).properties(string0).has(string2, number0)", "dotnet": "g.V().Has(\"name\", \"stephenm\").Properties(\"name\").Has(\"since\", 2010)", + "dotnet_parameterize": "g.V().Has(\"name\", \"stephenm\").Properties(\"name\").Has(\"since\", 2010)", "go": "g.V().Has(\"name\", \"stephenm\").Properties(\"name\").Has(\"since\", 2010)", "groovy": "g.V().has(\"name\", \"stephenm\").properties(\"name\").has(\"since\", 2010)", "java": "g.V().has(\"name\", \"stephenm\").properties(\"name\").has(\"since\", 2010)", @@ -18416,6 +19589,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18428,6 +19602,7 @@ "canonical": "g.V().addV(\"animal\").property(\"name\", __.values(\"name\")).property(\"name\", \"an animal\").property(__.values(\"name\"), __.label())", "anonymized": "g.V().addV(string0).property(string1, __.values(string1)).property(string1, string2).property(__.values(string1), __.label())", "dotnet": "g.V().AddV((string) \"animal\").Property(\"name\", __.Values(\"name\")).Property(\"name\", \"an animal\").Property(__.Values(\"name\"), __.Label())", + "dotnet_parameterize": "g.V().AddV((string) \"animal\").Property(\"name\", __.Values(\"name\")).Property(\"name\", \"an animal\").Property(__.Values(\"name\"), __.Label())", "go": "g.V().AddV(\"animal\").Property(\"name\", gremlingo.T__.Values(\"name\")).Property(\"name\", \"an animal\").Property(gremlingo.T__.Values(\"name\"), gremlingo.T__.Label())", "groovy": "g.V().addV(\"animal\").property(\"name\", __.values(\"name\")).property(\"name\", \"an animal\").property(__.values(\"name\"), __.label())", "java": "g.V().addV(\"animal\").property(\"name\", __.values(\"name\")).property(\"name\", \"an animal\").property(__.values(\"name\"), __.label())", @@ -18440,6 +19615,7 @@ "canonical": "g.V().hasLabel(\"animal\").has(\"name\", \"marko\").has(\"name\", \"an animal\").has(\"marko\", \"person\")", "anonymized": "g.V().hasLabel(string0).has(string1, string2).has(string1, string3).has(string2, string4)", "dotnet": "g.V().HasLabel(\"animal\").Has(\"name\", \"marko\").Has(\"name\", \"an animal\").Has(\"marko\", \"person\")", + "dotnet_parameterize": "g.V().HasLabel(\"animal\").Has(\"name\", \"marko\").Has(\"name\", \"an animal\").Has(\"marko\", \"person\")", "go": "g.V().HasLabel(\"animal\").Has(\"name\", \"marko\").Has(\"name\", \"an animal\").Has(\"marko\", \"person\")", "groovy": "g.V().hasLabel(\"animal\").has(\"name\", \"marko\").has(\"name\", \"an animal\").has(\"marko\", \"person\")", "java": "g.V().hasLabel(\"animal\").has(\"name\", \"marko\").has(\"name\", \"an animal\").has(\"marko\", \"person\")", @@ -18452,6 +19628,7 @@ "canonical": "g.V().hasLabel(\"animal\").has(\"name\", \"vadas\").has(\"name\", \"an animal\").has(\"vadas\", \"person\")", "anonymized": "g.V().hasLabel(string0).has(string1, string2).has(string1, string3).has(string2, string4)", "dotnet": "g.V().HasLabel(\"animal\").Has(\"name\", \"vadas\").Has(\"name\", \"an animal\").Has(\"vadas\", \"person\")", + "dotnet_parameterize": "g.V().HasLabel(\"animal\").Has(\"name\", \"vadas\").Has(\"name\", \"an animal\").Has(\"vadas\", \"person\")", "go": "g.V().HasLabel(\"animal\").Has(\"name\", \"vadas\").Has(\"name\", \"an animal\").Has(\"vadas\", \"person\")", "groovy": "g.V().hasLabel(\"animal\").has(\"name\", \"vadas\").has(\"name\", \"an animal\").has(\"vadas\", \"person\")", "java": "g.V().hasLabel(\"animal\").has(\"name\", \"vadas\").has(\"name\", \"an animal\").has(\"vadas\", \"person\")", @@ -18464,6 +19641,7 @@ "canonical": "g.V().hasLabel(\"animal\").has(\"name\", \"lop\").has(\"name\", \"an animal\").has(\"lop\", \"software\")", "anonymized": "g.V().hasLabel(string0).has(string1, string2).has(string1, string3).has(string2, string4)", "dotnet": "g.V().HasLabel(\"animal\").Has(\"name\", \"lop\").Has(\"name\", \"an animal\").Has(\"lop\", \"software\")", + "dotnet_parameterize": "g.V().HasLabel(\"animal\").Has(\"name\", \"lop\").Has(\"name\", \"an animal\").Has(\"lop\", \"software\")", "go": "g.V().HasLabel(\"animal\").Has(\"name\", \"lop\").Has(\"name\", \"an animal\").Has(\"lop\", \"software\")", "groovy": "g.V().hasLabel(\"animal\").has(\"name\", \"lop\").has(\"name\", \"an animal\").has(\"lop\", \"software\")", "java": "g.V().hasLabel(\"animal\").has(\"name\", \"lop\").has(\"name\", \"an animal\").has(\"lop\", \"software\")", @@ -18476,6 +19654,7 @@ "canonical": "g.V().hasLabel(\"animal\").has(\"name\", \"josh\").has(\"name\", \"an animal\").has(\"josh\", \"person\")", "anonymized": "g.V().hasLabel(string0).has(string1, string2).has(string1, string3).has(string2, string4)", "dotnet": "g.V().HasLabel(\"animal\").Has(\"name\", \"josh\").Has(\"name\", \"an animal\").Has(\"josh\", \"person\")", + "dotnet_parameterize": "g.V().HasLabel(\"animal\").Has(\"name\", \"josh\").Has(\"name\", \"an animal\").Has(\"josh\", \"person\")", "go": "g.V().HasLabel(\"animal\").Has(\"name\", \"josh\").Has(\"name\", \"an animal\").Has(\"josh\", \"person\")", "groovy": "g.V().hasLabel(\"animal\").has(\"name\", \"josh\").has(\"name\", \"an animal\").has(\"josh\", \"person\")", "java": "g.V().hasLabel(\"animal\").has(\"name\", \"josh\").has(\"name\", \"an animal\").has(\"josh\", \"person\")", @@ -18488,6 +19667,7 @@ "canonical": "g.V().hasLabel(\"animal\").has(\"name\", \"ripple\").has(\"name\", \"an animal\").has(\"ripple\", \"software\")", "anonymized": "g.V().hasLabel(string0).has(string1, string2).has(string1, string3).has(string2, string4)", "dotnet": "g.V().HasLabel(\"animal\").Has(\"name\", \"ripple\").Has(\"name\", \"an animal\").Has(\"ripple\", \"software\")", + "dotnet_parameterize": "g.V().HasLabel(\"animal\").Has(\"name\", \"ripple\").Has(\"name\", \"an animal\").Has(\"ripple\", \"software\")", "go": "g.V().HasLabel(\"animal\").Has(\"name\", \"ripple\").Has(\"name\", \"an animal\").Has(\"ripple\", \"software\")", "groovy": "g.V().hasLabel(\"animal\").has(\"name\", \"ripple\").has(\"name\", \"an animal\").has(\"ripple\", \"software\")", "java": "g.V().hasLabel(\"animal\").has(\"name\", \"ripple\").has(\"name\", \"an animal\").has(\"ripple\", \"software\")", @@ -18500,6 +19680,7 @@ "canonical": "g.V().hasLabel(\"animal\").has(\"name\", \"peter\").has(\"name\", \"an animal\").has(\"peter\", \"person\")", "anonymized": "g.V().hasLabel(string0).has(string1, string2).has(string1, string3).has(string2, string4)", "dotnet": "g.V().HasLabel(\"animal\").Has(\"name\", \"peter\").Has(\"name\", \"an animal\").Has(\"peter\", \"person\")", + "dotnet_parameterize": "g.V().HasLabel(\"animal\").Has(\"name\", \"peter\").Has(\"name\", \"an animal\").Has(\"peter\", \"person\")", "go": "g.V().HasLabel(\"animal\").Has(\"name\", \"peter\").Has(\"name\", \"an animal\").Has(\"peter\", \"person\")", "groovy": "g.V().hasLabel(\"animal\").has(\"name\", \"peter\").has(\"name\", \"an animal\").has(\"peter\", \"person\")", "java": "g.V().hasLabel(\"animal\").has(\"name\", \"peter\").has(\"name\", \"an animal\").has(\"peter\", \"person\")", @@ -18517,6 +19698,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18529,6 +19711,7 @@ "canonical": "g.withSideEffect(\"a\", \"test\").V().hasLabel(\"software\").property(\"temp\", __.select(\"a\")).valueMap(\"name\", \"temp\")", "anonymized": "g.withSideEffect(string0, string1).V().hasLabel(string2).property(string3, __.select(string0)).valueMap(string4, string3)", "dotnet": "g.WithSideEffect(\"a\", \"test\").V().HasLabel(\"software\").Property(\"temp\", __.Select(\"a\")).ValueMap(\"name\", \"temp\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", \"test\").V().HasLabel(\"software\").Property(\"temp\", __.Select(\"a\")).ValueMap(\"name\", \"temp\")", "go": "g.WithSideEffect(\"a\", \"test\").V().HasLabel(\"software\").Property(\"temp\", gremlingo.T__.Select(\"a\")).ValueMap(\"name\", \"temp\")", "groovy": "g.withSideEffect(\"a\", \"test\").V().hasLabel(\"software\").property(\"temp\", __.select(\"a\")).valueMap(\"name\", \"temp\")", "java": "g.withSideEffect(\"a\", \"test\").V().hasLabel(\"software\").property(\"temp\", __.select(\"a\")).valueMap(\"name\", \"temp\")", @@ -18546,6 +19729,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18558,6 +19742,7 @@ "canonical": "g.withSideEffect(\"a\", \"name\").addV().property(__.select(\"a\"), \"marko\").values(\"name\")", "anonymized": "g.withSideEffect(string0, string1).addV().property(__.select(string0), string2).values(string1)", "dotnet": "g.WithSideEffect(\"a\", \"name\").AddV().Property(__.Select(\"a\"), \"marko\").Values(\"name\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", \"name\").AddV().Property(__.Select(\"a\"), \"marko\").Values(\"name\")", "go": "g.WithSideEffect(\"a\", \"name\").AddV().Property(gremlingo.T__.Select(\"a\"), \"marko\").Values(\"name\")", "groovy": "g.withSideEffect(\"a\", \"name\").addV().property(__.select(\"a\"), \"marko\").values(\"name\")", "java": "g.withSideEffect(\"a\", \"name\").addV().property(__.select(\"a\"), \"marko\").values(\"name\")", @@ -18570,6 +19755,7 @@ "canonical": "g.V().has(\"name\", \"marko\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"marko\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\")", "go": "g.V().Has(\"name\", \"marko\")", "groovy": "g.V().has(\"name\", \"marko\")", "java": "g.V().has(\"name\", \"marko\")", @@ -18587,6 +19773,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18599,6 +19786,7 @@ "canonical": "g.V().as(\"a\").has(\"name\", \"marko\").out(\"created\").as(\"b\").addV(__.select(\"a\").label()).property(\"test\", __.select(\"b\").label()).valueMap().with(WithOptions.tokens)", "anonymized": "g.V().as(string0).has(string1, string2).out(string3).as(string4).addV(__.select(string0).label()).property(string5, __.select(string4).label()).valueMap().with(WithOptions.tokens)", "dotnet": "g.V().As(\"a\").Has(\"name\", \"marko\").Out(\"created\").As(\"b\").AddV(__.Select(\"a\").Label()).Property(\"test\", __.Select(\"b\").Label()).ValueMap().With(WithOptions.Tokens)", + "dotnet_parameterize": "g.V().As(\"a\").Has(\"name\", \"marko\").Out(\"created\").As(\"b\").AddV(__.Select(\"a\").Label()).Property(\"test\", __.Select(\"b\").Label()).ValueMap().With(WithOptions.Tokens)", "go": "g.V().As(\"a\").Has(\"name\", \"marko\").Out(\"created\").As(\"b\").AddV(gremlingo.T__.Select(\"a\").Label()).Property(\"test\", gremlingo.T__.Select(\"b\").Label()).ValueMap().With(gremlingo.WithOptions.Tokens)", "groovy": "g.V().as(\"a\").has(\"name\", \"marko\").out(\"created\").as(\"b\").addV(__.select(\"a\").label()).property(\"test\", __.select(\"b\").label()).valueMap().with(WithOptions.tokens)", "java": "g.V().as(\"a\").has(\"name\", \"marko\").out(\"created\").as(\"b\").addV(__.select(\"a\").label()).property(\"test\", __.select(\"b\").label()).valueMap().with(WithOptions.tokens)", @@ -18611,6 +19799,7 @@ "canonical": "g.V().has(\"person\", \"test\", \"software\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"test\", \"software\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"test\", \"software\")", "go": "g.V().Has(\"person\", \"test\", \"software\")", "groovy": "g.V().has(\"person\", \"test\", \"software\")", "java": "g.V().has(\"person\", \"test\", \"software\")", @@ -18628,6 +19817,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -18640,6 +19830,7 @@ "canonical": "g.addV(__.V().has(\"name\", \"marko\").properties(\"name\").key()).label()", "anonymized": "g.addV(__.V().has(string0, string1).properties(string0).key()).label()", "dotnet": "g.AddV(__.V().Has(\"name\", \"marko\").Properties(\"name\").Key()).Label()", + "dotnet_parameterize": "g.AddV(__.V().Has(\"name\", \"marko\").Properties(\"name\").Key()).Label()", "go": "g.AddV(gremlingo.T__.V().Has(\"name\", \"marko\").Properties(\"name\").Key()).Label()", "groovy": "g.addV(__.V().has(\"name\", \"marko\").properties(\"name\").key()).label()", "java": "g.addV(__.V().has(\"name\", \"marko\").properties(\"name\").key()).label()", @@ -18657,6 +19848,7 @@ "canonical": "g.addV().property(T.label, \"person\")", "anonymized": "g.addV().property(T.label, string0)", "dotnet": "g.AddV().Property(T.Label, \"person\")", + "dotnet_parameterize": "g.AddV().Property(T.Label, \"person\")", "go": "g.AddV().Property(gremlingo.T.Label, \"person\")", "groovy": "g.addV().property(T.label, \"person\")", "java": "g.addV().property(T.label, \"person\")", @@ -18669,6 +19861,7 @@ "canonical": "g.V().hasLabel(\"person\")", "anonymized": "g.V().hasLabel(string0)", "dotnet": "g.V().HasLabel(\"person\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\")", "go": "g.V().HasLabel(\"person\")", "groovy": "g.V().hasLabel(\"person\")", "java": "g.V().hasLabel(\"person\")", @@ -18686,6 +19879,7 @@ "canonical": "g.addV().property(T.label, xx1)", "anonymized": "g.addV().property(T.label, xx1)", "dotnet": "g.AddV().Property(T.Label, xx1)", + "dotnet_parameterize": "g.AddV().Property(T.Label, xx1)", "go": "g.AddV().Property(gremlingo.T.Label, xx1)", "groovy": "g.addV().property(T.label, xx1)", "java": "g.addV().property(T.label, xx1)", @@ -18698,6 +19892,7 @@ "canonical": "g.V().hasLabel(\"person\")", "anonymized": "g.V().hasLabel(string0)", "dotnet": "g.V().HasLabel(\"person\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\")", "go": "g.V().HasLabel(\"person\")", "groovy": "g.V().hasLabel(\"person\")", "java": "g.V().hasLabel(\"person\")", @@ -18715,6 +19910,7 @@ "canonical": "g.addV().property(T.id, 1)", "anonymized": "g.addV().property(T.id, number0)", "dotnet": "g.AddV().Property(T.Id, 1)", + "dotnet_parameterize": "g.AddV().Property(T.Id, 1)", "go": "g.AddV().Property(gremlingo.T.Id, 1)", "groovy": "g.addV().property(T.id, 1)", "java": "g.addV().property(T.id, 1)", @@ -18727,6 +19923,7 @@ "canonical": "g.V().hasId(\"1\")", "anonymized": "g.V().hasId(string0)", "dotnet": "g.V().HasId(\"1\")", + "dotnet_parameterize": "g.V().HasId(\"1\")", "go": "g.V().HasId(\"1\")", "groovy": "g.V().hasId(\"1\")", "java": "g.V().hasId(\"1\")", @@ -18744,6 +19941,7 @@ "canonical": "g.addV().property(T.id, xx1)", "anonymized": "g.addV().property(T.id, xx1)", "dotnet": "g.AddV().Property(T.Id, xx1)", + "dotnet_parameterize": "g.AddV().Property(T.Id, xx1)", "go": "g.AddV().Property(gremlingo.T.Id, xx1)", "groovy": "g.addV().property(T.id, xx1)", "java": "g.addV().property(T.id, xx1)", @@ -18756,6 +19954,7 @@ "canonical": "g.V().hasId(\"1\")", "anonymized": "g.V().hasId(string0)", "dotnet": "g.V().HasId(\"1\")", + "dotnet_parameterize": "g.V().HasId(\"1\")", "go": "g.V().HasId(\"1\")", "groovy": "g.V().hasId(\"1\")", "java": "g.V().hasId(\"1\")", @@ -18773,6 +19972,7 @@ "canonical": "g.addV().property([\"name\":\"foo\", \"age\":42])", "anonymized": "g.addV().property(map0)", "dotnet": "g.AddV().Property(new Dictionary {{ \"name\", \"foo\" }, { \"age\", 42 }})", + "dotnet_parameterize": "g.AddV().Property(new Dictionary {{ \"name\", \"foo\" }, { \"age\", 42 }})", "go": "g.AddV().Property(map[interface{}]interface{}{\"name\": \"foo\", \"age\": 42 })", "groovy": "g.addV().property([\"name\":\"foo\", \"age\":42])", "java": "g.addV().property(new LinkedHashMap() {{ put(\"name\", \"foo\"); put(\"age\", 42); }})", @@ -18785,6 +19985,7 @@ "canonical": "g.V().has(\"name\", \"foo\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"foo\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"foo\")", "go": "g.V().Has(\"name\", \"foo\")", "groovy": "g.V().has(\"name\", \"foo\")", "java": "g.V().has(\"name\", \"foo\")", @@ -18802,6 +20003,7 @@ "canonical": "g.addV().property(Cardinality.single, [\"name\":\"foo\", \"age\":42])", "anonymized": "g.addV().property(Cardinality.single, map0)", "dotnet": "g.AddV().Property(Cardinality.Single, new Dictionary {{ \"name\", \"foo\" }, { \"age\", 42 }})", + "dotnet_parameterize": "g.AddV().Property(Cardinality.Single, new Dictionary {{ \"name\", \"foo\" }, { \"age\", 42 }})", "go": "g.AddV().Property(gremlingo.Cardinality.Single, map[interface{}]interface{}{\"name\": \"foo\", \"age\": 42 })", "groovy": "g.addV().property(Cardinality.single, [\"name\":\"foo\", \"age\":42])", "java": "g.addV().property(Cardinality.single, new LinkedHashMap() {{ put(\"name\", \"foo\"); put(\"age\", 42); }})", @@ -18814,6 +20016,7 @@ "canonical": "g.V().has(\"name\", \"foo\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"foo\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"foo\")", "go": "g.V().Has(\"name\", \"foo\")", "groovy": "g.V().has(\"name\", \"foo\")", "java": "g.V().has(\"name\", \"foo\")", @@ -18831,6 +20034,7 @@ "canonical": "g.addV().property(Cardinality.single, \"name\", \"foo\").property(\"age\", 42)", "anonymized": "g.addV().property(Cardinality.single, string0, string1).property(string2, number0)", "dotnet": "g.AddV().Property(Cardinality.Single, \"name\", \"foo\").Property(\"age\", 42)", + "dotnet_parameterize": "g.AddV().Property(Cardinality.Single, \"name\", \"foo\").Property(\"age\", 42)", "go": "g.AddV().Property(gremlingo.Cardinality.Single, \"name\", \"foo\").Property(\"age\", 42)", "groovy": "g.addV().property(Cardinality.single, \"name\", \"foo\").property(\"age\", 42)", "java": "g.addV().property(Cardinality.single, \"name\", \"foo\").property(\"age\", 42)", @@ -18843,6 +20047,7 @@ "canonical": "g.V().has('name', 'foo').property([\"name\":Cardinality.set(\"bar\"), \"age\":43])", "anonymized": "g.V().has(string0, string1).property(map0)", "dotnet": "g.V().Has(\"name\", \"foo\").Property(new Dictionary {{ \"name\", CardinalityValue.Set(\"bar\") }, { \"age\", 43 }})", + "dotnet_parameterize": "g.V().Has(\"name\", \"foo\").Property(new Dictionary {{ \"name\", CardinalityValue.Set(\"bar\") }, { \"age\", 43 }})", "go": "g.V().Has(\"name\", \"foo\").Property(map[interface{}]interface{}{\"name\": gremlingo.CardinalityValue.Set(\"bar\"), \"age\": 43 })", "groovy": "g.V().has('name', 'foo').property([\"name\":Cardinality.set(\"bar\"), \"age\":43])", "java": "g.V().has(\"name\", \"foo\").property(new LinkedHashMap() {{ put(\"name\", Cardinality.set(\"bar\")); put(\"age\", 43); }})", @@ -18855,6 +20060,7 @@ "canonical": "g.V().has(\"name\", \"foo\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"foo\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"foo\")", "go": "g.V().Has(\"name\", \"foo\")", "groovy": "g.V().has(\"name\", \"foo\")", "java": "g.V().has(\"name\", \"foo\")", @@ -18867,6 +20073,7 @@ "canonical": "g.V().has(\"name\", \"bar\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"bar\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"bar\")", "go": "g.V().Has(\"name\", \"bar\")", "groovy": "g.V().has(\"name\", \"bar\")", "java": "g.V().has(\"name\", \"bar\")", @@ -18879,6 +20086,7 @@ "canonical": "g.V().has(\"age\", 43)", "anonymized": "g.V().has(string0, number0)", "dotnet": "g.V().Has(\"age\", 43)", + "dotnet_parameterize": "g.V().Has(\"age\", 43)", "go": "g.V().Has(\"age\", 43)", "groovy": "g.V().has(\"age\", 43)", "java": "g.V().has(\"age\", 43)", @@ -18891,6 +20099,7 @@ "canonical": "g.V().has(\"age\", 42)", "anonymized": "g.V().has(string0, number0)", "dotnet": "g.V().Has(\"age\", 42)", + "dotnet_parameterize": "g.V().Has(\"age\", 42)", "go": "g.V().Has(\"age\", 42)", "groovy": "g.V().has(\"age\", 42)", "java": "g.V().has(\"age\", 42)", @@ -18908,6 +20117,7 @@ "canonical": "g.addV().property(Cardinality.single, \"name\", \"foo\").property(\"age\", 42)", "anonymized": "g.addV().property(Cardinality.single, string0, string1).property(string2, number0)", "dotnet": "g.AddV().Property(Cardinality.Single, \"name\", \"foo\").Property(\"age\", 42)", + "dotnet_parameterize": "g.AddV().Property(Cardinality.Single, \"name\", \"foo\").Property(\"age\", 42)", "go": "g.AddV().Property(gremlingo.Cardinality.Single, \"name\", \"foo\").Property(\"age\", 42)", "groovy": "g.addV().property(Cardinality.single, \"name\", \"foo\").property(\"age\", 42)", "java": "g.addV().property(Cardinality.single, \"name\", \"foo\").property(\"age\", 42)", @@ -18920,6 +20130,7 @@ "canonical": "g.V().has('name', 'foo').property(Cardinality.set, [\"name\":\"bar\", \"age\":Cardinality.single(43)])", "anonymized": "g.V().has(string0, string1).property(Cardinality.set, map0)", "dotnet": "g.V().Has(\"name\", \"foo\").Property(Cardinality.Set, new Dictionary {{ \"name\", \"bar\" }, { \"age\", CardinalityValue.Single(43) }})", + "dotnet_parameterize": "g.V().Has(\"name\", \"foo\").Property(Cardinality.Set, new Dictionary {{ \"name\", \"bar\" }, { \"age\", CardinalityValue.Single(43) }})", "go": "g.V().Has(\"name\", \"foo\").Property(gremlingo.Cardinality.Set, map[interface{}]interface{}{\"name\": \"bar\", \"age\": gremlingo.CardinalityValue.Single(43) })", "groovy": "g.V().has('name', 'foo').property(Cardinality.set, [\"name\":\"bar\", \"age\":Cardinality.single(43)])", "java": "g.V().has(\"name\", \"foo\").property(Cardinality.set, new LinkedHashMap() {{ put(\"name\", \"bar\"); put(\"age\", Cardinality.single(43)); }})", @@ -18932,6 +20143,7 @@ "canonical": "g.V().has(\"name\", \"foo\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"foo\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"foo\")", "go": "g.V().Has(\"name\", \"foo\")", "groovy": "g.V().has(\"name\", \"foo\")", "java": "g.V().has(\"name\", \"foo\")", @@ -18944,6 +20156,7 @@ "canonical": "g.V().has(\"name\", \"bar\")", "anonymized": "g.V().has(string0, string1)", "dotnet": "g.V().Has(\"name\", \"bar\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"bar\")", "go": "g.V().Has(\"name\", \"bar\")", "groovy": "g.V().has(\"name\", \"bar\")", "java": "g.V().has(\"name\", \"bar\")", @@ -18956,6 +20169,7 @@ "canonical": "g.V().has(\"age\", 43)", "anonymized": "g.V().has(string0, number0)", "dotnet": "g.V().Has(\"age\", 43)", + "dotnet_parameterize": "g.V().Has(\"age\", 43)", "go": "g.V().Has(\"age\", 43)", "groovy": "g.V().has(\"age\", 43)", "java": "g.V().has(\"age\", 43)", @@ -18968,6 +20182,7 @@ "canonical": "g.V().has(\"age\", 42)", "anonymized": "g.V().has(string0, number0)", "dotnet": "g.V().Has(\"age\", 42)", + "dotnet_parameterize": "g.V().Has(\"age\", 42)", "go": "g.V().Has(\"age\", 42)", "groovy": "g.V().has(\"age\", 42)", "java": "g.V().has(\"age\", 42)", @@ -18985,6 +20200,7 @@ "canonical": "g.addV(\"person\").property(null)", "anonymized": "g.addV(string0).property(map0)", "dotnet": "g.AddV((string) \"person\").Property(null)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(null)", "go": "g.AddV(\"person\").Property(nil)", "groovy": "g.addV(\"person\").property(null)", "java": "g.addV(\"person\").property(null)", @@ -18997,6 +20213,7 @@ "canonical": "g.V().hasLabel(\"person\").values()", "anonymized": "g.V().hasLabel(string0).values()", "dotnet": "g.V().HasLabel(\"person\").Values()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values()", "go": "g.V().HasLabel(\"person\").Values()", "groovy": "g.V().hasLabel(\"person\").values()", "java": "g.V().hasLabel(\"person\").values()", @@ -19014,6 +20231,7 @@ "canonical": "g.addV(\"person\").property([:])", "anonymized": "g.addV(string0).property(map0)", "dotnet": "g.AddV((string) \"person\").Property(new Dictionary {})", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(new Dictionary {})", "go": "g.AddV(\"person\").Property(map[interface{}]interface{}{ })", "groovy": "g.addV(\"person\").property([:])", "java": "g.addV(\"person\").property(new LinkedHashMap() {{ }})", @@ -19026,6 +20244,7 @@ "canonical": "g.V().hasLabel(\"person\").values()", "anonymized": "g.V().hasLabel(string0).values()", "dotnet": "g.V().HasLabel(\"person\").Values()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values()", "go": "g.V().HasLabel(\"person\").Values()", "groovy": "g.V().hasLabel(\"person\").values()", "java": "g.V().hasLabel(\"person\").values()", @@ -19043,6 +20262,7 @@ "canonical": "g.addV(\"foo\").property(Cardinality.set, null)", "anonymized": "g.addV(string0).property(Cardinality.set, map0)", "dotnet": "g.AddV((string) \"foo\").Property(Cardinality.Set, null)", + "dotnet_parameterize": "g.AddV((string) \"foo\").Property(Cardinality.Set, null)", "go": "g.AddV(\"foo\").Property(gremlingo.Cardinality.Set, nil)", "groovy": "g.addV(\"foo\").property(Cardinality.set, null)", "java": "g.addV(\"foo\").property(Cardinality.set, null)", @@ -19055,6 +20275,7 @@ "canonical": "g.V().hasLabel(\"foo\").values()", "anonymized": "g.V().hasLabel(string0).values()", "dotnet": "g.V().HasLabel(\"foo\").Values()", + "dotnet_parameterize": "g.V().HasLabel(\"foo\").Values()", "go": "g.V().HasLabel(\"foo\").Values()", "groovy": "g.V().hasLabel(\"foo\").values()", "java": "g.V().hasLabel(\"foo\").values()", @@ -19072,6 +20293,7 @@ "canonical": "g.addV(\"foo\").property(Cardinality.set, [:])", "anonymized": "g.addV(string0).property(Cardinality.set, map0)", "dotnet": "g.AddV((string) \"foo\").Property(Cardinality.Set, new Dictionary {})", + "dotnet_parameterize": "g.AddV((string) \"foo\").Property(Cardinality.Set, new Dictionary {})", "go": "g.AddV(\"foo\").Property(gremlingo.Cardinality.Set, map[interface{}]interface{}{ })", "groovy": "g.addV(\"foo\").property(Cardinality.set, [:])", "java": "g.addV(\"foo\").property(Cardinality.set, new LinkedHashMap() {{ }})", @@ -19084,6 +20306,7 @@ "canonical": "g.V().hasLabel(\"person\").values()", "anonymized": "g.V().hasLabel(string0).values()", "dotnet": "g.V().HasLabel(\"person\").Values()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values()", "go": "g.V().HasLabel(\"person\").Values()", "groovy": "g.V().hasLabel(\"person\").values()", "java": "g.V().hasLabel(\"person\").values()", @@ -19101,6 +20324,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"josh\").property(\"age\", null)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, object0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", null)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", null)", "go": "g.AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", nil)", "groovy": "g.addV(\"person\").property(\"name\", \"josh\").property(\"age\", null)", "java": "g.addV(\"person\").property(\"name\", \"josh\").property(\"age\", null)", @@ -19113,6 +20337,7 @@ "canonical": "g.V().has(\"person\", \"age\", null)", "anonymized": "g.V().has(string0, string1, object0)", "dotnet": "g.V().Has(\"person\", \"age\", (object) null)", + "dotnet_parameterize": "g.V().Has(\"person\", \"age\", (object) null)", "go": "g.V().Has(\"person\", \"age\", nil)", "groovy": "g.V().has(\"person\", \"age\", null)", "java": "g.V().has(\"person\", \"age\", null)", @@ -19130,6 +20355,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"friendWeight\", null, \"acl\", null)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, object0, string4, object0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"friendWeight\", null, \"acl\", null)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"friendWeight\", null, \"acl\", null)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"friendWeight\", nil, \"acl\", nil)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"friendWeight\", null, \"acl\", null)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"friendWeight\", null, \"acl\", null)", @@ -19142,6 +20368,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"friendWeight\", null)", "anonymized": "g.V().has(string0, string1, string2).has(string3, object0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"friendWeight\", (object) null)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"friendWeight\", (object) null)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"friendWeight\", nil)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"friendWeight\", null)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"friendWeight\", null)", @@ -19154,6 +20381,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").properties(\"friendWeight\").has(\"acl\", null)", "anonymized": "g.V().has(string0, string1, string2).properties(string3).has(string4, object0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"friendWeight\").Has(\"acl\", (object) null)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"friendWeight\").Has(\"acl\", (object) null)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"friendWeight\").Has(\"acl\", nil)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").properties(\"friendWeight\").has(\"acl\", null)", "java": "g.V().has(\"person\", \"name\", \"marko\").properties(\"friendWeight\").has(\"acl\", null)", @@ -19166,6 +20394,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").properties(\"friendWeight\").count()", "anonymized": "g.V().has(string0, string1, string2).properties(string3).count()", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"friendWeight\").Count()", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"friendWeight\").Count()", "go": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"friendWeight\").Count()", "groovy": "g.V().has(\"person\", \"name\", \"marko\").properties(\"friendWeight\").count()", "java": "g.V().has(\"person\", \"name\", \"marko\").properties(\"friendWeight\").count()", @@ -19183,6 +20412,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").property(Cardinality.single, \"age\", 50)", "anonymized": "g.addV(string0).property(string1, string2).property(Cardinality.single, string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").Property(Cardinality.Single, \"age\", 50)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").Property(Cardinality.Single, \"age\", 50)", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").Property(gremlingo.Cardinality.Single, \"age\", 50)", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").property(Cardinality.single, \"age\", 50)", "java": "g.addV(\"person\").property(\"name\", \"alice\").property(Cardinality.single, \"age\", 50)", @@ -19195,6 +20425,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").property(\"age\", __.union(__.values(\"age\"), __.constant(1)).sum())", "anonymized": "g.V().has(string0, string1, string2).property(string3, __.union(__.values(string3), __.constant(number0)).sum())", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Property(\"age\", __.Union(__.Values(\"age\"), __.Constant(1)).Sum())", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Property(\"age\", __.Union(__.Values(\"age\"), __.Constant(1)).Sum())", "go": "g.V().Has(\"person\", \"name\", \"alice\").Property(\"age\", gremlingo.T__.Union(gremlingo.T__.Values(\"age\"), gremlingo.T__.Constant(1)).Sum())", "groovy": "g.V().has(\"person\", \"name\", \"alice\").property(\"age\", __.union(__.values(\"age\"), __.constant(1)).sum())", "java": "g.V().has(\"person\", \"name\", \"alice\").property(\"age\", __.union(__.values(\"age\"), __.constant(1)).sum())", @@ -19207,6 +20438,7 @@ "canonical": "g.V().has(\"person\", \"age\", 50)", "anonymized": "g.V().has(string0, string1, number0)", "dotnet": "g.V().Has(\"person\", \"age\", 50)", + "dotnet_parameterize": "g.V().Has(\"person\", \"age\", 50)", "go": "g.V().Has(\"person\", \"age\", 50)", "groovy": "g.V().has(\"person\", \"age\", 50)", "java": "g.V().has(\"person\", \"age\", 50)", @@ -19219,6 +20451,7 @@ "canonical": "g.V().has(\"person\", \"age\", 51)", "anonymized": "g.V().has(string0, string1, number0)", "dotnet": "g.V().Has(\"person\", \"age\", 51)", + "dotnet_parameterize": "g.V().Has(\"person\", \"age\", 51)", "go": "g.V().Has(\"person\", \"age\", 51)", "groovy": "g.V().has(\"person\", \"age\", 51)", "java": "g.V().has(\"person\", \"age\", 51)", @@ -19236,6 +20469,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -19248,6 +20482,7 @@ "canonical": "g.V().limit(3).addV(\"software\").aggregate(\"a1\").by(T.label).aggregate(\"a2\").by(T.label).cap(\"a1\", \"a2\").select(\"a1\", \"a2\").by(__.unfold().fold())", "anonymized": "g.V().limit(number0).addV(string0).aggregate(string1).by(T.label).aggregate(string2).by(T.label).cap(string1, string2).select(string1, string2).by(__.unfold().fold())", "dotnet": "g.V().Limit(3).AddV((string) \"software\").Aggregate(\"a1\").By(T.Label).Aggregate(\"a2\").By(T.Label).Cap(\"a1\", \"a2\").Select(\"a1\", \"a2\").By(__.Unfold().Fold())", + "dotnet_parameterize": "g.V().Limit(3).AddV((string) \"software\").Aggregate(\"a1\").By(T.Label).Aggregate(\"a2\").By(T.Label).Cap(\"a1\", \"a2\").Select(\"a1\", \"a2\").By(__.Unfold().Fold())", "go": "g.V().Limit(3).AddV(\"software\").Aggregate(\"a1\").By(gremlingo.T.Label).Aggregate(\"a2\").By(gremlingo.T.Label).Cap(\"a1\", \"a2\").Select(\"a1\", \"a2\").By(gremlingo.T__.Unfold().Fold())", "groovy": "g.V().limit(3).addV(\"software\").aggregate(\"a1\").by(T.label).aggregate(\"a2\").by(T.label).cap(\"a1\", \"a2\").select(\"a1\", \"a2\").by(__.unfold().fold())", "java": "g.V().limit(3).addV(\"software\").aggregate(\"a1\").by(T.label).aggregate(\"a2\").by(T.label).cap(\"a1\", \"a2\").select(\"a1\", \"a2\").by(__.unfold().fold())", @@ -19265,6 +20500,7 @@ "canonical": "g.addV().property(\"name\", \"marko\").with(\"key\", \"value\").values(\"name\", \"key\")", "anonymized": "g.addV().property(string0, string1).with(string2, string3).values(string0, string2)", "dotnet": "g.AddV().Property(\"name\", \"marko\").With(\"key\", \"value\").Values(\"name\", \"key\")", + "dotnet_parameterize": "g.AddV().Property(\"name\", \"marko\").With(\"key\", \"value\").Values(\"name\", \"key\")", "go": "g.AddV().Property(\"name\", \"marko\").With(\"key\", \"value\").Values(\"name\", \"key\")", "groovy": "g.addV().property(\"name\", \"marko\").with(\"key\", \"value\").values(\"name\", \"key\")", "java": "g.addV().property(\"name\", \"marko\").with(\"key\", \"value\").values(\"name\", \"key\")", @@ -19282,6 +20518,7 @@ "canonical": "g.addV().property(\"name\", \"marko\", \"since\", 2010).with(\"key\", \"value\").properties(\"name\").values(\"since\", \"key\")", "anonymized": "g.addV().property(string0, string1, string2, number0).with(string3, string4).properties(string0).values(string2, string3)", "dotnet": "g.AddV().Property(\"name\", \"marko\", \"since\", 2010).With(\"key\", \"value\").Properties(\"name\").Values(\"since\", \"key\")", + "dotnet_parameterize": "g.AddV().Property(\"name\", \"marko\", \"since\", 2010).With(\"key\", \"value\").Properties(\"name\").Values(\"since\", \"key\")", "go": "g.AddV().Property(\"name\", \"marko\", \"since\", 2010).With(\"key\", \"value\").Properties(\"name\").Values(\"since\", \"key\")", "groovy": "g.addV().property(\"name\", \"marko\", \"since\", 2010).with(\"key\", \"value\").properties(\"name\").values(\"since\", \"key\")", "java": "g.addV().property(\"name\", \"marko\", \"since\", 2010).with(\"key\", \"value\").properties(\"name\").values(\"since\", \"key\")", @@ -19299,6 +20536,7 @@ "canonical": "g.inject(1).asBool()", "anonymized": "g.inject(number0).asBool()", "dotnet": "g.Inject(1).AsBool()", + "dotnet_parameterize": "g.Inject(1).AsBool()", "go": "g.Inject(1).AsBool()", "groovy": "g.inject(1).asBool()", "java": "g.inject(1).asBool()", @@ -19316,6 +20554,7 @@ "canonical": "g.inject(3.14).asBool()", "anonymized": "g.inject(number0).asBool()", "dotnet": "g.Inject(3.14).AsBool()", + "dotnet_parameterize": "g.Inject(3.14).AsBool()", "go": "g.Inject(3.14).AsBool()", "groovy": "g.inject(3.14).asBool()", "java": "g.inject(3.14).asBool()", @@ -19333,6 +20572,7 @@ "canonical": "g.inject(-1).asBool()", "anonymized": "g.inject(number0).asBool()", "dotnet": "g.Inject(-1).AsBool()", + "dotnet_parameterize": "g.Inject(-1).AsBool()", "go": "g.Inject(-1).AsBool()", "groovy": "g.inject(-1).asBool()", "java": "g.inject(-1).asBool()", @@ -19350,6 +20590,7 @@ "canonical": "g.inject(0).asBool()", "anonymized": "g.inject(number0).asBool()", "dotnet": "g.Inject(0).AsBool()", + "dotnet_parameterize": "g.Inject(0).AsBool()", "go": "g.Inject(0).AsBool()", "groovy": "g.inject(0).asBool()", "java": "g.inject(0).asBool()", @@ -19367,6 +20608,7 @@ "canonical": "g.inject(-0.0).asBool()", "anonymized": "g.inject(number0).asBool()", "dotnet": "g.Inject(-0.0).AsBool()", + "dotnet_parameterize": "g.Inject(-0.0).AsBool()", "go": "g.Inject(-0.0).AsBool()", "groovy": "g.inject(-0.0).asBool()", "java": "g.inject(-0.0).asBool()", @@ -19384,6 +20626,7 @@ "canonical": "g.inject(NaN).asBool()", "anonymized": "g.inject(number0).asBool()", "dotnet": "g.Inject(Double.NaN).AsBool()", + "dotnet_parameterize": "g.Inject(Double.NaN).AsBool()", "go": "g.Inject(math.NaN()).AsBool()", "groovy": "g.inject(NaN).asBool()", "java": "g.inject(Double.NaN).asBool()", @@ -19401,6 +20644,7 @@ "canonical": "g.inject(true).asBool()", "anonymized": "g.inject(boolean0).asBool()", "dotnet": "g.Inject(true).AsBool()", + "dotnet_parameterize": "g.Inject(true).AsBool()", "go": "g.Inject(true).AsBool()", "groovy": "g.inject(true).asBool()", "java": "g.inject(true).asBool()", @@ -19418,6 +20662,7 @@ "canonical": "g.inject(false).asBool()", "anonymized": "g.inject(boolean0).asBool()", "dotnet": "g.Inject(false).AsBool()", + "dotnet_parameterize": "g.Inject(false).AsBool()", "go": "g.Inject(false).AsBool()", "groovy": "g.inject(false).asBool()", "java": "g.inject(false).asBool()", @@ -19435,6 +20680,7 @@ "canonical": "g.inject('true').asBool()", "anonymized": "g.inject(string0).asBool()", "dotnet": "g.Inject(\"true\").AsBool()", + "dotnet_parameterize": "g.Inject(\"true\").AsBool()", "go": "g.Inject(\"true\").AsBool()", "groovy": "g.inject('true').asBool()", "java": "g.inject(\"true\").asBool()", @@ -19452,6 +20698,7 @@ "canonical": "g.inject('tRUe').asBool()", "anonymized": "g.inject(string0).asBool()", "dotnet": "g.Inject(\"tRUe\").AsBool()", + "dotnet_parameterize": "g.Inject(\"tRUe\").AsBool()", "go": "g.Inject(\"tRUe\").AsBool()", "groovy": "g.inject('tRUe').asBool()", "java": "g.inject(\"tRUe\").asBool()", @@ -19469,6 +20716,7 @@ "canonical": "g.inject(null).asBool()", "anonymized": "g.inject(object0).asBool()", "dotnet": "g.Inject(null).AsBool()", + "dotnet_parameterize": "g.Inject(null).AsBool()", "go": "g.Inject(nil).AsBool()", "groovy": "g.inject(null).asBool()", "java": "g.inject(null).asBool()", @@ -19486,6 +20734,7 @@ "canonical": "g.inject('hello').asBool()", "anonymized": "g.inject(string0).asBool()", "dotnet": "g.Inject(\"hello\").AsBool()", + "dotnet_parameterize": "g.Inject(\"hello\").AsBool()", "go": "g.Inject(\"hello\").AsBool()", "groovy": "g.inject('hello').asBool()", "java": "g.inject(\"hello\").asBool()", @@ -19503,6 +20752,7 @@ "canonical": "g.inject([1, 2]).asBool()", "anonymized": "g.inject(list0).asBool()", "dotnet": "g.Inject(new List { 1, 2 }).AsBool()", + "dotnet_parameterize": "g.Inject(new List { 1, 2 }).AsBool()", "go": "g.Inject([]interface{}{1, 2}).AsBool()", "groovy": "g.inject([1, 2]).asBool()", "java": "g.inject(new ArrayList() {{ add(1); add(2); }}).asBool()", @@ -19520,6 +20770,7 @@ "canonical": "g.V().local(__.outE().count()).asBool()", "anonymized": "g.V().local(__.outE().count()).asBool()", "dotnet": "g.V().Local(__.OutE().Count()).AsBool()", + "dotnet_parameterize": "g.V().Local(__.OutE().Count()).AsBool()", "go": "g.V().Local(gremlingo.T__.OutE().Count()).AsBool()", "groovy": "g.V().local(__.outE().count()).asBool()", "java": "g.V().local(__.outE().count()).asBool()", @@ -19537,6 +20788,7 @@ "canonical": "g.V().sack(Operator.assign).by(__.hasLabel('person').count().asBool()).sack(Operator.and).by(__.outE().count().asBool()).sack().path()", "anonymized": "g.V().sack(Operator.assign).by(__.hasLabel(string0).count().asBool()).sack(Operator.and).by(__.outE().count().asBool()).sack().path()", "dotnet": "g.V().Sack(Operator.Assign).By(__.HasLabel(\"person\").Count().AsBool()).Sack(Operator.And).By(__.OutE().Count().AsBool()).Sack().Path()", + "dotnet_parameterize": "g.V().Sack(Operator.Assign).By(__.HasLabel(\"person\").Count().AsBool()).Sack(Operator.And).By(__.OutE().Count().AsBool()).Sack().Path()", "go": "g.V().Sack(gremlingo.Operator.Assign).By(gremlingo.T__.HasLabel(\"person\").Count().AsBool()).Sack(gremlingo.Operator.And).By(gremlingo.T__.OutE().Count().AsBool()).Sack().Path()", "groovy": "g.V().sack(Operator.assign).by(__.hasLabel('person').count().asBool()).sack(Operator.and).by(__.outE().count().asBool()).sack().path()", "java": "g.V().sack(Operator.assign).by(__.hasLabel(\"person\").count().asBool()).sack(Operator.and).by(__.outE().count().asBool()).sack().path()", @@ -19554,6 +20806,7 @@ "canonical": "g.inject(\"2023-08-02T00:00:00Z\").asDate()", "anonymized": "g.inject(string0).asDate()", "dotnet": "g.Inject(\"2023-08-02T00:00:00Z\").AsDate()", + "dotnet_parameterize": "g.Inject(\"2023-08-02T00:00:00Z\").AsDate()", "go": "g.Inject(\"2023-08-02T00:00:00Z\").AsDate()", "groovy": "g.inject(\"2023-08-02T00:00:00Z\").asDate()", "java": "g.inject(\"2023-08-02T00:00:00Z\").asDate()", @@ -19571,6 +20824,7 @@ "canonical": "g.inject(\"2023-08-02T00:00:00-07:00\").asDate()", "anonymized": "g.inject(string0).asDate()", "dotnet": "g.Inject(\"2023-08-02T00:00:00-07:00\").AsDate()", + "dotnet_parameterize": "g.Inject(\"2023-08-02T00:00:00-07:00\").AsDate()", "go": "g.Inject(\"2023-08-02T00:00:00-07:00\").AsDate()", "groovy": "g.inject(\"2023-08-02T00:00:00-07:00\").asDate()", "java": "g.inject(\"2023-08-02T00:00:00-07:00\").asDate()", @@ -19588,6 +20842,7 @@ "canonical": "g.inject(1694017707000).asDate()", "anonymized": "g.inject(number0).asDate()", "dotnet": "g.Inject(1694017707000).AsDate()", + "dotnet_parameterize": "g.Inject(1694017707000).AsDate()", "go": "g.Inject(1694017707000).AsDate()", "groovy": "g.inject(1694017707000).asDate()", "java": "g.inject(1694017707000).asDate()", @@ -19605,6 +20860,7 @@ "canonical": "g.inject(1694017708000l).asDate()", "anonymized": "g.inject(long0).asDate()", "dotnet": "g.Inject(1694017708000l).AsDate()", + "dotnet_parameterize": "g.Inject(1694017708000l).AsDate()", "go": "g.Inject(int64(1694017708000)).AsDate()", "groovy": "g.inject(1694017708000l).asDate()", "java": "g.inject(1694017708000l).asDate()", @@ -19622,6 +20878,7 @@ "canonical": "g.inject(1694017709000.1d).asDate()", "anonymized": "g.inject(double0).asDate()", "dotnet": "g.Inject(1694017709000.1d).AsDate()", + "dotnet_parameterize": "g.Inject(1694017709000.1d).AsDate()", "go": "g.Inject(1694017709000.1).AsDate()", "groovy": "g.inject(1694017709000.1d).asDate()", "java": "g.inject(1694017709000.1d).asDate()", @@ -19639,6 +20896,7 @@ "canonical": "g.inject([1, 2]).asDate()", "anonymized": "g.inject(list0).asDate()", "dotnet": "g.Inject(new List { 1, 2 }).AsDate()", + "dotnet_parameterize": "g.Inject(new List { 1, 2 }).AsDate()", "go": "g.Inject([]interface{}{1, 2}).AsDate()", "groovy": "g.inject([1, 2]).asDate()", "java": "g.inject(new ArrayList() {{ add(1); add(2); }}).asDate()", @@ -19656,6 +20914,7 @@ "canonical": "g.inject(null).asDate()", "anonymized": "g.inject(object0).asDate()", "dotnet": "g.Inject(null).AsDate()", + "dotnet_parameterize": "g.Inject(null).AsDate()", "go": "g.Inject(nil).AsDate()", "groovy": "g.inject(null).asDate()", "java": "g.inject(null).asDate()", @@ -19673,6 +20932,7 @@ "canonical": "g.inject('This String is not an ISO 8601 Date').asDate()", "anonymized": "g.inject(string0).asDate()", "dotnet": "g.Inject(\"This String is not an ISO 8601 Date\").AsDate()", + "dotnet_parameterize": "g.Inject(\"This String is not an ISO 8601 Date\").AsDate()", "go": "g.Inject(\"This String is not an ISO 8601 Date\").AsDate()", "groovy": "g.inject('This String is not an ISO 8601 Date').asDate()", "java": "g.inject(\"This String is not an ISO 8601 Date\").asDate()", @@ -19690,6 +20950,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").property(\"birthday\", \"2020-08-02\").addV(\"person\").property(\"name\", \"john\").property(\"birthday\", \"1988-12-10\").addV(\"person\").property(\"name\", \"charlie\").property(\"birthday\", \"2002-02-01\").addV(\"person\").property(\"name\", \"suzy\").property(\"birthday\", \"1965-10-31\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).addV(string0).property(string1, string5).property(string3, string6).addV(string0).property(string1, string7).property(string3, string8).addV(string0).property(string1, string9).property(string3, string10)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").Property(\"birthday\", \"2020-08-02\").AddV((string) \"person\").Property(\"name\", \"john\").Property(\"birthday\", \"1988-12-10\").AddV((string) \"person\").Property(\"name\", \"charlie\").Property(\"birthday\", \"2002-02-01\").AddV((string) \"person\").Property(\"name\", \"suzy\").Property(\"birthday\", \"1965-10-31\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").Property(\"birthday\", \"2020-08-02\").AddV((string) \"person\").Property(\"name\", \"john\").Property(\"birthday\", \"1988-12-10\").AddV((string) \"person\").Property(\"name\", \"charlie\").Property(\"birthday\", \"2002-02-01\").AddV((string) \"person\").Property(\"name\", \"suzy\").Property(\"birthday\", \"1965-10-31\")", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").Property(\"birthday\", \"2020-08-02\").AddV(\"person\").Property(\"name\", \"john\").Property(\"birthday\", \"1988-12-10\").AddV(\"person\").Property(\"name\", \"charlie\").Property(\"birthday\", \"2002-02-01\").AddV(\"person\").Property(\"name\", \"suzy\").Property(\"birthday\", \"1965-10-31\")", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").property(\"birthday\", \"2020-08-02\").addV(\"person\").property(\"name\", \"john\").property(\"birthday\", \"1988-12-10\").addV(\"person\").property(\"name\", \"charlie\").property(\"birthday\", \"2002-02-01\").addV(\"person\").property(\"name\", \"suzy\").property(\"birthday\", \"1965-10-31\")", "java": "g.addV(\"person\").property(\"name\", \"alice\").property(\"birthday\", \"2020-08-02\").addV(\"person\").property(\"name\", \"john\").property(\"birthday\", \"1988-12-10\").addV(\"person\").property(\"name\", \"charlie\").property(\"birthday\", \"2002-02-01\").addV(\"person\").property(\"name\", \"suzy\").property(\"birthday\", \"1965-10-31\")", @@ -19702,6 +20963,7 @@ "canonical": "g.V().values(\"birthday\").asDate().asNumber().asDate()", "anonymized": "g.V().values(string0).asDate().asNumber().asDate()", "dotnet": "g.V().Values(\"birthday\").AsDate().AsNumber().AsDate()", + "dotnet_parameterize": "g.V().Values(\"birthday\").AsDate().AsNumber().AsDate()", "go": "g.V().Values(\"birthday\").AsDate().AsNumber().AsDate()", "groovy": "g.V().values(\"birthday\").asDate().asNumber().asDate()", "java": "g.V().values(\"birthday\").asDate().asNumber().asDate()", @@ -19719,6 +20981,7 @@ "canonical": "g.inject(5b).asNumber()", "anonymized": "g.inject(byte0).asNumber()", "dotnet": "g.Inject((sbyte) 5).AsNumber()", + "dotnet_parameterize": "g.Inject((sbyte) 5).AsNumber()", "go": "g.Inject(int8(5)).AsNumber()", "groovy": "g.inject((byte)5).asNumber()", "java": "g.inject(new Byte(5)).asNumber()", @@ -19736,6 +20999,7 @@ "canonical": "g.inject(5s).asNumber()", "anonymized": "g.inject(short0).asNumber()", "dotnet": "g.Inject((short) 5).AsNumber()", + "dotnet_parameterize": "g.Inject((short) 5).AsNumber()", "go": "g.Inject(int16(5)).AsNumber()", "groovy": "g.inject((short)5).asNumber()", "java": "g.inject(new Short(5)).asNumber()", @@ -19753,6 +21017,7 @@ "canonical": "g.inject(5i).asNumber()", "anonymized": "g.inject(integer0).asNumber()", "dotnet": "g.Inject(5).AsNumber()", + "dotnet_parameterize": "g.Inject(5).AsNumber()", "go": "g.Inject(int32(5)).AsNumber()", "groovy": "g.inject(5i).asNumber()", "java": "g.inject(5).asNumber()", @@ -19770,6 +21035,7 @@ "canonical": "g.inject(5l).asNumber()", "anonymized": "g.inject(long0).asNumber()", "dotnet": "g.Inject(5l).AsNumber()", + "dotnet_parameterize": "g.Inject(5l).AsNumber()", "go": "g.Inject(int64(5)).AsNumber()", "groovy": "g.inject(5l).asNumber()", "java": "g.inject(5l).asNumber()", @@ -19787,6 +21053,7 @@ "canonical": "g.inject(5n).asNumber()", "anonymized": "g.inject(biginteger0).asNumber()", "dotnet": "g.Inject(BigInteger.Parse(\"5\")).AsNumber()", + "dotnet_parameterize": "g.Inject(BigInteger.Parse(\"5\")).AsNumber()", "go": "g.Inject(gremlingo.ParseBigInt(\"5\")).AsNumber()", "groovy": "g.inject(5g).asNumber()", "java": "g.inject(new BigInteger(\"5\")).asNumber()", @@ -19804,6 +21071,7 @@ "canonical": "g.inject(5.0).asNumber()", "anonymized": "g.inject(number0).asNumber()", "dotnet": "g.Inject(5.0).AsNumber()", + "dotnet_parameterize": "g.Inject(5.0).AsNumber()", "go": "g.Inject(5.0).AsNumber()", "groovy": "g.inject(5.0).asNumber()", "java": "g.inject(5.0).asNumber()", @@ -19821,6 +21089,7 @@ "canonical": "g.inject(5.75f).asNumber()", "anonymized": "g.inject(float0).asNumber()", "dotnet": "g.Inject(5.75f).AsNumber()", + "dotnet_parameterize": "g.Inject(5.75f).AsNumber()", "go": "g.Inject(float32(5.75)).AsNumber()", "groovy": "g.inject(5.75f).asNumber()", "java": "g.inject(5.75f).asNumber()", @@ -19838,6 +21107,7 @@ "canonical": "g.inject(\"5\").asNumber()", "anonymized": "g.inject(string0).asNumber()", "dotnet": "g.Inject(\"5\").AsNumber()", + "dotnet_parameterize": "g.Inject(\"5\").AsNumber()", "go": "g.Inject(\"5\").AsNumber()", "groovy": "g.inject(\"5\").asNumber()", "java": "g.inject(\"5\").asNumber()", @@ -19855,6 +21125,7 @@ "canonical": "g.inject(\"test\").asNumber()", "anonymized": "g.inject(string0).asNumber()", "dotnet": "g.Inject(\"test\").AsNumber()", + "dotnet_parameterize": "g.Inject(\"test\").AsNumber()", "go": "g.Inject(\"test\").AsNumber()", "groovy": "g.inject(\"test\").asNumber()", "java": "g.inject(\"test\").asNumber()", @@ -19872,6 +21143,7 @@ "canonical": "g.inject([1, 2, 3, 4]).asNumber()", "anonymized": "g.inject(list0).asNumber()", "dotnet": "g.Inject(new List { 1, 2, 3, 4 }).AsNumber()", + "dotnet_parameterize": "g.Inject(new List { 1, 2, 3, 4 }).AsNumber()", "go": "g.Inject([]interface{}{1, 2, 3, 4}).AsNumber()", "groovy": "g.inject([1, 2, 3, 4]).asNumber()", "java": "g.inject(new ArrayList() {{ add(1); add(2); add(3); add(4); }}).asNumber()", @@ -19889,6 +21161,7 @@ "canonical": "g.inject([1, 2, 3, 4]).unfold().asNumber()", "anonymized": "g.inject(list0).unfold().asNumber()", "dotnet": "g.Inject(new List { 1, 2, 3, 4 }).Unfold().AsNumber()", + "dotnet_parameterize": "g.Inject(new List { 1, 2, 3, 4 }).Unfold().AsNumber()", "go": "g.Inject([]interface{}{1, 2, 3, 4}).Unfold().AsNumber()", "groovy": "g.inject([1, 2, 3, 4]).unfold().asNumber()", "java": "g.inject(new ArrayList() {{ add(1); add(2); add(3); add(4); }}).unfold().asNumber()", @@ -19906,6 +21179,7 @@ "canonical": "g.inject(\"1\", 2, \"3\", 4).asNumber().fold()", "anonymized": "g.inject(string0, number0, string1, number1).asNumber().fold()", "dotnet": "g.Inject(\"1\", 2, \"3\", 4).AsNumber().Fold()", + "dotnet_parameterize": "g.Inject(\"1\", 2, \"3\", 4).AsNumber().Fold()", "go": "g.Inject(\"1\", 2, \"3\", 4).AsNumber().Fold()", "groovy": "g.inject(\"1\", 2, \"3\", 4).asNumber().fold()", "java": "g.inject(\"1\", 2, \"3\", 4).asNumber().fold()", @@ -19923,6 +21197,7 @@ "canonical": "g.inject(5.43).asNumber(GType.INT)", "anonymized": "g.inject(number0).asNumber(GType.INT)", "dotnet": "g.Inject(5.43).AsNumber(GType.Int)", + "dotnet_parameterize": "g.Inject(5.43).AsNumber(GType.Int)", "go": "g.Inject(5.43).AsNumber(gremlingo.GType.Int)", "groovy": "g.inject(5.43).asNumber(GType.INT)", "java": "g.inject(5.43).asNumber(GType.INT)", @@ -19940,6 +21215,7 @@ "canonical": "g.inject(5.67).asNumber(GType.INT)", "anonymized": "g.inject(number0).asNumber(GType.INT)", "dotnet": "g.Inject(5.67).AsNumber(GType.Int)", + "dotnet_parameterize": "g.Inject(5.67).AsNumber(GType.Int)", "go": "g.Inject(5.67).AsNumber(gremlingo.GType.Int)", "groovy": "g.inject(5.67).asNumber(GType.INT)", "java": "g.inject(5.67).asNumber(GType.INT)", @@ -19957,6 +21233,7 @@ "canonical": "g.inject(5).asNumber(GType.LONG)", "anonymized": "g.inject(number0).asNumber(GType.LONG)", "dotnet": "g.Inject(5).AsNumber(GType.Long)", + "dotnet_parameterize": "g.Inject(5).AsNumber(GType.Long)", "go": "g.Inject(5).AsNumber(gremlingo.GType.Long)", "groovy": "g.inject(5).asNumber(GType.LONG)", "java": "g.inject(5).asNumber(GType.LONG)", @@ -19974,6 +21251,7 @@ "canonical": "g.inject(12).asNumber(GType.BYTE)", "anonymized": "g.inject(number0).asNumber(GType.BYTE)", "dotnet": "g.Inject(12).AsNumber(GType.Byte)", + "dotnet_parameterize": "g.Inject(12).AsNumber(GType.Byte)", "go": "g.Inject(12).AsNumber(gremlingo.GType.Byte)", "groovy": "g.inject(12).asNumber(GType.BYTE)", "java": "g.inject(12).asNumber(GType.BYTE)", @@ -19991,6 +21269,7 @@ "canonical": "g.inject(32768).asNumber(GType.SHORT)", "anonymized": "g.inject(number0).asNumber(GType.SHORT)", "dotnet": "g.Inject(32768).AsNumber(GType.Short)", + "dotnet_parameterize": "g.Inject(32768).AsNumber(GType.Short)", "go": "g.Inject(32768).AsNumber(gremlingo.GType.Short)", "groovy": "g.inject(32768).asNumber(GType.SHORT)", "java": "g.inject(32768).asNumber(GType.SHORT)", @@ -20008,6 +21287,7 @@ "canonical": "g.inject(300).asNumber(GType.BYTE)", "anonymized": "g.inject(number0).asNumber(GType.BYTE)", "dotnet": "g.Inject(300).AsNumber(GType.Byte)", + "dotnet_parameterize": "g.Inject(300).AsNumber(GType.Byte)", "go": "g.Inject(300).AsNumber(gremlingo.GType.Byte)", "groovy": "g.inject(300).asNumber(GType.BYTE)", "java": "g.inject(300).asNumber(GType.BYTE)", @@ -20025,6 +21305,7 @@ "canonical": "g.inject(32768).asNumber(GType.VERTEX)", "anonymized": "g.inject(number0).asNumber(GType.VERTEX)", "dotnet": "g.Inject(32768).AsNumber(GType.Vertex)", + "dotnet_parameterize": "g.Inject(32768).AsNumber(GType.Vertex)", "go": "g.Inject(32768).AsNumber(gremlingo.GType.Vertex)", "groovy": "g.inject(32768).asNumber(GType.VERTEX)", "java": "g.inject(32768).asNumber(GType.VERTEX)", @@ -20042,6 +21323,7 @@ "canonical": "g.inject(\"5\").asNumber(GType.BYTE)", "anonymized": "g.inject(string0).asNumber(GType.BYTE)", "dotnet": "g.Inject(\"5\").AsNumber(GType.Byte)", + "dotnet_parameterize": "g.Inject(\"5\").AsNumber(GType.Byte)", "go": "g.Inject(\"5\").AsNumber(gremlingo.GType.Byte)", "groovy": "g.inject(\"5\").asNumber(GType.BYTE)", "java": "g.inject(\"5\").asNumber(GType.BYTE)", @@ -20059,6 +21341,7 @@ "canonical": "g.inject(\"1,000\").asNumber(GType.BIGINT)", "anonymized": "g.inject(string0).asNumber(GType.BIGINT)", "dotnet": "g.Inject(\"1,000\").AsNumber(GType.BigInt)", + "dotnet_parameterize": "g.Inject(\"1,000\").AsNumber(GType.BigInt)", "go": "g.Inject(\"1,000\").AsNumber(gremlingo.GType.BigInt)", "groovy": "g.inject(\"1,000\").asNumber(GType.BIGINT)", "java": "g.inject(\"1,000\").asNumber(GType.BIGINT)", @@ -20076,6 +21359,7 @@ "canonical": "g.inject(1.0, 2, 3, \"4\", \"0x5\").asNumber().sum().asNumber(GType.BYTE)", "anonymized": "g.inject(number0, number1, number2, string0, string1).asNumber().sum().asNumber(GType.BYTE)", "dotnet": "g.Inject(1.0, 2, 3, \"4\", \"0x5\").AsNumber().Sum().AsNumber(GType.Byte)", + "dotnet_parameterize": "g.Inject(1.0, 2, 3, \"4\", \"0x5\").AsNumber().Sum().AsNumber(GType.Byte)", "go": "g.Inject(1.0, 2, 3, \"4\", \"0x5\").AsNumber().Sum().AsNumber(gremlingo.GType.Byte)", "groovy": "g.inject(1.0, 2, 3, \"4\", \"0x5\").asNumber().sum().asNumber(GType.BYTE)", "java": "g.inject(1.0, 2, 3, \"4\", \"0x5\").asNumber().sum().asNumber(GType.BYTE)", @@ -20093,6 +21377,7 @@ "canonical": "g.inject(null).asNumber(GType.INT)", "anonymized": "g.inject(object0).asNumber(GType.INT)", "dotnet": "g.Inject(null).AsNumber(GType.Int)", + "dotnet_parameterize": "g.Inject(null).AsNumber(GType.Int)", "go": "g.Inject(nil).AsNumber(gremlingo.GType.Int)", "groovy": "g.inject(null).asNumber(GType.INT)", "java": "g.inject(null).asNumber(GType.INT)", @@ -20110,6 +21395,7 @@ "canonical": "g.V().as(\"a\").out(\"knows\").as(\"b\").math(\"a + b\").by(\"age\").asNumber(GType.INT)", "anonymized": "g.V().as(string0).out(string1).as(string2).math(string3).by(string4).asNumber(GType.INT)", "dotnet": "g.V().As(\"a\").Out(\"knows\").As(\"b\").Math(\"a + b\").By(\"age\").AsNumber(GType.Int)", + "dotnet_parameterize": "g.V().As(\"a\").Out(\"knows\").As(\"b\").Math(\"a + b\").By(\"age\").AsNumber(GType.Int)", "go": "g.V().As(\"a\").Out(\"knows\").As(\"b\").Math(\"a + b\").By(\"age\").AsNumber(gremlingo.GType.Int)", "groovy": "g.V().as(\"a\").out(\"knows\").as(\"b\").math(\"a + b\").by(\"age\").asNumber(GType.INT)", "java": "g.V().as(\"a\").out(\"knows\").as(\"b\").math(\"a + b\").by(\"age\").asNumber(GType.INT)", @@ -20127,6 +21413,7 @@ "canonical": "g.withSideEffect(\"x\", 100).V().values(\"age\").math(\"_ + x\").asNumber(GType.LONG)", "anonymized": "g.withSideEffect(string0, number0).V().values(string1).math(string2).asNumber(GType.LONG)", "dotnet": "g.WithSideEffect(\"x\", 100).V().Values(\"age\").Math(\"_ + x\").AsNumber(GType.Long)", + "dotnet_parameterize": "g.WithSideEffect(\"x\", 100).V().Values(\"age\").Math(\"_ + x\").AsNumber(GType.Long)", "go": "g.WithSideEffect(\"x\", 100).V().Values(\"age\").Math(\"_ + x\").AsNumber(gremlingo.GType.Long)", "groovy": "g.withSideEffect(\"x\", 100).V().values(\"age\").math(\"_ + x\").asNumber(GType.LONG)", "java": "g.withSideEffect(\"x\", 100).V().values(\"age\").math(\"_ + x\").asNumber(GType.LONG)", @@ -20144,6 +21431,7 @@ "canonical": "g.V().values(\"age\").asString().asNumber(GType.DOUBLE)", "anonymized": "g.V().values(string0).asString().asNumber(GType.DOUBLE)", "dotnet": "g.V().Values(\"age\").AsString().AsNumber(GType.Double)", + "dotnet_parameterize": "g.V().Values(\"age\").AsString().AsNumber(GType.Double)", "go": "g.V().Values(\"age\").AsString().AsNumber(gremlingo.GType.Double)", "groovy": "g.V().values(\"age\").asString().asNumber(GType.DOUBLE)", "java": "g.V().values(\"age\").asString().asNumber(GType.DOUBLE)", @@ -20161,6 +21449,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").property(\"birthday\", 1596326400000).addV(\"person\").property(\"name\", \"john\").property(\"birthday\", 597715200000).addV(\"person\").property(\"name\", \"charlie\").property(\"birthday\", 1012521600000).addV(\"person\").property(\"name\", \"suzy\").property(\"birthday\", -131587200000)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addV(string0).property(string1, string4).property(string3, number1).addV(string0).property(string1, string5).property(string3, number2).addV(string0).property(string1, string6).property(string3, number3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").Property(\"birthday\", 1596326400000).AddV((string) \"person\").Property(\"name\", \"john\").Property(\"birthday\", 597715200000).AddV((string) \"person\").Property(\"name\", \"charlie\").Property(\"birthday\", 1012521600000).AddV((string) \"person\").Property(\"name\", \"suzy\").Property(\"birthday\", -131587200000)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").Property(\"birthday\", 1596326400000).AddV((string) \"person\").Property(\"name\", \"john\").Property(\"birthday\", 597715200000).AddV((string) \"person\").Property(\"name\", \"charlie\").Property(\"birthday\", 1012521600000).AddV((string) \"person\").Property(\"name\", \"suzy\").Property(\"birthday\", -131587200000)", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").Property(\"birthday\", 1596326400000).AddV(\"person\").Property(\"name\", \"john\").Property(\"birthday\", 597715200000).AddV(\"person\").Property(\"name\", \"charlie\").Property(\"birthday\", 1012521600000).AddV(\"person\").Property(\"name\", \"suzy\").Property(\"birthday\", -131587200000)", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").property(\"birthday\", 1596326400000).addV(\"person\").property(\"name\", \"john\").property(\"birthday\", 597715200000).addV(\"person\").property(\"name\", \"charlie\").property(\"birthday\", 1012521600000).addV(\"person\").property(\"name\", \"suzy\").property(\"birthday\", -131587200000)", "java": "g.addV(\"person\").property(\"name\", \"alice\").property(\"birthday\", 1596326400000).addV(\"person\").property(\"name\", \"john\").property(\"birthday\", 597715200000).addV(\"person\").property(\"name\", \"charlie\").property(\"birthday\", 1012521600000).addV(\"person\").property(\"name\", \"suzy\").property(\"birthday\", -131587200000)", @@ -20173,6 +21462,7 @@ "canonical": "g.V().values(\"birthday\").asNumber().asDate().asNumber()", "anonymized": "g.V().values(string0).asNumber().asDate().asNumber()", "dotnet": "g.V().Values(\"birthday\").AsNumber().AsDate().AsNumber()", + "dotnet_parameterize": "g.V().Values(\"birthday\").AsNumber().AsDate().AsNumber()", "go": "g.V().Values(\"birthday\").AsNumber().AsDate().AsNumber()", "groovy": "g.V().values(\"birthday\").asNumber().asDate().asNumber()", "java": "g.V().values(\"birthday\").asNumber().asDate().asNumber()", @@ -20190,6 +21480,7 @@ "canonical": "g.inject(1, 2).asString()", "anonymized": "g.inject(number0, number1).asString()", "dotnet": "g.Inject(1, 2).AsString()", + "dotnet_parameterize": "g.Inject(1, 2).AsString()", "go": "g.Inject(1, 2).AsString()", "groovy": "g.inject(1, 2).asString()", "java": "g.inject(1, 2).asString()", @@ -20207,6 +21498,7 @@ "canonical": "g.inject(1, 2).asString(Scope.local)", "anonymized": "g.inject(number0, number1).asString(Scope.local)", "dotnet": "g.Inject(1, 2).AsString(Scope.Local)", + "dotnet_parameterize": "g.Inject(1, 2).AsString(Scope.Local)", "go": "g.Inject(1, 2).AsString(gremlingo.Scope.Local)", "groovy": "g.inject(1, 2).asString(Scope.local)", "java": "g.inject(1, 2).asString(Scope.local)", @@ -20224,6 +21516,7 @@ "canonical": "g.inject([1, 2]).asString(Scope.local)", "anonymized": "g.inject(list0).asString(Scope.local)", "dotnet": "g.Inject(new List { 1, 2 }).AsString(Scope.Local)", + "dotnet_parameterize": "g.Inject(new List { 1, 2 }).AsString(Scope.Local)", "go": "g.Inject([]interface{}{1, 2}).AsString(gremlingo.Scope.Local)", "groovy": "g.inject([1, 2]).asString(Scope.local)", "java": "g.inject(new ArrayList() {{ add(1); add(2); }}).asString(Scope.local)", @@ -20241,6 +21534,7 @@ "canonical": "g.inject(null, 1).asString()", "anonymized": "g.inject(object0, number0).asString()", "dotnet": "g.Inject(null, 1).AsString()", + "dotnet_parameterize": "g.Inject(null, 1).AsString()", "go": "g.Inject(nil, 1).AsString()", "groovy": "g.inject(null, 1).asString()", "java": "g.inject(null, 1).asString()", @@ -20258,6 +21552,7 @@ "canonical": "g.inject([1, null]).asString(Scope.local)", "anonymized": "g.inject(list0).asString(Scope.local)", "dotnet": "g.Inject(new List { 1, null }).AsString(Scope.Local)", + "dotnet_parameterize": "g.Inject(new List { 1, null }).AsString(Scope.Local)", "go": "g.Inject([]interface{}{1, nil}).AsString(gremlingo.Scope.Local)", "groovy": "g.inject([1, null]).asString(Scope.local)", "java": "g.inject(new ArrayList() {{ add(1); add(null); }}).asString(Scope.local)", @@ -20275,6 +21570,7 @@ "canonical": "g.V().valueMap(\"name\").asString()", "anonymized": "g.V().valueMap(string0).asString()", "dotnet": "g.V().ValueMap(\"name\").AsString()", + "dotnet_parameterize": "g.V().ValueMap(\"name\").AsString()", "go": "g.V().ValueMap(\"name\").AsString()", "groovy": "g.V().valueMap(\"name\").asString()", "java": "g.V().valueMap(\"name\").asString()", @@ -20292,6 +21588,7 @@ "canonical": "g.V().valueMap(\"name\").order().fold().asString(Scope.local)", "anonymized": "g.V().valueMap(string0).order().fold().asString(Scope.local)", "dotnet": "g.V().ValueMap(\"name\").Order().Fold().AsString(Scope.Local)", + "dotnet_parameterize": "g.V().ValueMap(\"name\").Order().Fold().AsString(Scope.Local)", "go": "g.V().ValueMap(\"name\").Order().Fold().AsString(gremlingo.Scope.Local)", "groovy": "g.V().valueMap(\"name\").order().fold().asString(Scope.local)", "java": "g.V().valueMap(\"name\").order().fold().asString(Scope.local)", @@ -20309,6 +21606,7 @@ "canonical": "g.V().asString()", "anonymized": "g.V().asString()", "dotnet": "g.V().AsString()", + "dotnet_parameterize": "g.V().AsString()", "go": "g.V().AsString()", "groovy": "g.V().asString()", "java": "g.V().asString()", @@ -20326,6 +21624,7 @@ "canonical": "g.V().fold().asString(Scope.local).order(Scope.local)", "anonymized": "g.V().fold().asString(Scope.local).order(Scope.local)", "dotnet": "g.V().Fold().AsString(Scope.Local).Order(Scope.Local)", + "dotnet_parameterize": "g.V().Fold().AsString(Scope.Local).Order(Scope.Local)", "go": "g.V().Fold().AsString(gremlingo.Scope.Local).Order(gremlingo.Scope.Local)", "groovy": "g.V().fold().asString(Scope.local).order(Scope.local)", "java": "g.V().fold().asString(Scope.local).order(Scope.local)", @@ -20343,6 +21642,7 @@ "canonical": "g.E().asString()", "anonymized": "g.E().asString()", "dotnet": "g.E().AsString()", + "dotnet_parameterize": "g.E().AsString()", "go": "g.E().AsString()", "groovy": "g.E().asString()", "java": "g.E().asString()", @@ -20360,6 +21660,7 @@ "canonical": "g.V().properties().asString()", "anonymized": "g.V().properties().asString()", "dotnet": "g.V().Properties().AsString()", + "dotnet_parameterize": "g.V().Properties().AsString()", "go": "g.V().Properties().AsString()", "groovy": "g.V().properties().asString()", "java": "g.V().properties().asString()", @@ -20377,6 +21678,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"age\").asString()", "anonymized": "g.V().hasLabel(string0).values(string1).asString()", "dotnet": "g.V().HasLabel(\"person\").Values(\"age\").AsString()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"age\").AsString()", "go": "g.V().HasLabel(\"person\").Values(\"age\").AsString()", "groovy": "g.V().hasLabel(\"person\").values(\"age\").asString()", "java": "g.V().hasLabel(\"person\").values(\"age\").asString()", @@ -20394,6 +21696,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"age\").order().fold().asString(Scope.local)", "anonymized": "g.V().hasLabel(string0).values(string1).order().fold().asString(Scope.local)", "dotnet": "g.V().HasLabel(\"person\").Values(\"age\").Order().Fold().AsString(Scope.Local)", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"age\").Order().Fold().AsString(Scope.Local)", "go": "g.V().HasLabel(\"person\").Values(\"age\").Order().Fold().AsString(gremlingo.Scope.Local)", "groovy": "g.V().hasLabel(\"person\").values(\"age\").order().fold().asString(Scope.local)", "java": "g.V().hasLabel(\"person\").values(\"age\").order().fold().asString(Scope.local)", @@ -20411,6 +21714,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"age\").asString().concat(\" years old\")", "anonymized": "g.V().hasLabel(string0).values(string1).asString().concat(string2)", "dotnet": "g.V().HasLabel(\"person\").Values(\"age\").AsString().Concat(\" years old\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"age\").AsString().Concat(\" years old\")", "go": "g.V().HasLabel(\"person\").Values(\"age\").AsString().Concat(\" years old\")", "groovy": "g.V().hasLabel(\"person\").values(\"age\").asString().concat(\" years old\")", "java": "g.V().hasLabel(\"person\").values(\"age\").asString().concat(\" years old\")", @@ -20428,6 +21732,7 @@ "canonical": "g.V().outE(\"knows\").subgraph(\"sg\").cap(\"sg\").asString()", "anonymized": "g.V().outE(string0).subgraph(string1).cap(string1).asString()", "dotnet": "g.V().OutE(\"knows\").Subgraph(\"sg\").Cap(\"sg\").AsString()", + "dotnet_parameterize": "g.V().OutE(\"knows\").Subgraph(\"sg\").Cap(\"sg\").AsString()", "go": "g.V().OutE(\"knows\").Subgraph(\"sg\").Cap(\"sg\").AsString()", "groovy": "g.V().outE(\"knows\").subgraph(\"sg\").cap(\"sg\").asString()", "java": "g.V().outE(\"knows\").subgraph(\"sg\").cap(\"sg\").asString()", @@ -20445,6 +21750,7 @@ "canonical": "g.call()", "anonymized": "g.call()", "dotnet": "g.Call()", + "dotnet_parameterize": "g.Call()", "go": "g.Call()", "groovy": "g.call()", "java": "g.call()", @@ -20462,6 +21768,7 @@ "canonical": "g.call(\"--list\")", "anonymized": "g.call(string0)", "dotnet": "g.Call((string) \"--list\")", + "dotnet_parameterize": "g.Call((string) \"--list\")", "go": "g.Call(\"--list\")", "groovy": "g.call(\"--list\")", "java": "g.call(\"--list\")", @@ -20479,6 +21786,7 @@ "canonical": "g.call(\"--list\").with(\"service\", \"tinker.search\")", "anonymized": "g.call(string0).with(string1, string2)", "dotnet": "g.Call((string) \"--list\").With(\"service\", \"tinker.search\")", + "dotnet_parameterize": "g.Call((string) \"--list\").With(\"service\", \"tinker.search\")", "go": "g.Call(\"--list\").With(\"service\", \"tinker.search\")", "groovy": "g.call(\"--list\").with(\"service\", \"tinker.search\")", "java": "g.call(\"--list\").with(\"service\", \"tinker.search\")", @@ -20496,6 +21804,7 @@ "canonical": "g.call(\"--list\").with(\"service\", __.constant(\"tinker.search\"))", "anonymized": "g.call(string0).with(string1, __.constant(string2))", "dotnet": "g.Call((string) \"--list\").With(\"service\", __.Constant(\"tinker.search\"))", + "dotnet_parameterize": "g.Call((string) \"--list\").With(\"service\", __.Constant(\"tinker.search\"))", "go": "g.Call(\"--list\").With(\"service\", gremlingo.T__.Constant(\"tinker.search\"))", "groovy": "g.call(\"--list\").with(\"service\", __.constant(\"tinker.search\"))", "java": "g.call(\"--list\").with(\"service\", __.constant(\"tinker.search\"))", @@ -20513,6 +21822,7 @@ "canonical": "g.call(\"--list\", xx1)", "anonymized": "g.call(string0, xx1)", "dotnet": "g.Call(\"--list\", (IDictionary) xx1)", + "dotnet_parameterize": "g.Call(\"--list\", new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.Call(\"--list\", xx1)", "groovy": "g.call(\"--list\", xx1)", "java": "g.call(\"--list\", xx1)", @@ -20530,6 +21840,7 @@ "canonical": "g.call(\"--list\", __.project(\"service\").by(__.constant(\"tinker.search\")))", "anonymized": "g.call(string0, __.project(string1).by(__.constant(string2)))", "dotnet": "g.Call(\"--list\", (ITraversal) __.Project(\"service\").By(__.Constant(\"tinker.search\")))", + "dotnet_parameterize": "g.Call(\"--list\", (ITraversal) __.Project(\"service\").By(__.Constant(\"tinker.search\")))", "go": "g.Call(\"--list\", gremlingo.T__.Project(\"service\").By(gremlingo.T__.Constant(\"tinker.search\")))", "groovy": "g.call(\"--list\", __.project(\"service\").by(__.constant(\"tinker.search\")))", "java": "g.call(\"--list\", __.project(\"service\").by(__.constant(\"tinker.search\")))", @@ -20547,6 +21858,7 @@ "canonical": "g.call(\"--list\", xx1, __.project(\"service\").by(__.constant(\"tinker.search\")))", "anonymized": "g.call(string0, xx1, __.project(string1).by(__.constant(string2)))", "dotnet": "g.Call(\"--list\", (IDictionary) xx1, (ITraversal) __.Project(\"service\").By(__.Constant(\"tinker.search\")))", + "dotnet_parameterize": "g.Call(\"--list\", new GValue>(\"xx1\", (IDictionary) xx1), (ITraversal) __.Project(\"service\").By(__.Constant(\"tinker.search\")))", "go": "g.Call(\"--list\", xx1, gremlingo.T__.Project(\"service\").By(gremlingo.T__.Constant(\"tinker.search\")))", "groovy": "g.call(\"--list\", xx1, __.project(\"service\").by(__.constant(\"tinker.search\")))", "java": "g.call(\"--list\", xx1, __.project(\"service\").by(__.constant(\"tinker.search\")))", @@ -20564,6 +21876,7 @@ "canonical": "g.call(\"tinker.search\", xx1).element()", "anonymized": "g.call(string0, xx1).element()", "dotnet": "g.Call(\"tinker.search\", (IDictionary) xx1).Element()", + "dotnet_parameterize": "g.Call(\"tinker.search\", new GValue>(\"xx1\", (IDictionary) xx1)).Element()", "go": "g.Call(\"tinker.search\", xx1).Element()", "groovy": "g.call(\"tinker.search\", xx1).element()", "java": "g.call(\"tinker.search\", xx1).element()", @@ -20581,6 +21894,7 @@ "canonical": "g.call(\"tinker.search\", __.project(\"search\").by(__.constant(\"vada\"))).element()", "anonymized": "g.call(string0, __.project(string1).by(__.constant(string2))).element()", "dotnet": "g.Call(\"tinker.search\", (ITraversal) __.Project(\"search\").By(__.Constant(\"vada\"))).Element()", + "dotnet_parameterize": "g.Call(\"tinker.search\", (ITraversal) __.Project(\"search\").By(__.Constant(\"vada\"))).Element()", "go": "g.Call(\"tinker.search\", gremlingo.T__.Project(\"search\").By(gremlingo.T__.Constant(\"vada\"))).Element()", "groovy": "g.call(\"tinker.search\", __.project(\"search\").by(__.constant(\"vada\"))).element()", "java": "g.call(\"tinker.search\", __.project(\"search\").by(__.constant(\"vada\"))).element()", @@ -20598,6 +21912,7 @@ "canonical": "g.call(\"tinker.search\").with(\"search\", \"vada\").element()", "anonymized": "g.call(string0).with(string1, string2).element()", "dotnet": "g.Call((string) \"tinker.search\").With(\"search\", \"vada\").Element()", + "dotnet_parameterize": "g.Call((string) \"tinker.search\").With(\"search\", \"vada\").Element()", "go": "g.Call(\"tinker.search\").With(\"search\", \"vada\").Element()", "groovy": "g.call(\"tinker.search\").with(\"search\", \"vada\").element()", "java": "g.call(\"tinker.search\").with(\"search\", \"vada\").element()", @@ -20615,6 +21930,7 @@ "canonical": "g.call(\"tinker.search\").with(\"search\", __.constant(\"vada\")).element()", "anonymized": "g.call(string0).with(string1, __.constant(string2)).element()", "dotnet": "g.Call((string) \"tinker.search\").With(\"search\", __.Constant(\"vada\")).Element()", + "dotnet_parameterize": "g.Call((string) \"tinker.search\").With(\"search\", __.Constant(\"vada\")).Element()", "go": "g.Call(\"tinker.search\").With(\"search\", gremlingo.T__.Constant(\"vada\")).Element()", "groovy": "g.call(\"tinker.search\").with(\"search\", __.constant(\"vada\")).element()", "java": "g.call(\"tinker.search\").with(\"search\", __.constant(\"vada\")).element()", @@ -20632,6 +21948,7 @@ "canonical": "g.call(\"tinker.search\", xx1).with(\"type\", \"Vertex\").element()", "anonymized": "g.call(string0, xx1).with(string1, string2).element()", "dotnet": "g.Call(\"tinker.search\", (IDictionary) xx1).With(\"type\", \"Vertex\").Element()", + "dotnet_parameterize": "g.Call(\"tinker.search\", new GValue>(\"xx1\", (IDictionary) xx1)).With(\"type\", \"Vertex\").Element()", "go": "g.Call(\"tinker.search\", xx1).With(\"type\", \"Vertex\").Element()", "groovy": "g.call(\"tinker.search\", xx1).with(\"type\", \"Vertex\").element()", "java": "g.call(\"tinker.search\", xx1).with(\"type\", \"Vertex\").element()", @@ -20649,6 +21966,7 @@ "canonical": "g.call(\"tinker.search\", xx1).with(\"type\", \"Edge\").element()", "anonymized": "g.call(string0, xx1).with(string1, string2).element()", "dotnet": "g.Call(\"tinker.search\", (IDictionary) xx1).With(\"type\", \"Edge\").Element()", + "dotnet_parameterize": "g.Call(\"tinker.search\", new GValue>(\"xx1\", (IDictionary) xx1)).With(\"type\", \"Edge\").Element()", "go": "g.Call(\"tinker.search\", xx1).With(\"type\", \"Edge\").Element()", "groovy": "g.call(\"tinker.search\", xx1).with(\"type\", \"Edge\").element()", "java": "g.call(\"tinker.search\", xx1).with(\"type\", \"Edge\").element()", @@ -20666,6 +21984,7 @@ "canonical": "g.call(\"tinker.search\", xx1).with(\"type\", \"VertexProperty\").element()", "anonymized": "g.call(string0, xx1).with(string1, string2).element()", "dotnet": "g.Call(\"tinker.search\", (IDictionary) xx1).With(\"type\", \"VertexProperty\").Element()", + "dotnet_parameterize": "g.Call(\"tinker.search\", new GValue>(\"xx1\", (IDictionary) xx1)).With(\"type\", \"VertexProperty\").Element()", "go": "g.Call(\"tinker.search\", xx1).With(\"type\", \"VertexProperty\").Element()", "groovy": "g.call(\"tinker.search\", xx1).with(\"type\", \"VertexProperty\").element()", "java": "g.call(\"tinker.search\", xx1).with(\"type\", \"VertexProperty\").element()", @@ -20683,6 +22002,7 @@ "canonical": "g.V().as(\"v\").call(\"tinker.degree.centrality\").project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", "anonymized": "g.V().as(string0).call(string1).project(string2, string3).by(__.select(string0)).by()", "dotnet": "g.V().As(\"v\").Call((string) \"tinker.degree.centrality\").Project(\"vertex\", \"degree\").By(__.Select(\"v\")).By()", + "dotnet_parameterize": "g.V().As(\"v\").Call((string) \"tinker.degree.centrality\").Project(\"vertex\", \"degree\").By(__.Select(\"v\")).By()", "go": "g.V().As(\"v\").Call(\"tinker.degree.centrality\").Project(\"vertex\", \"degree\").By(gremlingo.T__.Select(\"v\")).By()", "groovy": "g.V().as(\"v\").call(\"tinker.degree.centrality\").project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", "java": "g.V().as(\"v\").call(\"tinker.degree.centrality\").project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", @@ -20700,6 +22020,7 @@ "canonical": "g.V().where(__.call(\"tinker.degree.centrality\").is(3))", "anonymized": "g.V().where(__.call(string0).is(number0))", "dotnet": "g.V().Where(__.Call((string) \"tinker.degree.centrality\").Is(3))", + "dotnet_parameterize": "g.V().Where(__.Call((string) \"tinker.degree.centrality\").Is(3))", "go": "g.V().Where(gremlingo.T__.Call(\"tinker.degree.centrality\").Is(3))", "groovy": "g.V().where(__.call(\"tinker.degree.centrality\").is(3))", "java": "g.V().where(__.call(\"tinker.degree.centrality\").is(3))", @@ -20717,6 +22038,7 @@ "canonical": "g.V().as(\"v\").call(\"tinker.degree.centrality\").with(\"direction\", Direction.OUT).project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", "anonymized": "g.V().as(string0).call(string1).with(string2, Direction.OUT).project(string3, string4).by(__.select(string0)).by()", "dotnet": "g.V().As(\"v\").Call((string) \"tinker.degree.centrality\").With(\"direction\", Direction.Out).Project(\"vertex\", \"degree\").By(__.Select(\"v\")).By()", + "dotnet_parameterize": "g.V().As(\"v\").Call((string) \"tinker.degree.centrality\").With(\"direction\", Direction.Out).Project(\"vertex\", \"degree\").By(__.Select(\"v\")).By()", "go": "g.V().As(\"v\").Call(\"tinker.degree.centrality\").With(\"direction\", gremlingo.Direction.Out).Project(\"vertex\", \"degree\").By(gremlingo.T__.Select(\"v\")).By()", "groovy": "g.V().as(\"v\").call(\"tinker.degree.centrality\").with(\"direction\", Direction.OUT).project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", "java": "g.V().as(\"v\").call(\"tinker.degree.centrality\").with(\"direction\", Direction.OUT).project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", @@ -20734,6 +22056,7 @@ "canonical": "g.V().as(\"v\").call(\"tinker.degree.centrality\", xx1).with(\"direction\", Direction.OUT).project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", "anonymized": "g.V().as(string0).call(string1, xx1).with(string2, Direction.OUT).project(string3, string4).by(__.select(string0)).by()", "dotnet": "g.V().As(\"v\").Call(\"tinker.degree.centrality\", (IDictionary) xx1).With(\"direction\", Direction.Out).Project(\"vertex\", \"degree\").By(__.Select(\"v\")).By()", + "dotnet_parameterize": "g.V().As(\"v\").Call(\"tinker.degree.centrality\", new GValue>(\"xx1\", (IDictionary) xx1)).With(\"direction\", Direction.Out).Project(\"vertex\", \"degree\").By(__.Select(\"v\")).By()", "go": "g.V().As(\"v\").Call(\"tinker.degree.centrality\", xx1).With(\"direction\", gremlingo.Direction.Out).Project(\"vertex\", \"degree\").By(gremlingo.T__.Select(\"v\")).By()", "groovy": "g.V().as(\"v\").call(\"tinker.degree.centrality\", xx1).with(\"direction\", Direction.OUT).project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", "java": "g.V().as(\"v\").call(\"tinker.degree.centrality\", xx1).with(\"direction\", Direction.OUT).project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", @@ -20751,6 +22074,7 @@ "canonical": "g.V().as(\"v\").call(\"tinker.degree.centrality\", __.project(\"direction\").by(__.constant(Direction.OUT))).project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", "anonymized": "g.V().as(string0).call(string1, __.project(string2).by(__.constant(Direction.OUT))).project(string3, string4).by(__.select(string0)).by()", "dotnet": "g.V().As(\"v\").Call(\"tinker.degree.centrality\", (ITraversal) __.Project(\"direction\").By(__.Constant(Direction.Out))).Project(\"vertex\", \"degree\").By(__.Select(\"v\")).By()", + "dotnet_parameterize": "g.V().As(\"v\").Call(\"tinker.degree.centrality\", (ITraversal) __.Project(\"direction\").By(__.Constant(Direction.Out))).Project(\"vertex\", \"degree\").By(__.Select(\"v\")).By()", "go": "g.V().As(\"v\").Call(\"tinker.degree.centrality\", gremlingo.T__.Project(\"direction\").By(gremlingo.T__.Constant(gremlingo.Direction.Out))).Project(\"vertex\", \"degree\").By(gremlingo.T__.Select(\"v\")).By()", "groovy": "g.V().as(\"v\").call(\"tinker.degree.centrality\", __.project(\"direction\").by(__.constant(Direction.OUT))).project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", "java": "g.V().as(\"v\").call(\"tinker.degree.centrality\", __.project(\"direction\").by(__.constant(Direction.OUT))).project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", @@ -20768,6 +22092,7 @@ "canonical": "g.V().as(\"v\").call(\"tinker.degree.centrality\", xx1, __.project(\"direction\").by(__.constant(Direction.OUT))).project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", "anonymized": "g.V().as(string0).call(string1, xx1, __.project(string2).by(__.constant(Direction.OUT))).project(string3, string4).by(__.select(string0)).by()", "dotnet": "g.V().As(\"v\").Call(\"tinker.degree.centrality\", (IDictionary) xx1, (ITraversal) __.Project(\"direction\").By(__.Constant(Direction.Out))).Project(\"vertex\", \"degree\").By(__.Select(\"v\")).By()", + "dotnet_parameterize": "g.V().As(\"v\").Call(\"tinker.degree.centrality\", new GValue>(\"xx1\", (IDictionary) xx1), (ITraversal) __.Project(\"direction\").By(__.Constant(Direction.Out))).Project(\"vertex\", \"degree\").By(__.Select(\"v\")).By()", "go": "g.V().As(\"v\").Call(\"tinker.degree.centrality\", xx1, gremlingo.T__.Project(\"direction\").By(gremlingo.T__.Constant(gremlingo.Direction.Out))).Project(\"vertex\", \"degree\").By(gremlingo.T__.Select(\"v\")).By()", "groovy": "g.V().as(\"v\").call(\"tinker.degree.centrality\", xx1, __.project(\"direction\").by(__.constant(Direction.OUT))).project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", "java": "g.V().as(\"v\").call(\"tinker.degree.centrality\", xx1, __.project(\"direction\").by(__.constant(Direction.OUT))).project(\"vertex\", \"degree\").by(__.select(\"v\")).by()", @@ -20785,6 +22110,7 @@ "canonical": "g.V().coalesce(__.out(\"foo\"), __.out(\"bar\"))", "anonymized": "g.V().coalesce(__.out(string0), __.out(string1))", "dotnet": "g.V().Coalesce(__.Out(\"foo\"), __.Out(\"bar\"))", + "dotnet_parameterize": "g.V().Coalesce(__.Out(\"foo\"), __.Out(\"bar\"))", "go": "g.V().Coalesce(gremlingo.T__.Out(\"foo\"), gremlingo.T__.Out(\"bar\"))", "groovy": "g.V().coalesce(__.out(\"foo\"), __.out(\"bar\"))", "java": "g.V().coalesce(__.out(\"foo\"), __.out(\"bar\"))", @@ -20802,6 +22128,7 @@ "canonical": "g.V(vid1).coalesce(__.out(\"knows\"), __.out(\"created\")).values(\"name\")", "anonymized": "g.V(vid1).coalesce(__.out(string0), __.out(string1)).values(string2)", "dotnet": "g.V(vid1).Coalesce(__.Out(\"knows\"), __.Out(\"created\")).Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).Coalesce(__.Out(\"knows\"), __.Out(\"created\")).Values(\"name\")", "go": "g.V(vid1).Coalesce(gremlingo.T__.Out(\"knows\"), gremlingo.T__.Out(\"created\")).Values(\"name\")", "groovy": "g.V(vid1).coalesce(__.out(\"knows\"), __.out(\"created\")).values(\"name\")", "java": "g.V(vid1).coalesce(__.out(\"knows\"), __.out(\"created\")).values(\"name\")", @@ -20819,6 +22146,7 @@ "canonical": "g.V(vid1).coalesce(__.out(\"created\"), __.out(\"knows\")).values(\"name\")", "anonymized": "g.V(vid1).coalesce(__.out(string0), __.out(string1)).values(string2)", "dotnet": "g.V(vid1).Coalesce(__.Out(\"created\"), __.Out(\"knows\")).Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).Coalesce(__.Out(\"created\"), __.Out(\"knows\")).Values(\"name\")", "go": "g.V(vid1).Coalesce(gremlingo.T__.Out(\"created\"), gremlingo.T__.Out(\"knows\")).Values(\"name\")", "groovy": "g.V(vid1).coalesce(__.out(\"created\"), __.out(\"knows\")).values(\"name\")", "java": "g.V(vid1).coalesce(__.out(\"created\"), __.out(\"knows\")).values(\"name\")", @@ -20836,6 +22164,7 @@ "canonical": "g.V().coalesce(__.out(\"likes\"), __.out(\"knows\"), __.out(\"created\")).groupCount().by(\"name\")", "anonymized": "g.V().coalesce(__.out(string0), __.out(string1), __.out(string2)).groupCount().by(string3)", "dotnet": "g.V().Coalesce(__.Out(\"likes\"), __.Out(\"knows\"), __.Out(\"created\")).GroupCount().By(\"name\")", + "dotnet_parameterize": "g.V().Coalesce(__.Out(\"likes\"), __.Out(\"knows\"), __.Out(\"created\")).GroupCount().By(\"name\")", "go": "g.V().Coalesce(gremlingo.T__.Out(\"likes\"), gremlingo.T__.Out(\"knows\"), gremlingo.T__.Out(\"created\")).GroupCount().By(\"name\")", "groovy": "g.V().coalesce(__.out(\"likes\"), __.out(\"knows\"), __.out(\"created\")).groupCount().by(\"name\")", "java": "g.V().coalesce(__.out(\"likes\"), __.out(\"knows\"), __.out(\"created\")).groupCount().by(\"name\")", @@ -20853,6 +22182,7 @@ "canonical": "g.V().coalesce(__.outE(\"knows\"), __.outE(\"created\")).otherV().path().by(\"name\").by(T.label)", "anonymized": "g.V().coalesce(__.outE(string0), __.outE(string1)).otherV().path().by(string2).by(T.label)", "dotnet": "g.V().Coalesce(__.OutE(\"knows\"), __.OutE(\"created\")).OtherV().Path().By(\"name\").By(T.Label)", + "dotnet_parameterize": "g.V().Coalesce(__.OutE(\"knows\"), __.OutE(\"created\")).OtherV().Path().By(\"name\").By(T.Label)", "go": "g.V().Coalesce(gremlingo.T__.OutE(\"knows\"), gremlingo.T__.OutE(\"created\")).OtherV().Path().By(\"name\").By(gremlingo.T.Label)", "groovy": "g.V().coalesce(__.outE(\"knows\"), __.outE(\"created\")).otherV().path().by(\"name\").by(T.label)", "java": "g.V().coalesce(__.outE(\"knows\"), __.outE(\"created\")).otherV().path().by(\"name\").by(T.label)", @@ -20870,6 +22200,7 @@ "canonical": "g.V().out(\"created\").order().by(\"name\").coalesce(__.values(\"name\"), __.constant(\"x\"))", "anonymized": "g.V().out(string0).order().by(string1).coalesce(__.values(string1), __.constant(string2))", "dotnet": "g.V().Out(\"created\").Order().By(\"name\").Coalesce(__.Values(\"name\"), __.Constant(\"x\"))", + "dotnet_parameterize": "g.V().Out(\"created\").Order().By(\"name\").Coalesce(__.Values(\"name\"), __.Constant(\"x\"))", "go": "g.V().Out(\"created\").Order().By(\"name\").Coalesce(gremlingo.T__.Values(\"name\"), gremlingo.T__.Constant(\"x\"))", "groovy": "g.V().out(\"created\").order().by(\"name\").coalesce(__.values(\"name\"), __.constant(\"x\"))", "java": "g.V().out(\"created\").order().by(\"name\").coalesce(__.values(\"name\"), __.constant(\"x\"))", @@ -20887,6 +22218,7 @@ "canonical": "g.inject(null).combine(__.inject(1))", "anonymized": "g.inject(object0).combine(__.inject(number0))", "dotnet": "g.Inject(null).Combine(__.Inject(1))", + "dotnet_parameterize": "g.Inject(null).Combine(__.Inject(1))", "go": "g.Inject(nil).Combine(gremlingo.T__.Inject(1))", "groovy": "g.inject(null).combine(__.inject(1))", "java": "g.inject(null).combine(__.inject(1))", @@ -20904,6 +22236,7 @@ "canonical": "g.V().values(\"name\").combine(__.V().fold())", "anonymized": "g.V().values(string0).combine(__.V().fold())", "dotnet": "g.V().Values(\"name\").Combine(__.V().Fold())", + "dotnet_parameterize": "g.V().Values(\"name\").Combine(__.V().Fold())", "go": "g.V().Values(\"name\").Combine(gremlingo.T__.V().Fold())", "groovy": "g.V().values(\"name\").combine(__.V().fold())", "java": "g.V().values(\"name\").combine(__.V().fold())", @@ -20921,6 +22254,7 @@ "canonical": "g.V().fold().combine(__.constant(null))", "anonymized": "g.V().fold().combine(__.constant(object0))", "dotnet": "g.V().Fold().Combine(__.Constant(null))", + "dotnet_parameterize": "g.V().Fold().Combine(__.Constant(null))", "go": "g.V().Fold().Combine(gremlingo.T__.Constant(nil))", "groovy": "g.V().fold().combine(__.constant(null))", "java": "g.V().fold().combine(__.constant(null))", @@ -20938,6 +22272,7 @@ "canonical": "g.V().fold().combine(__.V())", "anonymized": "g.V().fold().combine(__.V())", "dotnet": "g.V().Fold().Combine(__.V())", + "dotnet_parameterize": "g.V().Fold().Combine(__.V())", "go": "g.V().Fold().Combine(gremlingo.T__.V())", "groovy": "g.V().fold().combine(__.V())", "java": "g.V().fold().combine(__.V())", @@ -20955,6 +22290,7 @@ "canonical": "g.V().values(\"name\").fold().combine(2)", "anonymized": "g.V().values(string0).fold().combine(number0)", "dotnet": "g.V().Values(\"name\").Fold().Combine(2)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Combine(2)", "go": "g.V().Values(\"name\").Fold().Combine(2)", "groovy": "g.V().values(\"name\").fold().combine(2)", "java": "g.V().values(\"name\").fold().combine(2)", @@ -20972,6 +22308,7 @@ "canonical": "g.V().values(\"name\").fold().combine(null)", "anonymized": "g.V().values(string0).fold().combine(object0)", "dotnet": "g.V().Values(\"name\").Fold().Combine(null)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Combine(null)", "go": "g.V().Values(\"name\").Fold().Combine(nil)", "groovy": "g.V().values(\"name\").fold().combine(null)", "java": "g.V().values(\"name\").fold().combine(null)", @@ -20989,6 +22326,7 @@ "canonical": "g.V().values(\"nonexistant\").fold().combine(__.V().values(\"name\").fold()).unfold()", "anonymized": "g.V().values(string0).fold().combine(__.V().values(string1).fold()).unfold()", "dotnet": "g.V().Values(\"nonexistant\").Fold().Combine(__.V().Values(\"name\").Fold()).Unfold()", + "dotnet_parameterize": "g.V().Values(\"nonexistant\").Fold().Combine(__.V().Values(\"name\").Fold()).Unfold()", "go": "g.V().Values(\"nonexistant\").Fold().Combine(gremlingo.T__.V().Values(\"name\").Fold()).Unfold()", "groovy": "g.V().values(\"nonexistant\").fold().combine(__.V().values(\"name\").fold()).unfold()", "java": "g.V().values(\"nonexistant\").fold().combine(__.V().values(\"name\").fold()).unfold()", @@ -21006,6 +22344,7 @@ "canonical": "g.V().values(\"name\").fold().combine(__.V().values(\"nonexistant\").fold()).unfold()", "anonymized": "g.V().values(string0).fold().combine(__.V().values(string1).fold()).unfold()", "dotnet": "g.V().Values(\"name\").Fold().Combine(__.V().Values(\"nonexistant\").Fold()).Unfold()", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Combine(__.V().Values(\"nonexistant\").Fold()).Unfold()", "go": "g.V().Values(\"name\").Fold().Combine(gremlingo.T__.V().Values(\"nonexistant\").Fold()).Unfold()", "groovy": "g.V().values(\"name\").fold().combine(__.V().values(\"nonexistant\").fold()).unfold()", "java": "g.V().values(\"name\").fold().combine(__.V().values(\"nonexistant\").fold()).unfold()", @@ -21023,6 +22362,7 @@ "canonical": "g.V().values(\"age\").order().by(Order.desc).fold().combine(__.V().values(\"age\").order().by(Order.desc).fold())", "anonymized": "g.V().values(string0).order().by(Order.desc).fold().combine(__.V().values(string0).order().by(Order.desc).fold())", "dotnet": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().Combine(__.V().Values(\"age\").Order().By(Order.Desc).Fold())", + "dotnet_parameterize": "g.V().Values(\"age\").Order().By(Order.Desc).Fold().Combine(__.V().Values(\"age\").Order().By(Order.Desc).Fold())", "go": "g.V().Values(\"age\").Order().By(gremlingo.Order.Desc).Fold().Combine(gremlingo.T__.V().Values(\"age\").Order().By(gremlingo.Order.Desc).Fold())", "groovy": "g.V().values(\"age\").order().by(Order.desc).fold().combine(__.V().values(\"age\").order().by(Order.desc).fold())", "java": "g.V().values(\"age\").order().by(Order.desc).fold().combine(__.V().values(\"age\").order().by(Order.desc).fold())", @@ -21040,6 +22380,7 @@ "canonical": "g.V().out().path().by(__.values(\"name\").toUpper()).combine([\"MARKO\"])", "anonymized": "g.V().out().path().by(__.values(string0).toUpper()).combine(list0)", "dotnet": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Combine(new List { \"MARKO\" })", + "dotnet_parameterize": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Combine(new List { \"MARKO\" })", "go": "g.V().Out().Path().By(gremlingo.T__.Values(\"name\").ToUpper()).Combine([]interface{}{\"MARKO\"})", "groovy": "g.V().out().path().by(__.values(\"name\").toUpper()).combine([\"MARKO\"])", "java": "g.V().out().path().by(__.values(\"name\").toUpper()).combine(new ArrayList() {{ add(\"MARKO\"); }})", @@ -21057,6 +22398,7 @@ "canonical": "g.inject([\"marko\"]).combine(__.V().values(\"name\").fold()).unfold()", "anonymized": "g.inject(list0).combine(__.V().values(string0).fold()).unfold()", "dotnet": "g.Inject(new List { \"marko\" }).Combine(__.V().Values(\"name\").Fold()).Unfold()", + "dotnet_parameterize": "g.Inject(new List { \"marko\" }).Combine(__.V().Values(\"name\").Fold()).Unfold()", "go": "g.Inject([]interface{}{\"marko\"}).Combine(gremlingo.T__.V().Values(\"name\").Fold()).Unfold()", "groovy": "g.inject([\"marko\"]).combine(__.V().values(\"name\").fold()).unfold()", "java": "g.inject(new ArrayList() {{ add(\"marko\"); }}).combine(__.V().values(\"name\").fold()).unfold()", @@ -21074,6 +22416,7 @@ "canonical": "g.V().valueMap(\"location\").select(Column.values).unfold().combine([\"seattle\", \"vancouver\"]).order(Scope.local)", "anonymized": "g.V().valueMap(string0).select(Column.values).unfold().combine(list0).order(Scope.local)", "dotnet": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Combine(new List { \"seattle\", \"vancouver\" }).Order(Scope.Local)", + "dotnet_parameterize": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Combine(new List { \"seattle\", \"vancouver\" }).Order(Scope.Local)", "go": "g.V().ValueMap(\"location\").Select(gremlingo.Column.Values).Unfold().Combine([]interface{}{\"seattle\", \"vancouver\"}).Order(gremlingo.Scope.Local)", "groovy": "g.V().valueMap(\"location\").select(Column.values).unfold().combine([\"seattle\", \"vancouver\"]).order(Scope.local)", "java": "g.V().valueMap(\"location\").select(Column.values).unfold().combine(new ArrayList() {{ add(\"seattle\"); add(\"vancouver\"); }}).order(Scope.local)", @@ -21091,6 +22434,7 @@ "canonical": "g.V().out().out().path().by(\"name\").combine([])", "anonymized": "g.V().out().out().path().by(string0).combine(list0)", "dotnet": "g.V().Out().Out().Path().By(\"name\").Combine(new List { })", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Combine(new List { })", "go": "g.V().Out().Out().Path().By(\"name\").Combine([]interface{}{})", "groovy": "g.V().out().out().path().by(\"name\").combine([])", "java": "g.V().out().out().path().by(\"name\").combine(new ArrayList() {{ }})", @@ -21108,6 +22452,7 @@ "canonical": "g.V().values(\"age\").order().fold().combine(__.constant(27).fold())", "anonymized": "g.V().values(string0).order().fold().combine(__.constant(number0).fold())", "dotnet": "g.V().Values(\"age\").Order().Fold().Combine(__.Constant(27).Fold())", + "dotnet_parameterize": "g.V().Values(\"age\").Order().Fold().Combine(__.Constant(27).Fold())", "go": "g.V().Values(\"age\").Order().Fold().Combine(gremlingo.T__.Constant(27).Fold())", "groovy": "g.V().values(\"age\").order().fold().combine(__.constant(27).fold())", "java": "g.V().values(\"age\").order().fold().combine(__.constant(27).fold())", @@ -21125,6 +22470,7 @@ "canonical": "g.V().out().out().path().by(\"name\").combine([\"dave\", \"kelvin\"])", "anonymized": "g.V().out().out().path().by(string0).combine(list0)", "dotnet": "g.V().Out().Out().Path().By(\"name\").Combine(new List { \"dave\", \"kelvin\" })", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Combine(new List { \"dave\", \"kelvin\" })", "go": "g.V().Out().Out().Path().By(\"name\").Combine([]interface{}{\"dave\", \"kelvin\"})", "groovy": "g.V().out().out().path().by(\"name\").combine([\"dave\", \"kelvin\"])", "java": "g.V().out().out().path().by(\"name\").combine(new ArrayList() {{ add(\"dave\"); add(\"kelvin\"); }})", @@ -21142,6 +22488,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).combine([\"a\", \"c\"])", "anonymized": "g.inject(list0).combine(list1)", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Combine(new List { \"a\", \"c\" })", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Combine(new List { \"a\", \"c\" })", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Combine([]interface{}{\"a\", \"c\"})", "groovy": "g.inject([\"a\", null, \"b\"]).combine([\"a\", \"c\"])", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).combine(new ArrayList() {{ add(\"a\"); add(\"c\"); }})", @@ -21159,6 +22506,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).combine([\"a\", null, \"c\"])", "anonymized": "g.inject(list0).combine(list1)", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Combine(new List { \"a\", null, \"c\" })", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Combine(new List { \"a\", null, \"c\" })", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Combine([]interface{}{\"a\", nil, \"c\"})", "groovy": "g.inject([\"a\", null, \"b\"]).combine([\"a\", null, \"c\"])", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).combine(new ArrayList() {{ add(\"a\"); add(null); add(\"c\"); }})", @@ -21176,6 +22524,7 @@ "canonical": "g.inject([3, \"three\"]).combine([\"five\", \"three\", 7i])", "anonymized": "g.inject(list0).combine(list1)", "dotnet": "g.Inject(new List { 3, \"three\" }).Combine(new List { \"five\", \"three\", 7 })", + "dotnet_parameterize": "g.Inject(new List { 3, \"three\" }).Combine(new List { \"five\", \"three\", 7 })", "go": "g.Inject([]interface{}{3, \"three\"}).Combine([]interface{}{\"five\", \"three\", int32(7)})", "groovy": "g.inject([3, \"three\"]).combine([\"five\", \"three\", 7i])", "java": "g.inject(new ArrayList() {{ add(3); add(\"three\"); }}).combine(new ArrayList() {{ add(\"five\"); add(\"three\"); add(7); }})", @@ -21193,6 +22542,7 @@ "canonical": "g.inject(\"a\", \"b\").concat()", "anonymized": "g.inject(string0, string1).concat()", "dotnet": "g.Inject(\"a\", \"b\").Concat()", + "dotnet_parameterize": "g.Inject(\"a\", \"b\").Concat()", "go": "g.Inject(\"a\", \"b\").Concat()", "groovy": "g.inject(\"a\", \"b\").concat()", "java": "g.inject(\"a\", \"b\").concat()", @@ -21210,6 +22560,7 @@ "canonical": "g.inject(\"a\", \"b\").concat(\"c\")", "anonymized": "g.inject(string0, string1).concat(string2)", "dotnet": "g.Inject(\"a\", \"b\").Concat(\"c\")", + "dotnet_parameterize": "g.Inject(\"a\", \"b\").Concat(\"c\")", "go": "g.Inject(\"a\", \"b\").Concat(\"c\")", "groovy": "g.inject(\"a\", \"b\").concat(\"c\")", "java": "g.inject(\"a\", \"b\").concat(\"c\")", @@ -21227,6 +22578,7 @@ "canonical": "g.inject(\"a\", \"b\").concat(\"c\", \"d\")", "anonymized": "g.inject(string0, string1).concat(string2, string3)", "dotnet": "g.Inject(\"a\", \"b\").Concat(\"c\", \"d\")", + "dotnet_parameterize": "g.Inject(\"a\", \"b\").Concat(\"c\", \"d\")", "go": "g.Inject(\"a\", \"b\").Concat(\"c\", \"d\")", "groovy": "g.inject(\"a\", \"b\").concat(\"c\", \"d\")", "java": "g.inject(\"a\", \"b\").concat(\"c\", \"d\")", @@ -21244,6 +22596,7 @@ "canonical": "g.inject(\"a\", \"b\").concat(__.inject(\"c\"))", "anonymized": "g.inject(string0, string1).concat(__.inject(string2))", "dotnet": "g.Inject(\"a\", \"b\").Concat(__.Inject(\"c\"))", + "dotnet_parameterize": "g.Inject(\"a\", \"b\").Concat(__.Inject(\"c\"))", "go": "g.Inject(\"a\", \"b\").Concat(gremlingo.T__.Inject(\"c\"))", "groovy": "g.inject(\"a\", \"b\").concat(__.inject(\"c\"))", "java": "g.inject(\"a\", \"b\").concat(__.inject(\"c\"))", @@ -21261,6 +22614,7 @@ "canonical": "g.inject(\"a\").concat(__.inject([\"b\", \"c\"]))", "anonymized": "g.inject(string0).concat(__.inject(list0))", "dotnet": "g.Inject(\"a\").Concat(__.Inject(new List { \"b\", \"c\" }))", + "dotnet_parameterize": "g.Inject(\"a\").Concat(__.Inject(new List { \"b\", \"c\" }))", "go": "g.Inject(\"a\").Concat(gremlingo.T__.Inject([]interface{}{\"b\", \"c\"}))", "groovy": "g.inject(\"a\").concat(__.inject([\"b\", \"c\"]))", "java": "g.inject(\"a\").concat(__.inject(new ArrayList() {{ add(\"b\"); add(\"c\"); }}))", @@ -21278,6 +22632,7 @@ "canonical": "g.inject([\"a\", \"b\"], \"c\").concat(\"d\")", "anonymized": "g.inject(list0, string0).concat(string1)", "dotnet": "g.Inject(new List { \"a\", \"b\" }, \"c\").Concat(\"d\")", + "dotnet_parameterize": "g.Inject(new List { \"a\", \"b\" }, \"c\").Concat(\"d\")", "go": "g.Inject([]interface{}{\"a\", \"b\"}, \"c\").Concat(\"d\")", "groovy": "g.inject([\"a\", \"b\"], \"c\").concat(\"d\")", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(\"b\"); }}, \"c\").concat(\"d\")", @@ -21295,6 +22650,7 @@ "canonical": "g.inject(null).concat()", "anonymized": "g.inject(object0).concat()", "dotnet": "g.Inject(null).Concat()", + "dotnet_parameterize": "g.Inject(null).Concat()", "go": "g.Inject(nil).Concat()", "groovy": "g.inject(null).concat()", "java": "g.inject(null).concat()", @@ -21312,6 +22668,7 @@ "canonical": "g.inject(null, \"a\").concat(null, \"b\")", "anonymized": "g.inject(object0, string0).concat(string1, string2)", "dotnet": "g.Inject(null, \"a\").Concat(null, \"b\")", + "dotnet_parameterize": "g.Inject(null, \"a\").Concat(null, \"b\")", "go": "g.Inject(nil, \"a\").Concat(nil, \"b\")", "groovy": "g.inject(null, \"a\").concat(null, \"b\")", "java": "g.inject(null, \"a\").concat(null, \"b\")", @@ -21329,6 +22686,7 @@ "canonical": "g.inject(\"hello\", \"hi\").concat(__.V().order().by(\"name\").values(\"name\"))", "anonymized": "g.inject(string0, string1).concat(__.V().order().by(string2).values(string2))", "dotnet": "g.Inject(\"hello\", \"hi\").Concat(__.V().Order().By(\"name\").Values(\"name\"))", + "dotnet_parameterize": "g.Inject(\"hello\", \"hi\").Concat(__.V().Order().By(\"name\").Values(\"name\"))", "go": "g.Inject(\"hello\", \"hi\").Concat(gremlingo.T__.V().Order().By(\"name\").Values(\"name\"))", "groovy": "g.inject(\"hello\", \"hi\").concat(__.V().order().by(\"name\").values(\"name\"))", "java": "g.inject(\"hello\", \"hi\").concat(__.V().order().by(\"name\").values(\"name\"))", @@ -21346,6 +22704,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").concat(\" \").concat(\"person\")", "anonymized": "g.V().hasLabel(string0).values(string1).concat(string2).concat(string0)", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").Concat(\" \").Concat(\"person\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").Concat(\" \").Concat(\"person\")", "go": "g.V().HasLabel(\"person\").Values(\"name\").Concat(\" \").Concat(\"person\")", "groovy": "g.V().hasLabel(\"person\").values(\"name\").concat(\" \").concat(\"person\")", "java": "g.V().hasLabel(\"person\").values(\"name\").concat(\" \").concat(\"person\")", @@ -21363,6 +22722,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").constant(\"Mr.\").concat(__.select(\"a\"))", "anonymized": "g.V().hasLabel(string0).values(string1).as(string2).constant(string3).concat(__.select(string2))", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Constant(\"Mr.\").Concat(__.Select(\"a\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Constant(\"Mr.\").Concat(__.Select(\"a\"))", "go": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Constant(\"Mr.\").Concat(gremlingo.T__.Select(\"a\"))", "groovy": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").constant(\"Mr.\").concat(__.select(\"a\"))", "java": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").constant(\"Mr.\").concat(__.select(\"a\"))", @@ -21380,6 +22740,7 @@ "canonical": "g.V().hasLabel(\"software\").as(\"a\").values(\"name\").concat(\" uses \").concat(__.select(\"a\").values(\"lang\"))", "anonymized": "g.V().hasLabel(string0).as(string1).values(string2).concat(string3).concat(__.select(string1).values(string4))", "dotnet": "g.V().HasLabel(\"software\").As(\"a\").Values(\"name\").Concat(\" uses \").Concat(__.Select(\"a\").Values(\"lang\"))", + "dotnet_parameterize": "g.V().HasLabel(\"software\").As(\"a\").Values(\"name\").Concat(\" uses \").Concat(__.Select(\"a\").Values(\"lang\"))", "go": "g.V().HasLabel(\"software\").As(\"a\").Values(\"name\").Concat(\" uses \").Concat(gremlingo.T__.Select(\"a\").Values(\"lang\"))", "groovy": "g.V().hasLabel(\"software\").as(\"a\").values(\"name\").concat(\" uses \").concat(__.select(\"a\").values(\"lang\"))", "java": "g.V().hasLabel(\"software\").as(\"a\").values(\"name\").concat(\" uses \").concat(__.select(\"a\").values(\"lang\"))", @@ -21397,6 +22758,7 @@ "canonical": "g.V(vid1).outE().as(\"a\").V(vid1).values(\"name\").concat(__.select(\"a\").label()).concat(__.select(\"a\").inV().values(\"name\"))", "anonymized": "g.V(vid1).outE().as(string0).V(vid1).values(string1).concat(__.select(string0).label()).concat(__.select(string0).inV().values(string1))", "dotnet": "g.V(vid1).OutE().As(\"a\").V(vid1).Values(\"name\").Concat(__.Select(\"a\").Label()).Concat(__.Select(\"a\").InV().Values(\"name\"))", + "dotnet_parameterize": "g.V(vid1).OutE().As(\"a\").V(vid1).Values(\"name\").Concat(__.Select(\"a\").Label()).Concat(__.Select(\"a\").InV().Values(\"name\"))", "go": "g.V(vid1).OutE().As(\"a\").V(vid1).Values(\"name\").Concat(gremlingo.T__.Select(\"a\").Label()).Concat(gremlingo.T__.Select(\"a\").InV().Values(\"name\"))", "groovy": "g.V(vid1).outE().as(\"a\").V(vid1).values(\"name\").concat(__.select(\"a\").label()).concat(__.select(\"a\").inV().values(\"name\"))", "java": "g.V(vid1).outE().as(\"a\").V(vid1).values(\"name\").concat(__.select(\"a\").label()).concat(__.select(\"a\").inV().values(\"name\"))", @@ -21414,6 +22776,7 @@ "canonical": "g.V(vid1).outE().as(\"a\").V(vid1).values(\"name\").concat(__.select(\"a\").label(), __.select(\"a\").inV().values(\"name\"))", "anonymized": "g.V(vid1).outE().as(string0).V(vid1).values(string1).concat(__.select(string0).label(), __.select(string0).inV().values(string1))", "dotnet": "g.V(vid1).OutE().As(\"a\").V(vid1).Values(\"name\").Concat(__.Select(\"a\").Label(), __.Select(\"a\").InV().Values(\"name\"))", + "dotnet_parameterize": "g.V(vid1).OutE().As(\"a\").V(vid1).Values(\"name\").Concat(__.Select(\"a\").Label(), __.Select(\"a\").InV().Values(\"name\"))", "go": "g.V(vid1).OutE().As(\"a\").V(vid1).Values(\"name\").Concat(gremlingo.T__.Select(\"a\").Label(), gremlingo.T__.Select(\"a\").InV().Values(\"name\"))", "groovy": "g.V(vid1).outE().as(\"a\").V(vid1).values(\"name\").concat(__.select(\"a\").label(), __.select(\"a\").inV().values(\"name\"))", "java": "g.V(vid1).outE().as(\"a\").V(vid1).values(\"name\").concat(__.select(\"a\").label(), __.select(\"a\").inV().values(\"name\"))", @@ -21431,6 +22794,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -21443,6 +22807,7 @@ "canonical": "g.addV(__.constant(\"prefix_\").concat(__.V(vid1).label())).label()", "anonymized": "g.addV(__.constant(string0).concat(__.V(vid1).label())).label()", "dotnet": "g.AddV(__.Constant(\"prefix_\").Concat(__.V(vid1).Label())).Label()", + "dotnet_parameterize": "g.AddV(__.Constant(\"prefix_\").Concat(__.V(vid1).Label())).Label()", "go": "g.AddV(gremlingo.T__.Constant(\"prefix_\").Concat(gremlingo.T__.V(vid1).Label())).Label()", "groovy": "g.addV(__.constant(\"prefix_\").concat(__.V(vid1).label())).label()", "java": "g.addV(__.constant(\"prefix_\").concat(__.V(vid1).label())).label()", @@ -21460,6 +22825,7 @@ "canonical": "g.inject(null).conjoin(\"1\")", "anonymized": "g.inject(object0).conjoin(string0)", "dotnet": "g.Inject(null).Conjoin((string) \"1\")", + "dotnet_parameterize": "g.Inject(null).Conjoin((string) \"1\")", "go": "g.Inject(nil).Conjoin(\"1\")", "groovy": "g.inject(null).conjoin(\"1\")", "java": "g.inject(null).conjoin(\"1\")", @@ -21477,6 +22843,7 @@ "canonical": "g.V().values(\"name\").conjoin(\"1\")", "anonymized": "g.V().values(string0).conjoin(string1)", "dotnet": "g.V().Values(\"name\").Conjoin((string) \"1\")", + "dotnet_parameterize": "g.V().Values(\"name\").Conjoin((string) \"1\")", "go": "g.V().Values(\"name\").Conjoin(\"1\")", "groovy": "g.V().values(\"name\").conjoin(\"1\")", "java": "g.V().values(\"name\").conjoin(\"1\")", @@ -21494,6 +22861,7 @@ "canonical": "g.V().values(\"nonexistant\").fold().conjoin(\";\")", "anonymized": "g.V().values(string0).fold().conjoin(string1)", "dotnet": "g.V().Values(\"nonexistant\").Fold().Conjoin((string) \";\")", + "dotnet_parameterize": "g.V().Values(\"nonexistant\").Fold().Conjoin((string) \";\")", "go": "g.V().Values(\"nonexistant\").Fold().Conjoin(\";\")", "groovy": "g.V().values(\"nonexistant\").fold().conjoin(\";\")", "java": "g.V().values(\"nonexistant\").fold().conjoin(\";\")", @@ -21511,6 +22879,7 @@ "canonical": "g.V().values(\"name\").order().fold().conjoin(\"_\")", "anonymized": "g.V().values(string0).order().fold().conjoin(string1)", "dotnet": "g.V().Values(\"name\").Order().Fold().Conjoin((string) \"_\")", + "dotnet_parameterize": "g.V().Values(\"name\").Order().Fold().Conjoin((string) \"_\")", "go": "g.V().Values(\"name\").Order().Fold().Conjoin(\"_\")", "groovy": "g.V().values(\"name\").order().fold().conjoin(\"_\")", "java": "g.V().values(\"name\").order().fold().conjoin(\"_\")", @@ -21528,6 +22897,7 @@ "canonical": "g.V().values(\"age\").order().fold().conjoin(\";\")", "anonymized": "g.V().values(string0).order().fold().conjoin(string1)", "dotnet": "g.V().Values(\"age\").Order().Fold().Conjoin((string) \";\")", + "dotnet_parameterize": "g.V().Values(\"age\").Order().Fold().Conjoin((string) \";\")", "go": "g.V().Values(\"age\").Order().Fold().Conjoin(\";\")", "groovy": "g.V().values(\"age\").order().fold().conjoin(\";\")", "java": "g.V().values(\"age\").order().fold().conjoin(\";\")", @@ -21545,6 +22915,7 @@ "canonical": "g.V().out().path().by(__.values(\"name\").toUpper()).conjoin(\"MARKO\")", "anonymized": "g.V().out().path().by(__.values(string0).toUpper()).conjoin(string1)", "dotnet": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Conjoin((string) \"MARKO\")", + "dotnet_parameterize": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Conjoin((string) \"MARKO\")", "go": "g.V().Out().Path().By(gremlingo.T__.Values(\"name\").ToUpper()).Conjoin(\"MARKO\")", "groovy": "g.V().out().path().by(__.values(\"name\").toUpper()).conjoin(\"MARKO\")", "java": "g.V().out().path().by(__.values(\"name\").toUpper()).conjoin(\"MARKO\")", @@ -21562,6 +22933,7 @@ "canonical": "g.inject([\"marko\"]).conjoin(\"-\")", "anonymized": "g.inject(list0).conjoin(string0)", "dotnet": "g.Inject(new List { \"marko\" }).Conjoin((string) \"-\")", + "dotnet_parameterize": "g.Inject(new List { \"marko\" }).Conjoin((string) \"-\")", "go": "g.Inject([]interface{}{\"marko\"}).Conjoin(\"-\")", "groovy": "g.inject([\"marko\"]).conjoin(\"-\")", "java": "g.inject(new ArrayList() {{ add(\"marko\"); }}).conjoin(\"-\")", @@ -21579,6 +22951,7 @@ "canonical": "g.V().valueMap(\"location\").select(Column.values).unfold().order(Scope.local).conjoin(\"1\")", "anonymized": "g.V().valueMap(string0).select(Column.values).unfold().order(Scope.local).conjoin(string1)", "dotnet": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Order(Scope.Local).Conjoin((string) \"1\")", + "dotnet_parameterize": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Order(Scope.Local).Conjoin((string) \"1\")", "go": "g.V().ValueMap(\"location\").Select(gremlingo.Column.Values).Unfold().Order(gremlingo.Scope.Local).Conjoin(\"1\")", "groovy": "g.V().valueMap(\"location\").select(Column.values).unfold().order(Scope.local).conjoin(\"1\")", "java": "g.V().valueMap(\"location\").select(Column.values).unfold().order(Scope.local).conjoin(\"1\")", @@ -21596,6 +22969,7 @@ "canonical": "g.V().out().out().path().by(\"name\").conjoin(\"\")", "anonymized": "g.V().out().out().path().by(string0).conjoin(string1)", "dotnet": "g.V().Out().Out().Path().By(\"name\").Conjoin((string) \"\")", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Conjoin((string) \"\")", "go": "g.V().Out().Out().Path().By(\"name\").Conjoin(\"\")", "groovy": "g.V().out().out().path().by(\"name\").conjoin(\"\")", "java": "g.V().out().out().path().by(\"name\").conjoin(\"\")", @@ -21613,6 +22987,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).conjoin(\"xyz\")", "anonymized": "g.inject(list0).conjoin(string0)", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Conjoin((string) \"xyz\")", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Conjoin((string) \"xyz\")", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Conjoin(\"xyz\")", "groovy": "g.inject([\"a\", null, \"b\"]).conjoin(\"xyz\")", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).conjoin(\"xyz\")", @@ -21630,6 +23005,7 @@ "canonical": "g.inject([3i, \"three\"]).conjoin(\";\")", "anonymized": "g.inject(list0).conjoin(string0)", "dotnet": "g.Inject(new List { 3, \"three\" }).Conjoin((string) \";\")", + "dotnet_parameterize": "g.Inject(new List { 3, \"three\" }).Conjoin((string) \";\")", "go": "g.Inject([]interface{}{int32(3), \"three\"}).Conjoin(\";\")", "groovy": "g.inject([3i, \"three\"]).conjoin(\";\")", "java": "g.inject(new ArrayList() {{ add(3); add(\"three\"); }}).conjoin(\";\")", @@ -21647,6 +23023,7 @@ "canonical": "g.inject([null, \"a\", null, \"b\"]).conjoin(\"+\")", "anonymized": "g.inject(list0).conjoin(string0)", "dotnet": "g.Inject(new List { null, \"a\", null, \"b\" }).Conjoin((string) \"+\")", + "dotnet_parameterize": "g.Inject(new List { null, \"a\", null, \"b\" }).Conjoin((string) \"+\")", "go": "g.Inject([]interface{}{nil, \"a\", nil, \"b\"}).Conjoin(\"+\")", "groovy": "g.inject([null, \"a\", null, \"b\"]).conjoin(\"+\")", "java": "g.inject(new ArrayList() {{ add(null); add(\"a\"); add(null); add(\"b\"); }}).conjoin(\"+\")", @@ -21664,6 +23041,7 @@ "canonical": "g.inject([null, null]).conjoin(\"+\")", "anonymized": "g.inject(list0).conjoin(string0)", "dotnet": "g.Inject(new List { null, null }).Conjoin((string) \"+\")", + "dotnet_parameterize": "g.Inject(new List { null, null }).Conjoin((string) \"+\")", "go": "g.Inject([]interface{}{nil, nil}).Conjoin(\"+\")", "groovy": "g.inject([null, null]).conjoin(\"+\")", "java": "g.inject(new ArrayList() {{ add(null); add(null); }}).conjoin(\"+\")", @@ -21681,6 +23059,7 @@ "canonical": "g.V().connectedComponent().has(\"gremlin.connectedComponentVertexProgram.component\")", "anonymized": "g.V().connectedComponent().has(string0)", "dotnet": "g.V().ConnectedComponent().Has(\"gremlin.connectedComponentVertexProgram.component\")", + "dotnet_parameterize": "g.V().ConnectedComponent().Has(\"gremlin.connectedComponentVertexProgram.component\")", "go": "g.V().ConnectedComponent().Has(\"gremlin.connectedComponentVertexProgram.component\")", "groovy": "g.V().connectedComponent().has(\"gremlin.connectedComponentVertexProgram.component\")", "java": "g.V().connectedComponent().has(\"gremlin.connectedComponentVertexProgram.component\")", @@ -21698,6 +23077,7 @@ "canonical": "g.V().dedup().connectedComponent().has(\"gremlin.connectedComponentVertexProgram.component\")", "anonymized": "g.V().dedup().connectedComponent().has(string0)", "dotnet": "g.V().Dedup().ConnectedComponent().Has(\"gremlin.connectedComponentVertexProgram.component\")", + "dotnet_parameterize": "g.V().Dedup().ConnectedComponent().Has(\"gremlin.connectedComponentVertexProgram.component\")", "go": "g.V().Dedup().ConnectedComponent().Has(\"gremlin.connectedComponentVertexProgram.component\")", "groovy": "g.V().dedup().connectedComponent().has(\"gremlin.connectedComponentVertexProgram.component\")", "java": "g.V().dedup().connectedComponent().has(\"gremlin.connectedComponentVertexProgram.component\")", @@ -21715,6 +23095,7 @@ "canonical": "g.V().hasLabel(\"software\").connectedComponent().project(\"name\", \"component\").by(\"name\").by(\"gremlin.connectedComponentVertexProgram.component\")", "anonymized": "g.V().hasLabel(string0).connectedComponent().project(string1, string2).by(string1).by(string3)", "dotnet": "g.V().HasLabel(\"software\").ConnectedComponent().Project(\"name\", \"component\").By(\"name\").By(\"gremlin.connectedComponentVertexProgram.component\")", + "dotnet_parameterize": "g.V().HasLabel(\"software\").ConnectedComponent().Project(\"name\", \"component\").By(\"name\").By(\"gremlin.connectedComponentVertexProgram.component\")", "go": "g.V().HasLabel(\"software\").ConnectedComponent().Project(\"name\", \"component\").By(\"name\").By(\"gremlin.connectedComponentVertexProgram.component\")", "groovy": "g.V().hasLabel(\"software\").connectedComponent().project(\"name\", \"component\").by(\"name\").by(\"gremlin.connectedComponentVertexProgram.component\")", "java": "g.V().hasLabel(\"software\").connectedComponent().project(\"name\", \"component\").by(\"name\").by(\"gremlin.connectedComponentVertexProgram.component\")", @@ -21732,6 +23113,7 @@ "canonical": "g.V().hasLabel(\"person\").connectedComponent().with(\"~tinkerpop.connectedComponent.edges\", __.bothE(\"knows\")).with(\"~tinkerpop.connectedComponent.propertyName\", \"cluster\").project(\"name\", \"cluster\").by(\"name\").by(\"cluster\")", "anonymized": "g.V().hasLabel(string0).connectedComponent().with(string1, __.bothE(string2)).with(string3, string4).project(string5, string4).by(string5).by(string4)", "dotnet": "g.V().HasLabel(\"person\").ConnectedComponent().With(\"~tinkerpop.connectedComponent.edges\", __.BothE(\"knows\")).With(\"~tinkerpop.connectedComponent.propertyName\", \"cluster\").Project(\"name\", \"cluster\").By(\"name\").By(\"cluster\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").ConnectedComponent().With(\"~tinkerpop.connectedComponent.edges\", __.BothE(\"knows\")).With(\"~tinkerpop.connectedComponent.propertyName\", \"cluster\").Project(\"name\", \"cluster\").By(\"name\").By(\"cluster\")", "go": "g.V().HasLabel(\"person\").ConnectedComponent().With(\"~tinkerpop.connectedComponent.edges\", gremlingo.T__.BothE(\"knows\")).With(\"~tinkerpop.connectedComponent.propertyName\", \"cluster\").Project(\"name\", \"cluster\").By(\"name\").By(\"cluster\")", "groovy": "g.V().hasLabel(\"person\").connectedComponent().with(\"~tinkerpop.connectedComponent.edges\", __.bothE(\"knows\")).with(\"~tinkerpop.connectedComponent.propertyName\", \"cluster\").project(\"name\", \"cluster\").by(\"name\").by(\"cluster\")", "java": "g.V().hasLabel(\"person\").connectedComponent().with(\"~tinkerpop.connectedComponent.edges\", __.bothE(\"knows\")).with(\"~tinkerpop.connectedComponent.propertyName\", \"cluster\").project(\"name\", \"cluster\").by(\"name\").by(\"cluster\")", @@ -21749,6 +23131,7 @@ "canonical": "g.V().constant(123)", "anonymized": "g.V().constant(number0)", "dotnet": "g.V().Constant(123)", + "dotnet_parameterize": "g.V().Constant(123)", "go": "g.V().Constant(123)", "groovy": "g.V().constant(123)", "java": "g.V().constant(123)", @@ -21766,6 +23149,7 @@ "canonical": "g.V().constant(null)", "anonymized": "g.V().constant(object0)", "dotnet": "g.V().Constant(null)", + "dotnet_parameterize": "g.V().Constant(null)", "go": "g.V().Constant(nil)", "groovy": "g.V().constant(null)", "java": "g.V().constant(null)", @@ -21783,6 +23167,7 @@ "canonical": "g.V().choose(__.hasLabel(\"person\"), __.values(\"name\"), __.constant(\"inhuman\"))", "anonymized": "g.V().choose(__.hasLabel(string0), __.values(string1), __.constant(string2))", "dotnet": "g.V().Choose(__.HasLabel(\"person\"), __.Values(\"name\"), __.Constant(\"inhuman\"))", + "dotnet_parameterize": "g.V().Choose(__.HasLabel(\"person\"), __.Values(\"name\"), __.Constant(\"inhuman\"))", "go": "g.V().Choose(gremlingo.T__.HasLabel(\"person\"), gremlingo.T__.Values(\"name\"), gremlingo.T__.Constant(\"inhuman\"))", "groovy": "g.V().choose(__.hasLabel(\"person\"), __.values(\"name\"), __.constant(\"inhuman\"))", "java": "g.V().choose(__.hasLabel(\"person\"), __.values(\"name\"), __.constant(\"inhuman\"))", @@ -21800,6 +23185,7 @@ "canonical": "g.V().count()", "anonymized": "g.V().count()", "dotnet": "g.V().Count()", + "dotnet_parameterize": "g.V().Count()", "go": "g.V().Count()", "groovy": "g.V().count()", "java": "g.V().count()", @@ -21817,6 +23203,7 @@ "canonical": "g.V().out().count()", "anonymized": "g.V().out().count()", "dotnet": "g.V().Out().Count()", + "dotnet_parameterize": "g.V().Out().Count()", "go": "g.V().Out().Count()", "groovy": "g.V().out().count()", "java": "g.V().out().count()", @@ -21834,6 +23221,7 @@ "canonical": "g.V().both().both().count()", "anonymized": "g.V().both().both().count()", "dotnet": "g.V().Both().Both().Count()", + "dotnet_parameterize": "g.V().Both().Both().Count()", "go": "g.V().Both().Both().Count()", "groovy": "g.V().both().both().count()", "java": "g.V().both().both().count()", @@ -21851,6 +23239,7 @@ "canonical": "g.V().fold().count(Scope.local)", "anonymized": "g.V().fold().count(Scope.local)", "dotnet": "g.V().Fold().Count(Scope.Local)", + "dotnet_parameterize": "g.V().Fold().Count(Scope.Local)", "go": "g.V().Fold().Count(gremlingo.Scope.Local)", "groovy": "g.V().fold().count(Scope.local)", "java": "g.V().fold().count(Scope.local)", @@ -21868,6 +23257,7 @@ "canonical": "g.V().has(\"no\").count()", "anonymized": "g.V().has(string0).count()", "dotnet": "g.V().Has(\"no\").Count()", + "dotnet_parameterize": "g.V().Has(\"no\").Count()", "go": "g.V().Has(\"no\").Count()", "groovy": "g.V().has(\"no\").count()", "java": "g.V().has(\"no\").count()", @@ -21885,6 +23275,7 @@ "canonical": "g.V().where(__.in(\"knows\").out(\"created\").count().is(0)).values(\"name\")", "anonymized": "g.V().where(__.in(string0).out(string1).count().is(number0)).values(string2)", "dotnet": "g.V().Where(__.In(\"knows\").Out(\"created\").Count().Is(0)).Values(\"name\")", + "dotnet_parameterize": "g.V().Where(__.In(\"knows\").Out(\"created\").Count().Is(0)).Values(\"name\")", "go": "g.V().Where(gremlingo.T__.In(\"knows\").Out(\"created\").Count().Is(0)).Values(\"name\")", "groovy": "g.V().where(__.in(\"knows\").out(\"created\").count().is(0)).values(\"name\")", "java": "g.V().where(__.in(\"knows\").out(\"created\").count().is(0)).values(\"name\")", @@ -21902,6 +23293,7 @@ "canonical": "g.V().repeat(__.out()).times(8).count()", "anonymized": "g.V().repeat(__.out()).times(number0).count()", "dotnet": "g.V().Repeat(__.Out()).Times(8).Count()", + "dotnet_parameterize": "g.V().Repeat(__.Out()).Times(8).Count()", "go": "g.V().Repeat(gremlingo.T__.Out()).Times(8).Count()", "groovy": "g.V().repeat(__.out()).times(8).count()", "java": "g.V().repeat(__.out()).times(8).count()", @@ -21919,6 +23311,7 @@ "canonical": "g.V().repeat(__.out()).times(5).as(\"a\").out(\"writtenBy\").as(\"b\").select(\"a\", \"b\").count()", "anonymized": "g.V().repeat(__.out()).times(number0).as(string0).out(string1).as(string2).select(string0, string2).count()", "dotnet": "g.V().Repeat(__.Out()).Times(5).As(\"a\").Out(\"writtenBy\").As(\"b\").Select(\"a\", \"b\").Count()", + "dotnet_parameterize": "g.V().Repeat(__.Out()).Times(5).As(\"a\").Out(\"writtenBy\").As(\"b\").Select(\"a\", \"b\").Count()", "go": "g.V().Repeat(gremlingo.T__.Out()).Times(5).As(\"a\").Out(\"writtenBy\").As(\"b\").Select(\"a\", \"b\").Count()", "groovy": "g.V().repeat(__.out()).times(5).as(\"a\").out(\"writtenBy\").as(\"b\").select(\"a\", \"b\").count()", "java": "g.V().repeat(__.out()).times(5).as(\"a\").out(\"writtenBy\").as(\"b\").select(\"a\", \"b\").count()", @@ -21936,6 +23329,7 @@ "canonical": "g.V().repeat(__.out()).times(3).count()", "anonymized": "g.V().repeat(__.out()).times(number0).count()", "dotnet": "g.V().Repeat(__.Out()).Times(3).Count()", + "dotnet_parameterize": "g.V().Repeat(__.Out()).Times(3).Count()", "go": "g.V().Repeat(gremlingo.T__.Out()).Times(3).Count()", "groovy": "g.V().repeat(__.out()).times(3).count()", "java": "g.V().repeat(__.out()).times(3).count()", @@ -21953,6 +23347,7 @@ "canonical": "g.V().order().by(\"lang\").count()", "anonymized": "g.V().order().by(string0).count()", "dotnet": "g.V().Order().By(\"lang\").Count()", + "dotnet_parameterize": "g.V().Order().By(\"lang\").Count()", "go": "g.V().Order().By(\"lang\").Count()", "groovy": "g.V().order().by(\"lang\").count()", "java": "g.V().order().by(\"lang\").count()", @@ -21970,6 +23365,7 @@ "canonical": "g.E().sample(1).count()", "anonymized": "g.E().sample(number0).count()", "dotnet": "g.E().Sample(1).Count()", + "dotnet_parameterize": "g.E().Sample(1).Count()", "go": "g.E().Sample(1).Count()", "groovy": "g.E().sample(1).count()", "java": "g.E().sample(1).count()", @@ -21987,6 +23383,7 @@ "canonical": "g.V().sample(1).by(\"age\").count()", "anonymized": "g.V().sample(number0).by(string0).count()", "dotnet": "g.V().Sample(1).By(\"age\").Count()", + "dotnet_parameterize": "g.V().Sample(1).By(\"age\").Count()", "go": "g.V().Sample(1).By(\"age\").Count()", "groovy": "g.V().sample(1).by(\"age\").count()", "java": "g.V().sample(1).by(\"age\").count()", @@ -22004,6 +23401,7 @@ "canonical": "g.V().order().by(\"no\").count()", "anonymized": "g.V().order().by(string0).count()", "dotnet": "g.V().Order().By(\"no\").Count()", + "dotnet_parameterize": "g.V().Order().By(\"no\").Count()", "go": "g.V().Order().By(\"no\").Count()", "groovy": "g.V().order().by(\"no\").count()", "java": "g.V().order().by(\"no\").count()", @@ -22021,6 +23419,7 @@ "canonical": "g.V().group().by(T.label).count()", "anonymized": "g.V().group().by(T.label).count()", "dotnet": "g.V().Group().By(T.Label).Count()", + "dotnet_parameterize": "g.V().Group().By(T.Label).Count()", "go": "g.V().Group().By(gremlingo.T.Label).Count()", "groovy": "g.V().group().by(T.label).count()", "java": "g.V().group().by(T.label).count()", @@ -22038,6 +23437,7 @@ "canonical": "g.V().group().by(T.label).count(Scope.local)", "anonymized": "g.V().group().by(T.label).count(Scope.local)", "dotnet": "g.V().Group().By(T.Label).Count(Scope.Local)", + "dotnet_parameterize": "g.V().Group().By(T.Label).Count(Scope.Local)", "go": "g.V().Group().By(gremlingo.T.Label).Count(gremlingo.Scope.Local)", "groovy": "g.V().group().by(T.label).count(Scope.local)", "java": "g.V().group().by(T.label).count(Scope.local)", @@ -22055,6 +23455,7 @@ "canonical": "g.inject(datetime('2023-08-02T00:00:00Z'), DateTime('2023-08-02T00:00:00Z')).dateAdd(DT.hour, 2)", "anonymized": "g.inject(offsetdatetime0, offsetdatetime1).dateAdd(DT.hour, number0)", "dotnet": "g.Inject(DateTimeOffset.Parse(\"2023-08-02T00:00Z\"), DateTimeOffset.Parse(\"2023-08-02T00:00Z\")).DateAdd(DT.Hour, 2)", + "dotnet_parameterize": "g.Inject(DateTimeOffset.Parse(\"2023-08-02T00:00Z\"), DateTimeOffset.Parse(\"2023-08-02T00:00Z\")).DateAdd(DT.Hour, 2)", "go": "g.Inject(time.Date(2023, 8, 2, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), time.Date(2023, 8, 2, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0))).DateAdd(gremlingo.DT.Hour, 2)", "groovy": "g.inject(datetime('2023-08-02T00:00:00Z'), DateTime('2023-08-02T00:00:00Z')).dateAdd(DT.hour, 2)", "java": "g.inject(OffsetDateTime.parse(\"2023-08-02T00:00Z\"), OffsetDateTime.parse(\"2023-08-02T00:00Z\")).dateAdd(DT.hour, 2)", @@ -22072,6 +23473,7 @@ "canonical": "g.inject(datetime('2023-08-02T00:00:00Z'), DateTime('2023-08-02T00:00:00Z')).dateAdd(DT.hour, 2)", "anonymized": "g.inject(offsetdatetime0, offsetdatetime1).dateAdd(DT.hour, number0)", "dotnet": "g.Inject(DateTimeOffset.Parse(\"2023-08-02T00:00Z\"), DateTimeOffset.Parse(\"2023-08-02T00:00Z\")).DateAdd(DT.Hour, 2)", + "dotnet_parameterize": "g.Inject(DateTimeOffset.Parse(\"2023-08-02T00:00Z\"), DateTimeOffset.Parse(\"2023-08-02T00:00Z\")).DateAdd(DT.Hour, 2)", "go": "g.Inject(time.Date(2023, 8, 2, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), time.Date(2023, 8, 2, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0))).DateAdd(gremlingo.DT.Hour, 2)", "groovy": "g.inject(datetime('2023-08-02T00:00:00Z'), DateTime('2023-08-02T00:00:00Z')).dateAdd(DT.hour, 2)", "java": "g.inject(OffsetDateTime.parse(\"2023-08-02T00:00Z\"), OffsetDateTime.parse(\"2023-08-02T00:00Z\")).dateAdd(DT.hour, 2)", @@ -22089,6 +23491,7 @@ "canonical": "g.inject(datetime('2023-08-02T00:00:00Z'), DateTime('2023-08-02T00:00:00Z')).dateAdd(DT.hour, -1)", "anonymized": "g.inject(offsetdatetime0, offsetdatetime1).dateAdd(DT.hour, number0)", "dotnet": "g.Inject(DateTimeOffset.Parse(\"2023-08-02T00:00Z\"), DateTimeOffset.Parse(\"2023-08-02T00:00Z\")).DateAdd(DT.Hour, -1)", + "dotnet_parameterize": "g.Inject(DateTimeOffset.Parse(\"2023-08-02T00:00Z\"), DateTimeOffset.Parse(\"2023-08-02T00:00Z\")).DateAdd(DT.Hour, -1)", "go": "g.Inject(time.Date(2023, 8, 2, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), time.Date(2023, 8, 2, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0))).DateAdd(gremlingo.DT.Hour, -1)", "groovy": "g.inject(datetime('2023-08-02T00:00:00Z'), DateTime('2023-08-02T00:00:00Z')).dateAdd(DT.hour, -1)", "java": "g.inject(OffsetDateTime.parse(\"2023-08-02T00:00Z\"), OffsetDateTime.parse(\"2023-08-02T00:00Z\")).dateAdd(DT.hour, -1)", @@ -22106,6 +23509,7 @@ "canonical": "g.inject(datetime('2023-08-02T00:00:00Z'), DateTime('2023-08-02T00:00:00Z')).dateAdd(DT.minute, 10)", "anonymized": "g.inject(offsetdatetime0, offsetdatetime1).dateAdd(DT.minute, number0)", "dotnet": "g.Inject(DateTimeOffset.Parse(\"2023-08-02T00:00Z\"), DateTimeOffset.Parse(\"2023-08-02T00:00Z\")).DateAdd(DT.Minute, 10)", + "dotnet_parameterize": "g.Inject(DateTimeOffset.Parse(\"2023-08-02T00:00Z\"), DateTimeOffset.Parse(\"2023-08-02T00:00Z\")).DateAdd(DT.Minute, 10)", "go": "g.Inject(time.Date(2023, 8, 2, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), time.Date(2023, 8, 2, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0))).DateAdd(gremlingo.DT.Minute, 10)", "groovy": "g.inject(datetime('2023-08-02T00:00:00Z'), DateTime('2023-08-02T00:00:00Z')).dateAdd(DT.minute, 10)", "java": "g.inject(OffsetDateTime.parse(\"2023-08-02T00:00Z\"), OffsetDateTime.parse(\"2023-08-02T00:00Z\")).dateAdd(DT.minute, 10)", @@ -22123,6 +23527,7 @@ "canonical": "g.inject(datetime('2023-08-02T00:00:00Z'), DateTime('2023-08-02T00:00:00Z')).dateAdd(DT.second, 20)", "anonymized": "g.inject(offsetdatetime0, offsetdatetime1).dateAdd(DT.second, number0)", "dotnet": "g.Inject(DateTimeOffset.Parse(\"2023-08-02T00:00Z\"), DateTimeOffset.Parse(\"2023-08-02T00:00Z\")).DateAdd(DT.Second, 20)", + "dotnet_parameterize": "g.Inject(DateTimeOffset.Parse(\"2023-08-02T00:00Z\"), DateTimeOffset.Parse(\"2023-08-02T00:00Z\")).DateAdd(DT.Second, 20)", "go": "g.Inject(time.Date(2023, 8, 2, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), time.Date(2023, 8, 2, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0))).DateAdd(gremlingo.DT.Second, 20)", "groovy": "g.inject(datetime('2023-08-02T00:00:00Z'), DateTime('2023-08-02T00:00:00Z')).dateAdd(DT.second, 20)", "java": "g.inject(OffsetDateTime.parse(\"2023-08-02T00:00Z\"), OffsetDateTime.parse(\"2023-08-02T00:00Z\")).dateAdd(DT.second, 20)", @@ -22140,6 +23545,7 @@ "canonical": "g.inject(datetime('2023-09-06T00:00:00Z'), DateTime('2023-09-06T00:00:00Z')).dateAdd(DT.day, 11)", "anonymized": "g.inject(offsetdatetime0, offsetdatetime1).dateAdd(DT.day, number0)", "dotnet": "g.Inject(DateTimeOffset.Parse(\"2023-09-06T00:00Z\"), DateTimeOffset.Parse(\"2023-09-06T00:00Z\")).DateAdd(DT.Day, 11)", + "dotnet_parameterize": "g.Inject(DateTimeOffset.Parse(\"2023-09-06T00:00Z\"), DateTimeOffset.Parse(\"2023-09-06T00:00Z\")).DateAdd(DT.Day, 11)", "go": "g.Inject(time.Date(2023, 9, 6, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), time.Date(2023, 9, 6, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0))).DateAdd(gremlingo.DT.Day, 11)", "groovy": "g.inject(datetime('2023-09-06T00:00:00Z'), DateTime('2023-09-06T00:00:00Z')).dateAdd(DT.day, 11)", "java": "g.inject(OffsetDateTime.parse(\"2023-09-06T00:00Z\"), OffsetDateTime.parse(\"2023-09-06T00:00Z\")).dateAdd(DT.day, 11)", @@ -22157,6 +23563,7 @@ "canonical": "g.inject(datetime('2023-08-02T00:00:00Z'), DateTime('2023-08-02T00:00:00Z')).dateDiff(datetime('2023-08-09T00:00:00Z'))", "anonymized": "g.inject(offsetdatetime0, offsetdatetime1).dateDiff(offsetdatetime2)", "dotnet": "g.Inject(DateTimeOffset.Parse(\"2023-08-02T00:00Z\"), DateTimeOffset.Parse(\"2023-08-02T00:00Z\")).DateDiff(DateTimeOffset.Parse(\"2023-08-09T00:00Z\"))", + "dotnet_parameterize": "g.Inject(DateTimeOffset.Parse(\"2023-08-02T00:00Z\"), DateTimeOffset.Parse(\"2023-08-02T00:00Z\")).DateDiff(DateTimeOffset.Parse(\"2023-08-09T00:00Z\"))", "go": "g.Inject(time.Date(2023, 8, 2, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), time.Date(2023, 8, 2, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0))).DateDiff(time.Date(2023, 8, 9, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)))", "groovy": "g.inject(datetime('2023-08-02T00:00:00Z'), DateTime('2023-08-02T00:00:00Z')).dateDiff(datetime('2023-08-09T00:00:00Z'))", "java": "g.inject(OffsetDateTime.parse(\"2023-08-02T00:00Z\"), OffsetDateTime.parse(\"2023-08-02T00:00Z\")).dateDiff(OffsetDateTime.parse(\"2023-08-09T00:00Z\"))", @@ -22174,6 +23581,7 @@ "canonical": "g.inject(datetime('2023-08-08T00:00:00Z'), DateTime('2023-08-08T00:00:00Z')).dateDiff(__.constant(datetime('2023-08-01T00:00:00Z')))", "anonymized": "g.inject(offsetdatetime0, offsetdatetime1).dateDiff(__.constant(offsetdatetime2))", "dotnet": "g.Inject(DateTimeOffset.Parse(\"2023-08-08T00:00Z\"), DateTimeOffset.Parse(\"2023-08-08T00:00Z\")).DateDiff(__.Constant(DateTimeOffset.Parse(\"2023-08-01T00:00Z\")))", + "dotnet_parameterize": "g.Inject(DateTimeOffset.Parse(\"2023-08-08T00:00Z\"), DateTimeOffset.Parse(\"2023-08-08T00:00Z\")).DateDiff(__.Constant(DateTimeOffset.Parse(\"2023-08-01T00:00Z\")))", "go": "g.Inject(time.Date(2023, 8, 8, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), time.Date(2023, 8, 8, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0))).DateDiff(gremlingo.T__.Constant(time.Date(2023, 8, 1, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0))))", "groovy": "g.inject(datetime('2023-08-08T00:00:00Z'), DateTime('2023-08-08T00:00:00Z')).dateDiff(__.constant(datetime('2023-08-01T00:00:00Z')))", "java": "g.inject(OffsetDateTime.parse(\"2023-08-08T00:00Z\"), OffsetDateTime.parse(\"2023-08-08T00:00Z\")).dateDiff(__.constant(OffsetDateTime.parse(\"2023-08-01T00:00Z\")))", @@ -22191,6 +23599,7 @@ "canonical": "g.inject(datetime('2023-08-08T00:00:00Z'), DateTime('2023-08-08T00:00:00Z')).dateDiff(__.inject(datetime('2023-10-11T00:00:00Z')))", "anonymized": "g.inject(offsetdatetime0, offsetdatetime1).dateDiff(__.inject(offsetdatetime2))", "dotnet": "g.Inject(DateTimeOffset.Parse(\"2023-08-08T00:00Z\"), DateTimeOffset.Parse(\"2023-08-08T00:00Z\")).DateDiff(__.Inject(DateTimeOffset.Parse(\"2023-10-11T00:00Z\")))", + "dotnet_parameterize": "g.Inject(DateTimeOffset.Parse(\"2023-08-08T00:00Z\"), DateTimeOffset.Parse(\"2023-08-08T00:00Z\")).DateDiff(__.Inject(DateTimeOffset.Parse(\"2023-10-11T00:00Z\")))", "go": "g.Inject(time.Date(2023, 8, 8, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), time.Date(2023, 8, 8, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0))).DateDiff(gremlingo.T__.Inject(time.Date(2023, 10, 11, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0))))", "groovy": "g.inject(datetime('2023-08-08T00:00:00Z'), DateTime('2023-08-08T00:00:00Z')).dateDiff(__.inject(datetime('2023-10-11T00:00:00Z')))", "java": "g.inject(OffsetDateTime.parse(\"2023-08-08T00:00Z\"), OffsetDateTime.parse(\"2023-08-08T00:00Z\")).dateDiff(__.inject(OffsetDateTime.parse(\"2023-10-11T00:00Z\")))", @@ -22208,6 +23617,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").property(\"birthday\", \"1596326400000\").addV(\"person\").property(\"name\", \"john\").property(\"birthday\", \"597715200000\").addV(\"person\").property(\"name\", \"charlie\").property(\"birthday\", \"1012521600000\").addV(\"person\").property(\"name\", \"suzy\").property(\"birthday\", \"-131587200000\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, string4).addV(string0).property(string1, string5).property(string3, string6).addV(string0).property(string1, string7).property(string3, string8).addV(string0).property(string1, string9).property(string3, string10)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").Property(\"birthday\", \"1596326400000\").AddV((string) \"person\").Property(\"name\", \"john\").Property(\"birthday\", \"597715200000\").AddV((string) \"person\").Property(\"name\", \"charlie\").Property(\"birthday\", \"1012521600000\").AddV((string) \"person\").Property(\"name\", \"suzy\").Property(\"birthday\", \"-131587200000\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").Property(\"birthday\", \"1596326400000\").AddV((string) \"person\").Property(\"name\", \"john\").Property(\"birthday\", \"597715200000\").AddV((string) \"person\").Property(\"name\", \"charlie\").Property(\"birthday\", \"1012521600000\").AddV((string) \"person\").Property(\"name\", \"suzy\").Property(\"birthday\", \"-131587200000\")", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").Property(\"birthday\", \"1596326400000\").AddV(\"person\").Property(\"name\", \"john\").Property(\"birthday\", \"597715200000\").AddV(\"person\").Property(\"name\", \"charlie\").Property(\"birthday\", \"1012521600000\").AddV(\"person\").Property(\"name\", \"suzy\").Property(\"birthday\", \"-131587200000\")", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").property(\"birthday\", \"1596326400000\").addV(\"person\").property(\"name\", \"john\").property(\"birthday\", \"597715200000\").addV(\"person\").property(\"name\", \"charlie\").property(\"birthday\", \"1012521600000\").addV(\"person\").property(\"name\", \"suzy\").property(\"birthday\", \"-131587200000\")", "java": "g.addV(\"person\").property(\"name\", \"alice\").property(\"birthday\", \"1596326400000\").addV(\"person\").property(\"name\", \"john\").property(\"birthday\", \"597715200000\").addV(\"person\").property(\"name\", \"charlie\").property(\"birthday\", \"1012521600000\").addV(\"person\").property(\"name\", \"suzy\").property(\"birthday\", \"-131587200000\")", @@ -22220,6 +23630,7 @@ "canonical": "g.V().values(\"birthday\").asNumber().asDate().dateDiff(datetime(\"1970-01-01T00:00Z\"))", "anonymized": "g.V().values(string0).asNumber().asDate().dateDiff(offsetdatetime0)", "dotnet": "g.V().Values(\"birthday\").AsNumber().AsDate().DateDiff(DateTimeOffset.Parse(\"1970-01-01T00:00Z\"))", + "dotnet_parameterize": "g.V().Values(\"birthday\").AsNumber().AsDate().DateDiff(DateTimeOffset.Parse(\"1970-01-01T00:00Z\"))", "go": "g.V().Values(\"birthday\").AsNumber().AsDate().DateDiff(time.Date(1970, 1, 1, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)))", "groovy": "g.V().values(\"birthday\").asNumber().asDate().dateDiff(datetime(\"1970-01-01T00:00Z\"))", "java": "g.V().values(\"birthday\").asNumber().asDate().dateDiff(OffsetDateTime.parse(\"1970-01-01T00:00Z\"))", @@ -22237,6 +23648,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").property(\"birthday\", 1596326400000)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").Property(\"birthday\", 1596326400000)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").Property(\"birthday\", 1596326400000)", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").Property(\"birthday\", 1596326400000)", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").property(\"birthday\", 1596326400000)", "java": "g.addV(\"person\").property(\"name\", \"alice\").property(\"birthday\", 1596326400000)", @@ -22249,6 +23661,7 @@ "canonical": "g.V().has(\"name\", \"alice\").values(\"birthday\").asDate().dateDiff(__.constant(null))", "anonymized": "g.V().has(string0, string1).values(string2).asDate().dateDiff(__.constant(object0))", "dotnet": "g.V().Has(\"name\", \"alice\").Values(\"birthday\").AsDate().DateDiff(__.Constant(null))", + "dotnet_parameterize": "g.V().Has(\"name\", \"alice\").Values(\"birthday\").AsDate().DateDiff(__.Constant(null))", "go": "g.V().Has(\"name\", \"alice\").Values(\"birthday\").AsDate().DateDiff(gremlingo.T__.Constant(nil))", "groovy": "g.V().has(\"name\", \"alice\").values(\"birthday\").asDate().dateDiff(__.constant(null))", "java": "g.V().has(\"name\", \"alice\").values(\"birthday\").asDate().dateDiff(__.constant(null))", @@ -22266,6 +23679,7 @@ "canonical": "g.inject(null).difference(__.inject(1))", "anonymized": "g.inject(object0).difference(__.inject(number0))", "dotnet": "g.Inject(null).Difference(__.Inject(1))", + "dotnet_parameterize": "g.Inject(null).Difference(__.Inject(1))", "go": "g.Inject(nil).Difference(gremlingo.T__.Inject(1))", "groovy": "g.inject(null).difference(__.inject(1))", "java": "g.inject(null).difference(__.inject(1))", @@ -22283,6 +23697,7 @@ "canonical": "g.V().values(\"name\").difference(__.V().fold())", "anonymized": "g.V().values(string0).difference(__.V().fold())", "dotnet": "g.V().Values(\"name\").Difference(__.V().Fold())", + "dotnet_parameterize": "g.V().Values(\"name\").Difference(__.V().Fold())", "go": "g.V().Values(\"name\").Difference(gremlingo.T__.V().Fold())", "groovy": "g.V().values(\"name\").difference(__.V().fold())", "java": "g.V().values(\"name\").difference(__.V().fold())", @@ -22300,6 +23715,7 @@ "canonical": "g.V().fold().difference(__.constant(null))", "anonymized": "g.V().fold().difference(__.constant(object0))", "dotnet": "g.V().Fold().Difference(__.Constant(null))", + "dotnet_parameterize": "g.V().Fold().Difference(__.Constant(null))", "go": "g.V().Fold().Difference(gremlingo.T__.Constant(nil))", "groovy": "g.V().fold().difference(__.constant(null))", "java": "g.V().fold().difference(__.constant(null))", @@ -22317,6 +23733,7 @@ "canonical": "g.V().fold().difference(__.V())", "anonymized": "g.V().fold().difference(__.V())", "dotnet": "g.V().Fold().Difference(__.V())", + "dotnet_parameterize": "g.V().Fold().Difference(__.V())", "go": "g.V().Fold().Difference(gremlingo.T__.V())", "groovy": "g.V().fold().difference(__.V())", "java": "g.V().fold().difference(__.V())", @@ -22334,6 +23751,7 @@ "canonical": "g.V().values(\"name\").fold().difference(2)", "anonymized": "g.V().values(string0).fold().difference(number0)", "dotnet": "g.V().Values(\"name\").Fold().Difference(2)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Difference(2)", "go": "g.V().Values(\"name\").Fold().Difference(2)", "groovy": "g.V().values(\"name\").fold().difference(2)", "java": "g.V().values(\"name\").fold().difference(2)", @@ -22351,6 +23769,7 @@ "canonical": "g.V().values(\"name\").fold().difference(null)", "anonymized": "g.V().values(string0).fold().difference(object0)", "dotnet": "g.V().Values(\"name\").Fold().Difference(null)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Difference(null)", "go": "g.V().Values(\"name\").Fold().Difference(nil)", "groovy": "g.V().values(\"name\").fold().difference(null)", "java": "g.V().values(\"name\").fold().difference(null)", @@ -22368,6 +23787,7 @@ "canonical": "g.V().values(\"nonexistant\").fold().difference(__.V().values(\"name\").fold())", "anonymized": "g.V().values(string0).fold().difference(__.V().values(string1).fold())", "dotnet": "g.V().Values(\"nonexistant\").Fold().Difference(__.V().Values(\"name\").Fold())", + "dotnet_parameterize": "g.V().Values(\"nonexistant\").Fold().Difference(__.V().Values(\"name\").Fold())", "go": "g.V().Values(\"nonexistant\").Fold().Difference(gremlingo.T__.V().Values(\"name\").Fold())", "groovy": "g.V().values(\"nonexistant\").fold().difference(__.V().values(\"name\").fold())", "java": "g.V().values(\"nonexistant\").fold().difference(__.V().values(\"name\").fold())", @@ -22385,6 +23805,7 @@ "canonical": "g.V().values(\"name\").fold().difference(__.V().values(\"nonexistant\").fold())", "anonymized": "g.V().values(string0).fold().difference(__.V().values(string1).fold())", "dotnet": "g.V().Values(\"name\").Fold().Difference(__.V().Values(\"nonexistant\").Fold())", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Difference(__.V().Values(\"nonexistant\").Fold())", "go": "g.V().Values(\"name\").Fold().Difference(gremlingo.T__.V().Values(\"nonexistant\").Fold())", "groovy": "g.V().values(\"name\").fold().difference(__.V().values(\"nonexistant\").fold())", "java": "g.V().values(\"name\").fold().difference(__.V().values(\"nonexistant\").fold())", @@ -22402,6 +23823,7 @@ "canonical": "g.V().values(\"age\").fold().difference(__.V().values(\"age\").fold())", "anonymized": "g.V().values(string0).fold().difference(__.V().values(string0).fold())", "dotnet": "g.V().Values(\"age\").Fold().Difference(__.V().Values(\"age\").Fold())", + "dotnet_parameterize": "g.V().Values(\"age\").Fold().Difference(__.V().Values(\"age\").Fold())", "go": "g.V().Values(\"age\").Fold().Difference(gremlingo.T__.V().Values(\"age\").Fold())", "groovy": "g.V().values(\"age\").fold().difference(__.V().values(\"age\").fold())", "java": "g.V().values(\"age\").fold().difference(__.V().values(\"age\").fold())", @@ -22419,6 +23841,7 @@ "canonical": "g.V().out().path().by(__.values(\"name\").toUpper()).difference([\"MARKO\"])", "anonymized": "g.V().out().path().by(__.values(string0).toUpper()).difference(list0)", "dotnet": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Difference(new List { \"MARKO\" })", + "dotnet_parameterize": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Difference(new List { \"MARKO\" })", "go": "g.V().Out().Path().By(gremlingo.T__.Values(\"name\").ToUpper()).Difference([]interface{}{\"MARKO\"})", "groovy": "g.V().out().path().by(__.values(\"name\").toUpper()).difference([\"MARKO\"])", "java": "g.V().out().path().by(__.values(\"name\").toUpper()).difference(new ArrayList() {{ add(\"MARKO\"); }})", @@ -22436,6 +23859,7 @@ "canonical": "g.inject([\"marko\"]).difference(__.V().values(\"name\").fold())", "anonymized": "g.inject(list0).difference(__.V().values(string0).fold())", "dotnet": "g.Inject(new List { \"marko\" }).Difference(__.V().Values(\"name\").Fold())", + "dotnet_parameterize": "g.Inject(new List { \"marko\" }).Difference(__.V().Values(\"name\").Fold())", "go": "g.Inject([]interface{}{\"marko\"}).Difference(gremlingo.T__.V().Values(\"name\").Fold())", "groovy": "g.inject([\"marko\"]).difference(__.V().values(\"name\").fold())", "java": "g.inject(new ArrayList() {{ add(\"marko\"); }}).difference(__.V().values(\"name\").fold())", @@ -22453,6 +23877,7 @@ "canonical": "g.V().valueMap(\"location\").select(Column.values).unfold().difference([\"seattle\", \"vancouver\"])", "anonymized": "g.V().valueMap(string0).select(Column.values).unfold().difference(list0)", "dotnet": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Difference(new List { \"seattle\", \"vancouver\" })", + "dotnet_parameterize": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Difference(new List { \"seattle\", \"vancouver\" })", "go": "g.V().ValueMap(\"location\").Select(gremlingo.Column.Values).Unfold().Difference([]interface{}{\"seattle\", \"vancouver\"})", "groovy": "g.V().valueMap(\"location\").select(Column.values).unfold().difference([\"seattle\", \"vancouver\"])", "java": "g.V().valueMap(\"location\").select(Column.values).unfold().difference(new ArrayList() {{ add(\"seattle\"); add(\"vancouver\"); }})", @@ -22470,6 +23895,7 @@ "canonical": "g.V().out().out().path().by(\"name\").difference([\"ripple\"])", "anonymized": "g.V().out().out().path().by(string0).difference(list0)", "dotnet": "g.V().Out().Out().Path().By(\"name\").Difference(new List { \"ripple\" })", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Difference(new List { \"ripple\" })", "go": "g.V().Out().Out().Path().By(\"name\").Difference([]interface{}{\"ripple\"})", "groovy": "g.V().out().out().path().by(\"name\").difference([\"ripple\"])", "java": "g.V().out().out().path().by(\"name\").difference(new ArrayList() {{ add(\"ripple\"); }})", @@ -22487,6 +23913,7 @@ "canonical": "g.V().out().out().path().by(\"name\").difference([])", "anonymized": "g.V().out().out().path().by(string0).difference(list0)", "dotnet": "g.V().Out().Out().Path().By(\"name\").Difference(new List { })", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Difference(new List { })", "go": "g.V().Out().Out().Path().By(\"name\").Difference([]interface{}{})", "groovy": "g.V().out().out().path().by(\"name\").difference([])", "java": "g.V().out().out().path().by(\"name\").difference(new ArrayList() {{ }})", @@ -22504,6 +23931,7 @@ "canonical": "g.V().values(\"age\").fold().difference(__.constant(27).fold())", "anonymized": "g.V().values(string0).fold().difference(__.constant(number0).fold())", "dotnet": "g.V().Values(\"age\").Fold().Difference(__.Constant(27).Fold())", + "dotnet_parameterize": "g.V().Values(\"age\").Fold().Difference(__.Constant(27).Fold())", "go": "g.V().Values(\"age\").Fold().Difference(gremlingo.T__.Constant(27).Fold())", "groovy": "g.V().values(\"age\").fold().difference(__.constant(27).fold())", "java": "g.V().values(\"age\").fold().difference(__.constant(27).fold())", @@ -22521,6 +23949,7 @@ "canonical": "g.V().out().out().path().by(\"name\").difference([\"dave\", \"kelvin\"])", "anonymized": "g.V().out().out().path().by(string0).difference(list0)", "dotnet": "g.V().Out().Out().Path().By(\"name\").Difference(new List { \"dave\", \"kelvin\" })", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Difference(new List { \"dave\", \"kelvin\" })", "go": "g.V().Out().Out().Path().By(\"name\").Difference([]interface{}{\"dave\", \"kelvin\"})", "groovy": "g.V().out().out().path().by(\"name\").difference([\"dave\", \"kelvin\"])", "java": "g.V().out().out().path().by(\"name\").difference(new ArrayList() {{ add(\"dave\"); add(\"kelvin\"); }})", @@ -22538,6 +23967,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).difference([\"a\", \"c\"])", "anonymized": "g.inject(list0).difference(list1)", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Difference(new List { \"a\", \"c\" })", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Difference(new List { \"a\", \"c\" })", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Difference([]interface{}{\"a\", \"c\"})", "groovy": "g.inject([\"a\", null, \"b\"]).difference([\"a\", \"c\"])", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).difference(new ArrayList() {{ add(\"a\"); add(\"c\"); }})", @@ -22555,6 +23985,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).difference([\"a\", null, \"c\"])", "anonymized": "g.inject(list0).difference(list1)", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Difference(new List { \"a\", null, \"c\" })", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Difference(new List { \"a\", null, \"c\" })", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Difference([]interface{}{\"a\", nil, \"c\"})", "groovy": "g.inject([\"a\", null, \"b\"]).difference([\"a\", null, \"c\"])", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).difference(new ArrayList() {{ add(\"a\"); add(null); add(\"c\"); }})", @@ -22572,6 +24003,7 @@ "canonical": "g.inject([3, \"three\"]).difference([\"five\", \"three\", 7i])", "anonymized": "g.inject(list0).difference(list1)", "dotnet": "g.Inject(new List { 3, \"three\" }).Difference(new List { \"five\", \"three\", 7 })", + "dotnet_parameterize": "g.Inject(new List { 3, \"three\" }).Difference(new List { \"five\", \"three\", 7 })", "go": "g.Inject([]interface{}{3, \"three\"}).Difference([]interface{}{\"five\", \"three\", int32(7)})", "groovy": "g.inject([3, \"three\"]).difference([\"five\", \"three\", 7i])", "java": "g.inject(new ArrayList() {{ add(3); add(\"three\"); }}).difference(new ArrayList() {{ add(\"five\"); add(\"three\"); add(7); }})", @@ -22589,6 +24021,7 @@ "canonical": "g.inject(null).disjunct(__.inject(1))", "anonymized": "g.inject(object0).disjunct(__.inject(number0))", "dotnet": "g.Inject(null).Disjunct(__.Inject(1))", + "dotnet_parameterize": "g.Inject(null).Disjunct(__.Inject(1))", "go": "g.Inject(nil).Disjunct(gremlingo.T__.Inject(1))", "groovy": "g.inject(null).disjunct(__.inject(1))", "java": "g.inject(null).disjunct(__.inject(1))", @@ -22606,6 +24039,7 @@ "canonical": "g.V().values(\"name\").disjunct(__.V().fold())", "anonymized": "g.V().values(string0).disjunct(__.V().fold())", "dotnet": "g.V().Values(\"name\").Disjunct(__.V().Fold())", + "dotnet_parameterize": "g.V().Values(\"name\").Disjunct(__.V().Fold())", "go": "g.V().Values(\"name\").Disjunct(gremlingo.T__.V().Fold())", "groovy": "g.V().values(\"name\").disjunct(__.V().fold())", "java": "g.V().values(\"name\").disjunct(__.V().fold())", @@ -22623,6 +24057,7 @@ "canonical": "g.V().fold().disjunct(__.constant(null))", "anonymized": "g.V().fold().disjunct(__.constant(object0))", "dotnet": "g.V().Fold().Disjunct(__.Constant(null))", + "dotnet_parameterize": "g.V().Fold().Disjunct(__.Constant(null))", "go": "g.V().Fold().Disjunct(gremlingo.T__.Constant(nil))", "groovy": "g.V().fold().disjunct(__.constant(null))", "java": "g.V().fold().disjunct(__.constant(null))", @@ -22640,6 +24075,7 @@ "canonical": "g.V().fold().disjunct(__.V())", "anonymized": "g.V().fold().disjunct(__.V())", "dotnet": "g.V().Fold().Disjunct(__.V())", + "dotnet_parameterize": "g.V().Fold().Disjunct(__.V())", "go": "g.V().Fold().Disjunct(gremlingo.T__.V())", "groovy": "g.V().fold().disjunct(__.V())", "java": "g.V().fold().disjunct(__.V())", @@ -22657,6 +24093,7 @@ "canonical": "g.V().values(\"name\").fold().disjunct(2)", "anonymized": "g.V().values(string0).fold().disjunct(number0)", "dotnet": "g.V().Values(\"name\").Fold().Disjunct(2)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Disjunct(2)", "go": "g.V().Values(\"name\").Fold().Disjunct(2)", "groovy": "g.V().values(\"name\").fold().disjunct(2)", "java": "g.V().values(\"name\").fold().disjunct(2)", @@ -22674,6 +24111,7 @@ "canonical": "g.V().values(\"name\").fold().disjunct(null)", "anonymized": "g.V().values(string0).fold().disjunct(object0)", "dotnet": "g.V().Values(\"name\").Fold().Disjunct(null)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Disjunct(null)", "go": "g.V().Values(\"name\").Fold().Disjunct(nil)", "groovy": "g.V().values(\"name\").fold().disjunct(null)", "java": "g.V().values(\"name\").fold().disjunct(null)", @@ -22691,6 +24129,7 @@ "canonical": "g.V().values(\"nonexistant\").fold().disjunct(__.V().values(\"name\").fold())", "anonymized": "g.V().values(string0).fold().disjunct(__.V().values(string1).fold())", "dotnet": "g.V().Values(\"nonexistant\").Fold().Disjunct(__.V().Values(\"name\").Fold())", + "dotnet_parameterize": "g.V().Values(\"nonexistant\").Fold().Disjunct(__.V().Values(\"name\").Fold())", "go": "g.V().Values(\"nonexistant\").Fold().Disjunct(gremlingo.T__.V().Values(\"name\").Fold())", "groovy": "g.V().values(\"nonexistant\").fold().disjunct(__.V().values(\"name\").fold())", "java": "g.V().values(\"nonexistant\").fold().disjunct(__.V().values(\"name\").fold())", @@ -22708,6 +24147,7 @@ "canonical": "g.V().values(\"name\").fold().disjunct(__.V().values(\"nonexistant\").fold())", "anonymized": "g.V().values(string0).fold().disjunct(__.V().values(string1).fold())", "dotnet": "g.V().Values(\"name\").Fold().Disjunct(__.V().Values(\"nonexistant\").Fold())", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Disjunct(__.V().Values(\"nonexistant\").Fold())", "go": "g.V().Values(\"name\").Fold().Disjunct(gremlingo.T__.V().Values(\"nonexistant\").Fold())", "groovy": "g.V().values(\"name\").fold().disjunct(__.V().values(\"nonexistant\").fold())", "java": "g.V().values(\"name\").fold().disjunct(__.V().values(\"nonexistant\").fold())", @@ -22725,6 +24165,7 @@ "canonical": "g.V().values(\"age\").fold().disjunct(__.V().values(\"age\").fold())", "anonymized": "g.V().values(string0).fold().disjunct(__.V().values(string0).fold())", "dotnet": "g.V().Values(\"age\").Fold().Disjunct(__.V().Values(\"age\").Fold())", + "dotnet_parameterize": "g.V().Values(\"age\").Fold().Disjunct(__.V().Values(\"age\").Fold())", "go": "g.V().Values(\"age\").Fold().Disjunct(gremlingo.T__.V().Values(\"age\").Fold())", "groovy": "g.V().values(\"age\").fold().disjunct(__.V().values(\"age\").fold())", "java": "g.V().values(\"age\").fold().disjunct(__.V().values(\"age\").fold())", @@ -22742,6 +24183,7 @@ "canonical": "g.V().out().path().by(__.values(\"name\").toUpper()).disjunct([\"MARKO\"])", "anonymized": "g.V().out().path().by(__.values(string0).toUpper()).disjunct(list0)", "dotnet": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Disjunct(new List { \"MARKO\" })", + "dotnet_parameterize": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Disjunct(new List { \"MARKO\" })", "go": "g.V().Out().Path().By(gremlingo.T__.Values(\"name\").ToUpper()).Disjunct([]interface{}{\"MARKO\"})", "groovy": "g.V().out().path().by(__.values(\"name\").toUpper()).disjunct([\"MARKO\"])", "java": "g.V().out().path().by(__.values(\"name\").toUpper()).disjunct(new ArrayList() {{ add(\"MARKO\"); }})", @@ -22759,6 +24201,7 @@ "canonical": "g.V().valueMap(\"location\").select(Column.values).unfold().disjunct([\"seattle\", \"vancouver\"])", "anonymized": "g.V().valueMap(string0).select(Column.values).unfold().disjunct(list0)", "dotnet": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Disjunct(new List { \"seattle\", \"vancouver\" })", + "dotnet_parameterize": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Disjunct(new List { \"seattle\", \"vancouver\" })", "go": "g.V().ValueMap(\"location\").Select(gremlingo.Column.Values).Unfold().Disjunct([]interface{}{\"seattle\", \"vancouver\"})", "groovy": "g.V().valueMap(\"location\").select(Column.values).unfold().disjunct([\"seattle\", \"vancouver\"])", "java": "g.V().valueMap(\"location\").select(Column.values).unfold().disjunct(new ArrayList() {{ add(\"seattle\"); add(\"vancouver\"); }})", @@ -22776,6 +24219,7 @@ "canonical": "g.V().out().out().path().by(\"name\").disjunct([\"marko\"])", "anonymized": "g.V().out().out().path().by(string0).disjunct(list0)", "dotnet": "g.V().Out().Out().Path().By(\"name\").Disjunct(new List { \"marko\" })", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Disjunct(new List { \"marko\" })", "go": "g.V().Out().Out().Path().By(\"name\").Disjunct([]interface{}{\"marko\"})", "groovy": "g.V().out().out().path().by(\"name\").disjunct([\"marko\"])", "java": "g.V().out().out().path().by(\"name\").disjunct(new ArrayList() {{ add(\"marko\"); }})", @@ -22793,6 +24237,7 @@ "canonical": "g.V().out().out().path().by(\"name\").disjunct([\"stephen\", \"marko\"])", "anonymized": "g.V().out().out().path().by(string0).disjunct(list0)", "dotnet": "g.V().Out().Out().Path().By(\"name\").Disjunct(new List { \"stephen\", \"marko\" })", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Disjunct(new List { \"stephen\", \"marko\" })", "go": "g.V().Out().Out().Path().By(\"name\").Disjunct([]interface{}{\"stephen\", \"marko\"})", "groovy": "g.V().out().out().path().by(\"name\").disjunct([\"stephen\", \"marko\"])", "java": "g.V().out().out().path().by(\"name\").disjunct(new ArrayList() {{ add(\"stephen\"); add(\"marko\"); }})", @@ -22810,6 +24255,7 @@ "canonical": "g.V().out().out().path().by(\"name\").disjunct([\"dave\", \"kelvin\"])", "anonymized": "g.V().out().out().path().by(string0).disjunct(list0)", "dotnet": "g.V().Out().Out().Path().By(\"name\").Disjunct(new List { \"dave\", \"kelvin\" })", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Disjunct(new List { \"dave\", \"kelvin\" })", "go": "g.V().Out().Out().Path().By(\"name\").Disjunct([]interface{}{\"dave\", \"kelvin\"})", "groovy": "g.V().out().out().path().by(\"name\").disjunct([\"dave\", \"kelvin\"])", "java": "g.V().out().out().path().by(\"name\").disjunct(new ArrayList() {{ add(\"dave\"); add(\"kelvin\"); }})", @@ -22827,6 +24273,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).disjunct([\"a\", \"c\"])", "anonymized": "g.inject(list0).disjunct(list1)", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Disjunct(new List { \"a\", \"c\" })", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Disjunct(new List { \"a\", \"c\" })", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Disjunct([]interface{}{\"a\", \"c\"})", "groovy": "g.inject([\"a\", null, \"b\"]).disjunct([\"a\", \"c\"])", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).disjunct(new ArrayList() {{ add(\"a\"); add(\"c\"); }})", @@ -22844,6 +24291,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).disjunct([\"a\", null, \"c\"])", "anonymized": "g.inject(list0).disjunct(list1)", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Disjunct(new List { \"a\", null, \"c\" })", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Disjunct(new List { \"a\", null, \"c\" })", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Disjunct([]interface{}{\"a\", nil, \"c\"})", "groovy": "g.inject([\"a\", null, \"b\"]).disjunct([\"a\", null, \"c\"])", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).disjunct(new ArrayList() {{ add(\"a\"); add(null); add(\"c\"); }})", @@ -22861,6 +24309,7 @@ "canonical": "g.inject([3i, \"three\"]).disjunct([\"five\", \"three\", 7i])", "anonymized": "g.inject(list0).disjunct(list1)", "dotnet": "g.Inject(new List { 3, \"three\" }).Disjunct(new List { \"five\", \"three\", 7 })", + "dotnet_parameterize": "g.Inject(new List { 3, \"three\" }).Disjunct(new List { \"five\", \"three\", 7 })", "go": "g.Inject([]interface{}{int32(3), \"three\"}).Disjunct([]interface{}{\"five\", \"three\", int32(7)})", "groovy": "g.inject([3i, \"three\"]).disjunct([\"five\", \"three\", 7i])", "java": "g.inject(new ArrayList() {{ add(3); add(\"three\"); }}).disjunct(new ArrayList() {{ add(\"five\"); add(\"three\"); add(7); }})", @@ -22878,6 +24327,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -22895,6 +24345,7 @@ "canonical": "g.E(eid11)", "anonymized": "g.E(eid11)", "dotnet": "g.E(eid11)", + "dotnet_parameterize": "g.E(eid11)", "go": "g.E(eid11)", "groovy": "g.E(eid11)", "java": "g.E(eid11)", @@ -22912,6 +24363,7 @@ "canonical": "g.E(eid11)", "anonymized": "g.E(eid11)", "dotnet": "g.E(eid11)", + "dotnet_parameterize": "g.E(eid11)", "go": "g.E(eid11)", "groovy": "g.E(eid11)", "java": "g.E(eid11)", @@ -22929,6 +24381,7 @@ "canonical": "g.E(eid7, eid11)", "anonymized": "g.E(eid7, eid11)", "dotnet": "g.E(eid7, eid11)", + "dotnet_parameterize": "g.E(eid7, eid11)", "go": "g.E(eid7, eid11)", "groovy": "g.E(eid7, eid11)", "java": "g.E(eid7, eid11)", @@ -22946,6 +24399,7 @@ "canonical": "g.E(xx1)", "anonymized": "g.E(xx1)", "dotnet": "g.E(xx1)", + "dotnet_parameterize": "g.E(xx1)", "go": "g.E(xx1)", "groovy": "g.E(xx1)", "java": "g.E(xx1)", @@ -22963,6 +24417,7 @@ "canonical": "g.E(null)", "anonymized": "g.E(object0)", "dotnet": "g.E(null)", + "dotnet_parameterize": "g.E(null)", "go": "g.E(nil)", "groovy": "g.E(null)", "java": "g.E(null)", @@ -22980,6 +24435,7 @@ "canonical": "g.E(xx1)", "anonymized": "g.E(xx1)", "dotnet": "g.E(xx1)", + "dotnet_parameterize": "g.E(xx1)", "go": "g.E(xx1)", "groovy": "g.E(xx1)", "java": "g.E(xx1)", @@ -22997,6 +24453,7 @@ "canonical": "g.E(eid11, null)", "anonymized": "g.E(eid11, object0)", "dotnet": "g.E(eid11, null)", + "dotnet_parameterize": "g.E(eid11, null)", "go": "g.E(eid11, nil)", "groovy": "g.E(eid11, null)", "java": "g.E(eid11, null)", @@ -23014,6 +24471,7 @@ "canonical": "g.V().E(eid11)", "anonymized": "g.V().E(eid11)", "dotnet": "g.V().E(eid11)", + "dotnet_parameterize": "g.V().E(eid11)", "go": "g.V().E(eid11)", "groovy": "g.V().E(eid11)", "java": "g.V().E(eid11)", @@ -23031,6 +24489,7 @@ "canonical": "g.E(eid11).E()", "anonymized": "g.E(eid11).E()", "dotnet": "g.E(eid11).E()", + "dotnet_parameterize": "g.E(eid11).E()", "go": "g.E(eid11).E()", "groovy": "g.E(eid11).E()", "java": "g.E(eid11).E()", @@ -23048,6 +24507,7 @@ "canonical": "g.V().E(null)", "anonymized": "g.V().E(object0)", "dotnet": "g.V().E(null)", + "dotnet_parameterize": "g.V().E(null)", "go": "g.V().E(nil)", "groovy": "g.V().E(null)", "java": "g.V().E(null)", @@ -23065,6 +24525,7 @@ "canonical": "g.V().E(xx1)", "anonymized": "g.V().E(xx1)", "dotnet": "g.V().E(xx1)", + "dotnet_parameterize": "g.V().E(xx1)", "go": "g.V().E(xx1)", "groovy": "g.V().E(xx1)", "java": "g.V().E(xx1)", @@ -23082,6 +24543,7 @@ "canonical": "g.inject(1).E(eid11, null)", "anonymized": "g.inject(number0).E(eid11, object0)", "dotnet": "g.Inject(1).E(eid11, null)", + "dotnet_parameterize": "g.Inject(1).E(eid11, null)", "go": "g.Inject(1).E(eid11, nil)", "groovy": "g.inject(1).E(eid11, null)", "java": "g.inject(1).E(eid11, null)", @@ -23099,6 +24561,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"josh\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"josh\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"josh\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"josh\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"josh\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"josh\").addV(\"person\").property(\"name\", \"vadas\")", @@ -23111,6 +24574,7 @@ "canonical": "g.inject(1).coalesce(__.E().hasLabel(\"tests\"), __.addE(\"tests\").from(__.V().has(\"name\", \"josh\")).to(__.V().has(\"name\", \"vadas\")))", "anonymized": "g.inject(number0).coalesce(__.E().hasLabel(string0), __.addE(string0).from(__.V().has(string1, string2)).to(__.V().has(string1, string3)))", "dotnet": "g.Inject(1).Coalesce(__.E().HasLabel(\"tests\"), __.AddE((string) \"tests\").From(__.V().Has(\"name\", \"josh\")).To(__.V().Has(\"name\", \"vadas\")))", + "dotnet_parameterize": "g.Inject(1).Coalesce(__.E().HasLabel(\"tests\"), __.AddE((string) \"tests\").From(__.V().Has(\"name\", \"josh\")).To(__.V().Has(\"name\", \"vadas\")))", "go": "g.Inject(1).Coalesce(gremlingo.T__.E().HasLabel(\"tests\"), gremlingo.T__.AddE(\"tests\").From(gremlingo.T__.V().Has(\"name\", \"josh\")).To(gremlingo.T__.V().Has(\"name\", \"vadas\")))", "groovy": "g.inject(1).coalesce(__.E().hasLabel(\"tests\"), __.addE(\"tests\").from(__.V().has(\"name\", \"josh\")).to(__.V().has(\"name\", \"vadas\")))", "java": "g.inject(1).coalesce(__.E().hasLabel(\"tests\"), __.addE(\"tests\").from(__.V().has(\"name\", \"josh\")).to(__.V().has(\"name\", \"vadas\")))", @@ -23123,6 +24587,7 @@ "canonical": "g.E().hasLabel(\"tests\")", "anonymized": "g.E().hasLabel(string0)", "dotnet": "g.E().HasLabel(\"tests\")", + "dotnet_parameterize": "g.E().HasLabel(\"tests\")", "go": "g.E().HasLabel(\"tests\")", "groovy": "g.E().hasLabel(\"tests\")", "java": "g.E().hasLabel(\"tests\")", @@ -23140,6 +24605,7 @@ "canonical": "g.V(vid1).outE().inV()", "anonymized": "g.V(vid1).outE().inV()", "dotnet": "g.V(vid1).OutE().InV()", + "dotnet_parameterize": "g.V(vid1).OutE().InV()", "go": "g.V(vid1).OutE().InV()", "groovy": "g.V(vid1).outE().inV()", "java": "g.V(vid1).outE().inV()", @@ -23157,6 +24623,7 @@ "canonical": "g.V(vid2).inE().outV()", "anonymized": "g.V(vid2).inE().outV()", "dotnet": "g.V(vid2).InE().OutV()", + "dotnet_parameterize": "g.V(vid2).InE().OutV()", "go": "g.V(vid2).InE().OutV()", "groovy": "g.V(vid2).inE().outV()", "java": "g.V(vid2).inE().outV()", @@ -23174,6 +24641,7 @@ "canonical": "g.V().outE().has(\"weight\", 1.0).outV()", "anonymized": "g.V().outE().has(string0, number0).outV()", "dotnet": "g.V().OutE().Has(\"weight\", 1.0).OutV()", + "dotnet_parameterize": "g.V().OutE().Has(\"weight\", 1.0).OutV()", "go": "g.V().OutE().Has(\"weight\", 1.0).OutV()", "groovy": "g.V().outE().has(\"weight\", 1.0).outV()", "java": "g.V().outE().has(\"weight\", 1.0).outV()", @@ -23191,6 +24659,7 @@ "canonical": "g.V(vid1).outE().otherV()", "anonymized": "g.V(vid1).outE().otherV()", "dotnet": "g.V(vid1).OutE().OtherV()", + "dotnet_parameterize": "g.V(vid1).OutE().OtherV()", "go": "g.V(vid1).OutE().OtherV()", "groovy": "g.V(vid1).outE().otherV()", "java": "g.V(vid1).outE().otherV()", @@ -23208,6 +24677,7 @@ "canonical": "g.V(vid4).bothE().otherV()", "anonymized": "g.V(vid4).bothE().otherV()", "dotnet": "g.V(vid4).BothE().OtherV()", + "dotnet_parameterize": "g.V(vid4).BothE().OtherV()", "go": "g.V(vid4).BothE().OtherV()", "groovy": "g.V(vid4).bothE().otherV()", "java": "g.V(vid4).bothE().otherV()", @@ -23225,6 +24695,7 @@ "canonical": "g.V(vid4).bothE().has(\"weight\", P.lt(1.0)).otherV()", "anonymized": "g.V(vid4).bothE().has(string0, P.lt(number0)).otherV()", "dotnet": "g.V(vid4).BothE().Has(\"weight\", P.Lt(1.0)).OtherV()", + "dotnet_parameterize": "g.V(vid4).BothE().Has(\"weight\", P.Lt(1.0)).OtherV()", "go": "g.V(vid4).BothE().Has(\"weight\", gremlingo.P.Lt(1.0)).OtherV()", "groovy": "g.V(vid4).bothE().has(\"weight\", P.lt(1.0)).otherV()", "java": "g.V(vid4).bothE().has(\"weight\", P.lt(1.0)).otherV()", @@ -23242,6 +24713,7 @@ "canonical": "g.V(vid1).outE().otherV()", "anonymized": "g.V(vid1).outE().otherV()", "dotnet": "g.V(vid1).OutE().OtherV()", + "dotnet_parameterize": "g.V(vid1).OutE().OtherV()", "go": "g.V(vid1).OutE().OtherV()", "groovy": "g.V(vid1).outE().otherV()", "java": "g.V(vid1).outE().otherV()", @@ -23259,6 +24731,7 @@ "canonical": "g.V(vid1).outE(\"knows\").inV()", "anonymized": "g.V(vid1).outE(string0).inV()", "dotnet": "g.V(vid1).OutE(\"knows\").InV()", + "dotnet_parameterize": "g.V(vid1).OutE(\"knows\").InV()", "go": "g.V(vid1).OutE(\"knows\").InV()", "groovy": "g.V(vid1).outE(\"knows\").inV()", "java": "g.V(vid1).outE(\"knows\").inV()", @@ -23276,6 +24749,7 @@ "canonical": "g.V(vid1).outE(\"knows\", \"created\").inV()", "anonymized": "g.V(vid1).outE(string0, string1).inV()", "dotnet": "g.V(vid1).OutE(\"knows\", \"created\").InV()", + "dotnet_parameterize": "g.V(vid1).OutE(\"knows\", \"created\").InV()", "go": "g.V(vid1).OutE(\"knows\", \"created\").InV()", "groovy": "g.V(vid1).outE(\"knows\", \"created\").inV()", "java": "g.V(vid1).outE(\"knows\", \"created\").inV()", @@ -23293,6 +24767,7 @@ "canonical": "g.V(vid1).outE(\"knows\").bothV()", "anonymized": "g.V(vid1).outE(string0).bothV()", "dotnet": "g.V(vid1).OutE(\"knows\").BothV()", + "dotnet_parameterize": "g.V(vid1).OutE(\"knows\").BothV()", "go": "g.V(vid1).OutE(\"knows\").BothV()", "groovy": "g.V(vid1).outE(\"knows\").bothV()", "java": "g.V(vid1).outE(\"knows\").bothV()", @@ -23310,6 +24785,7 @@ "canonical": "g.V(vid1).outE(\"knows\").bothV().values(\"name\")", "anonymized": "g.V(vid1).outE(string0).bothV().values(string1)", "dotnet": "g.V(vid1).OutE(\"knows\").BothV().Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"knows\").BothV().Values(\"name\")", "go": "g.V(vid1).OutE(\"knows\").BothV().Values(\"name\")", "groovy": "g.V(vid1).outE(\"knows\").bothV().values(\"name\")", "java": "g.V(vid1).outE(\"knows\").bothV().values(\"name\")", @@ -23327,6 +24803,7 @@ "canonical": "g.V().toE(Direction.OUT, xx1).values(\"weight\")", "anonymized": "g.V().toE(Direction.OUT, xx1).values(string0)", "dotnet": "g.V().ToE(Direction.Out, (string) xx1).Values(\"weight\")", + "dotnet_parameterize": "g.V().ToE(Direction.Out, new GValue(\"xx1\", (string) xx1)).Values(\"weight\")", "go": "g.V().ToE(gremlingo.Direction.Out, xx1).Values(\"weight\")", "groovy": "g.V().toE(Direction.OUT, xx1).values(\"weight\")", "java": "g.V().toE(Direction.OUT, xx1).values(\"weight\")", @@ -23344,6 +24821,7 @@ "canonical": "g.V(vid2).properties().element().limit(1)", "anonymized": "g.V(vid2).properties().element().limit(number0)", "dotnet": "g.V(vid2).Properties().Element().Limit(1)", + "dotnet_parameterize": "g.V(vid2).Properties().Element().Limit(1)", "go": "g.V(vid2).Properties().Element().Limit(1)", "groovy": "g.V(vid2).properties().element().limit(1)", "java": "g.V(vid2).properties().element().limit(1)", @@ -23361,6 +24839,7 @@ "canonical": "g.V().properties().element()", "anonymized": "g.V().properties().element()", "dotnet": "g.V().Properties().Element()", + "dotnet_parameterize": "g.V().Properties().Element()", "go": "g.V().Properties().Element()", "groovy": "g.V().properties().element()", "java": "g.V().properties().element()", @@ -23378,6 +24857,7 @@ "canonical": "g.V().properties(\"age\").element()", "anonymized": "g.V().properties(string0).element()", "dotnet": "g.V().Properties(\"age\").Element()", + "dotnet_parameterize": "g.V().Properties(\"age\").Element()", "go": "g.V().Properties(\"age\").Element()", "groovy": "g.V().properties(\"age\").element()", "java": "g.V().properties(\"age\").element()", @@ -23395,6 +24875,7 @@ "canonical": "g.E(eid11).properties().element().limit(1)", "anonymized": "g.E(eid11).properties().element().limit(number0)", "dotnet": "g.E(eid11).Properties().Element().Limit(1)", + "dotnet_parameterize": "g.E(eid11).Properties().Element().Limit(1)", "go": "g.E(eid11).Properties().Element().Limit(1)", "groovy": "g.E(eid11).properties().element().limit(1)", "java": "g.E(eid11).properties().element().limit(1)", @@ -23412,6 +24893,7 @@ "canonical": "g.E().properties().element()", "anonymized": "g.E().properties().element()", "dotnet": "g.E().Properties().Element()", + "dotnet_parameterize": "g.E().Properties().Element()", "go": "g.E().Properties().Element()", "groovy": "g.E().properties().element()", "java": "g.E().properties().element()", @@ -23429,6 +24911,7 @@ "canonical": "g.V(vid7).properties().properties().element().element().limit(1)", "anonymized": "g.V(vid7).properties().properties().element().element().limit(number0)", "dotnet": "g.V(vid7).Properties().Properties().Element().Element().Limit(1)", + "dotnet_parameterize": "g.V(vid7).Properties().Properties().Element().Element().Limit(1)", "go": "g.V(vid7).Properties().Properties().Element().Element().Limit(1)", "groovy": "g.V(vid7).properties().properties().element().element().limit(1)", "java": "g.V(vid7).properties().properties().element().element().limit(1)", @@ -23446,6 +24929,7 @@ "canonical": "g.V(vid7).properties().properties().element().element()", "anonymized": "g.V(vid7).properties().properties().element().element()", "dotnet": "g.V(vid7).Properties().Properties().Element().Element()", + "dotnet_parameterize": "g.V(vid7).Properties().Properties().Element().Element()", "go": "g.V(vid7).Properties().Properties().Element().Element()", "groovy": "g.V(vid7).properties().properties().element().element()", "java": "g.V(vid7).properties().properties().element().element()", @@ -23463,6 +24947,7 @@ "canonical": "g.V().elementMap()", "anonymized": "g.V().elementMap()", "dotnet": "g.V().ElementMap()", + "dotnet_parameterize": "g.V().ElementMap()", "go": "g.V().ElementMap()", "groovy": "g.V().elementMap()", "java": "g.V().elementMap()", @@ -23480,6 +24965,7 @@ "canonical": "g.V().elementMap(\"name\", \"age\")", "anonymized": "g.V().elementMap(string0, string1)", "dotnet": "g.V().ElementMap(\"name\", \"age\")", + "dotnet_parameterize": "g.V().ElementMap(\"name\", \"age\")", "go": "g.V().ElementMap(\"name\", \"age\")", "groovy": "g.V().elementMap(\"name\", \"age\")", "java": "g.V().elementMap(\"name\", \"age\")", @@ -23497,6 +24983,7 @@ "canonical": "g.E(eid11).elementMap()", "anonymized": "g.E(eid11).elementMap()", "dotnet": "g.E(eid11).ElementMap()", + "dotnet_parameterize": "g.E(eid11).ElementMap()", "go": "g.E(eid11).ElementMap()", "groovy": "g.E(eid11).elementMap()", "java": "g.E(eid11).elementMap()", @@ -23514,6 +25001,7 @@ "canonical": "g.V().elementMap(\"name\", \"age\", null)", "anonymized": "g.V().elementMap(string0, string1, string2)", "dotnet": "g.V().ElementMap(\"name\", \"age\", null)", + "dotnet_parameterize": "g.V().ElementMap(\"name\", \"age\", null)", "go": "g.V().ElementMap(\"name\", \"age\", nil)", "groovy": "g.V().elementMap(\"name\", \"age\", null)", "java": "g.V().elementMap(\"name\", \"age\", null)", @@ -23531,6 +25019,7 @@ "canonical": "g.V().as(\"a\").flatMap(__.select(\"a\"))", "anonymized": "g.V().as(string0).flatMap(__.select(string0))", "dotnet": "g.V().As(\"a\").FlatMap(__.Select(\"a\"))", + "dotnet_parameterize": "g.V().As(\"a\").FlatMap(__.Select(\"a\"))", "go": "g.V().As(\"a\").FlatMap(gremlingo.T__.Select(\"a\"))", "groovy": "g.V().as(\"a\").flatMap(__.select(\"a\"))", "java": "g.V().as(\"a\").flatMap(__.select(\"a\"))", @@ -23548,6 +25037,7 @@ "canonical": "g.V().values(\"name\").flatMap(__.split(\"a\").unfold())", "anonymized": "g.V().values(string0).flatMap(__.split(string1).unfold())", "dotnet": "g.V().Values(\"name\").FlatMap(__.Split(\"a\").Unfold())", + "dotnet_parameterize": "g.V().Values(\"name\").FlatMap(__.Split(\"a\").Unfold())", "go": "g.V().Values(\"name\").FlatMap(gremlingo.T__.Split(\"a\").Unfold())", "groovy": "g.V().values(\"name\").flatMap(__.split(\"a\").unfold())", "java": "g.V().values(\"name\").flatMap(__.split(\"a\").unfold())", @@ -23565,6 +25055,7 @@ "canonical": "g.V().flatMap(__.out().out()).path()", "anonymized": "g.V().flatMap(__.out().out()).path()", "dotnet": "g.V().FlatMap(__.Out().Out()).Path()", + "dotnet_parameterize": "g.V().FlatMap(__.Out().Out()).Path()", "go": "g.V().FlatMap(gremlingo.T__.Out().Out()).Path()", "groovy": "g.V().flatMap(__.out().out()).path()", "java": "g.V().flatMap(__.out().out()).path()", @@ -23582,6 +25073,7 @@ "canonical": "g.V().fold()", "anonymized": "g.V().fold()", "dotnet": "g.V().Fold()", + "dotnet_parameterize": "g.V().Fold()", "go": "g.V().Fold()", "groovy": "g.V().fold()", "java": "g.V().fold()", @@ -23599,6 +25091,7 @@ "canonical": "g.V().fold().unfold()", "anonymized": "g.V().fold().unfold()", "dotnet": "g.V().Fold().Unfold()", + "dotnet_parameterize": "g.V().Fold().Unfold()", "go": "g.V().Fold().Unfold()", "groovy": "g.V().fold().unfold()", "java": "g.V().fold().unfold()", @@ -23616,6 +25109,7 @@ "canonical": "g.V().values(\"age\").fold(0, Operator.sum)", "anonymized": "g.V().values(string0).fold(number0, Operator.sum)", "dotnet": "g.V().Values(\"age\").Fold(0, Operator.Sum)", + "dotnet_parameterize": "g.V().Values(\"age\").Fold(0, Operator.Sum)", "go": "g.V().Values(\"age\").Fold(0, gremlingo.Operator.Sum)", "groovy": "g.V().values(\"age\").fold(0, Operator.sum)", "java": "g.V().values(\"age\").fold(0, Operator.sum)", @@ -23633,6 +25127,7 @@ "canonical": "g.inject([\"a\":1], [\"b\":2]).fold([:], Operator.addAll)", "anonymized": "g.inject(map0, map1).fold(map2, Operator.addAll)", "dotnet": "g.Inject(new Dictionary {{ \"a\", 1 }}, new Dictionary {{ \"b\", 2 }}).Fold(new Dictionary {}, Operator.AddAll)", + "dotnet_parameterize": "g.Inject(new Dictionary {{ \"a\", 1 }}, new Dictionary {{ \"b\", 2 }}).Fold(new Dictionary {}, Operator.AddAll)", "go": "g.Inject(map[interface{}]interface{}{\"a\": 1 }, map[interface{}]interface{}{\"b\": 2 }).Fold(map[interface{}]interface{}{ }, gremlingo.Operator.AddAll)", "groovy": "g.inject([\"a\":1], [\"b\":2]).fold([:], Operator.addAll)", "java": "g.inject(new LinkedHashMap() {{ put(\"a\", 1); }}, new LinkedHashMap() {{ put(\"b\", 2); }}).fold(new LinkedHashMap() {{ }}, Operator.addAll)", @@ -23650,6 +25145,7 @@ "canonical": "g.inject([\"a\":1], [\"b\":2], [\"b\":4]).fold([:], Operator.addAll)", "anonymized": "g.inject(map0, map1, map2).fold(map3, Operator.addAll)", "dotnet": "g.Inject(new Dictionary {{ \"a\", 1 }}, new Dictionary {{ \"b\", 2 }}, new Dictionary {{ \"b\", 4 }}).Fold(new Dictionary {}, Operator.AddAll)", + "dotnet_parameterize": "g.Inject(new Dictionary {{ \"a\", 1 }}, new Dictionary {{ \"b\", 2 }}, new Dictionary {{ \"b\", 4 }}).Fold(new Dictionary {}, Operator.AddAll)", "go": "g.Inject(map[interface{}]interface{}{\"a\": 1 }, map[interface{}]interface{}{\"b\": 2 }, map[interface{}]interface{}{\"b\": 4 }).Fold(map[interface{}]interface{}{ }, gremlingo.Operator.AddAll)", "groovy": "g.inject([\"a\":1], [\"b\":2], [\"b\":4]).fold([:], Operator.addAll)", "java": "g.inject(new LinkedHashMap() {{ put(\"a\", 1); }}, new LinkedHashMap() {{ put(\"b\", 2); }}, new LinkedHashMap() {{ put(\"b\", 4); }}).fold(new LinkedHashMap() {{ }}, Operator.addAll)", @@ -23667,6 +25163,7 @@ "canonical": "g.inject([1, 2], [3, 4]).fold()", "anonymized": "g.inject(list0, list1).fold()", "dotnet": "g.Inject(new List { 1, 2 }, new List { 3, 4 }).Fold()", + "dotnet_parameterize": "g.Inject(new List { 1, 2 }, new List { 3, 4 }).Fold()", "go": "g.Inject([]interface{}{1, 2}, []interface{}{3, 4}).Fold()", "groovy": "g.inject([1, 2], [3, 4]).fold()", "java": "g.inject(new ArrayList() {{ add(1); add(2); }}, new ArrayList() {{ add(3); add(4); }}).fold()", @@ -23684,6 +25181,7 @@ "canonical": "g.inject([1, 2], [3, 4], [5, 6]).fold()", "anonymized": "g.inject(list0, list1, list2).fold()", "dotnet": "g.Inject(new List { 1, 2 }, new List { 3, 4 }, new List { 5, 6 }).Fold()", + "dotnet_parameterize": "g.Inject(new List { 1, 2 }, new List { 3, 4 }, new List { 5, 6 }).Fold()", "go": "g.Inject([]interface{}{1, 2}, []interface{}{3, 4}, []interface{}{5, 6}).Fold()", "groovy": "g.inject([1, 2], [3, 4], [5, 6]).fold()", "java": "g.inject(new ArrayList() {{ add(1); add(2); }}, new ArrayList() {{ add(3); add(4); }}, new ArrayList() {{ add(5); add(6); }}).fold()", @@ -23701,6 +25199,7 @@ "canonical": "g.V().has(\"name\", \"marko\").format(\"Hello world\")", "anonymized": "g.V().has(string0, string1).format(string2)", "dotnet": "g.V().Has(\"name\", \"marko\").Format(\"Hello world\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Format(\"Hello world\")", "go": "g.V().Has(\"name\", \"marko\").Format(\"Hello world\")", "groovy": "g.V().has(\"name\", \"marko\").format(\"Hello world\")", "java": "g.V().has(\"name\", \"marko\").format(\"Hello world\")", @@ -23718,6 +25217,7 @@ "canonical": "g.V().format(\"%{name} is %{age} years old\")", "anonymized": "g.V().format(string0)", "dotnet": "g.V().Format(\"%{name} is %{age} years old\")", + "dotnet_parameterize": "g.V().Format(\"%{name} is %{age} years old\")", "go": "g.V().Format(\"%{name} is %{age} years old\")", "groovy": "g.V().format(\"%{name} is %{age} years old\")", "java": "g.V().format(\"%{name} is %{age} years old\")", @@ -23735,6 +25235,7 @@ "canonical": "g.inject(1).as(\"age\").V().format(\"%{name} is %{age} years old\")", "anonymized": "g.inject(number0).as(string0).V().format(string1)", "dotnet": "g.Inject(1).As(\"age\").V().Format(\"%{name} is %{age} years old\")", + "dotnet_parameterize": "g.Inject(1).As(\"age\").V().Format(\"%{name} is %{age} years old\")", "go": "g.Inject(1).As(\"age\").V().Format(\"%{name} is %{age} years old\")", "groovy": "g.inject(1).as(\"age\").V().format(\"%{name} is %{age} years old\")", "java": "g.inject(1).as(\"age\").V().format(\"%{name} is %{age} years old\")", @@ -23752,6 +25253,7 @@ "canonical": "g.V().format(\"%{_} is %{_} years old\").by(__.values(\"name\")).by(__.values(\"age\"))", "anonymized": "g.V().format(string0).by(__.values(string1)).by(__.values(string2))", "dotnet": "g.V().Format(\"%{_} is %{_} years old\").By(__.Values(\"name\")).By(__.Values(\"age\"))", + "dotnet_parameterize": "g.V().Format(\"%{_} is %{_} years old\").By(__.Values(\"name\")).By(__.Values(\"age\"))", "go": "g.V().Format(\"%{_} is %{_} years old\").By(gremlingo.T__.Values(\"name\")).By(gremlingo.T__.Values(\"age\"))", "groovy": "g.V().format(\"%{_} is %{_} years old\").by(__.values(\"name\")).by(__.values(\"age\"))", "java": "g.V().format(\"%{_} is %{_} years old\").by(__.values(\"name\")).by(__.values(\"age\"))", @@ -23769,6 +25271,7 @@ "canonical": "g.V().hasLabel(\"person\").format(\"%{_} %{_} %{_}\").by(__.constant(\"hello\")).by(__.values(\"name\"))", "anonymized": "g.V().hasLabel(string0).format(string1).by(__.constant(string2)).by(__.values(string3))", "dotnet": "g.V().HasLabel(\"person\").Format(\"%{_} %{_} %{_}\").By(__.Constant(\"hello\")).By(__.Values(\"name\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Format(\"%{_} %{_} %{_}\").By(__.Constant(\"hello\")).By(__.Values(\"name\"))", "go": "g.V().HasLabel(\"person\").Format(\"%{_} %{_} %{_}\").By(gremlingo.T__.Constant(\"hello\")).By(gremlingo.T__.Values(\"name\"))", "groovy": "g.V().hasLabel(\"person\").format(\"%{_} %{_} %{_}\").by(__.constant(\"hello\")).by(__.values(\"name\"))", "java": "g.V().hasLabel(\"person\").format(\"%{_} %{_} %{_}\").by(__.constant(\"hello\")).by(__.values(\"name\"))", @@ -23786,6 +25289,7 @@ "canonical": "g.V(vid1).format(\"%{_}\").by(__.constant(\"hello\")).by(__.values(\"name\"))", "anonymized": "g.V(vid1).format(string0).by(__.constant(string1)).by(__.values(string2))", "dotnet": "g.V(vid1).Format(\"%{_}\").By(__.Constant(\"hello\")).By(__.Values(\"name\"))", + "dotnet_parameterize": "g.V(vid1).Format(\"%{_}\").By(__.Constant(\"hello\")).By(__.Values(\"name\"))", "go": "g.V(vid1).Format(\"%{_}\").By(gremlingo.T__.Constant(\"hello\")).By(gremlingo.T__.Values(\"name\"))", "groovy": "g.V(vid1).format(\"%{_}\").by(__.constant(\"hello\")).by(__.values(\"name\"))", "java": "g.V(vid1).format(\"%{_}\").by(__.constant(\"hello\")).by(__.values(\"name\"))", @@ -23803,6 +25307,7 @@ "canonical": "g.V().format(\"%{name} has %{_} connections\").by(__.bothE().count())", "anonymized": "g.V().format(string0).by(__.bothE().count())", "dotnet": "g.V().Format(\"%{name} has %{_} connections\").By(__.BothE().Count())", + "dotnet_parameterize": "g.V().Format(\"%{name} has %{_} connections\").By(__.BothE().Count())", "go": "g.V().Format(\"%{name} has %{_} connections\").By(gremlingo.T__.BothE().Count())", "groovy": "g.V().format(\"%{name} has %{_} connections\").by(__.bothE().count())", "java": "g.V().format(\"%{name} has %{_} connections\").by(__.bothE().count())", @@ -23820,6 +25325,7 @@ "canonical": "g.V().project(\"name\", \"count\").by(__.values(\"name\")).by(__.bothE().count()).format(\"%{name} has %{count} connections\")", "anonymized": "g.V().project(string0, string1).by(__.values(string0)).by(__.bothE().count()).format(string2)", "dotnet": "g.V().Project(\"name\", \"count\").By(__.Values(\"name\")).By(__.BothE().Count()).Format(\"%{name} has %{count} connections\")", + "dotnet_parameterize": "g.V().Project(\"name\", \"count\").By(__.Values(\"name\")).By(__.BothE().Count()).Format(\"%{name} has %{count} connections\")", "go": "g.V().Project(\"name\", \"count\").By(gremlingo.T__.Values(\"name\")).By(gremlingo.T__.BothE().Count()).Format(\"%{name} has %{count} connections\")", "groovy": "g.V().project(\"name\", \"count\").by(__.values(\"name\")).by(__.bothE().count()).format(\"%{name} has %{count} connections\")", "java": "g.V().project(\"name\", \"count\").by(__.values(\"name\")).by(__.bothE().count()).format(\"%{name} has %{count} connections\")", @@ -23837,6 +25343,7 @@ "canonical": "g.V().elementMap().format(\"%{name} is %{age} years old\")", "anonymized": "g.V().elementMap().format(string0)", "dotnet": "g.V().ElementMap().Format(\"%{name} is %{age} years old\")", + "dotnet_parameterize": "g.V().ElementMap().Format(\"%{name} is %{age} years old\")", "go": "g.V().ElementMap().Format(\"%{name} is %{age} years old\")", "groovy": "g.V().elementMap().format(\"%{name} is %{age} years old\")", "java": "g.V().elementMap().format(\"%{name} is %{age} years old\")", @@ -23854,6 +25361,7 @@ "canonical": "g.V().hasLabel(\"person\").as(\"a\").values(\"name\").as(\"p1\").select(\"a\").in(\"knows\").format(\"%{p1} knows %{name}\")", "anonymized": "g.V().hasLabel(string0).as(string1).values(string2).as(string3).select(string1).in(string4).format(string5)", "dotnet": "g.V().HasLabel(\"person\").As(\"a\").Values(\"name\").As(\"p1\").Select(\"a\").In(\"knows\").Format(\"%{p1} knows %{name}\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").As(\"a\").Values(\"name\").As(\"p1\").Select(\"a\").In(\"knows\").Format(\"%{p1} knows %{name}\")", "go": "g.V().HasLabel(\"person\").As(\"a\").Values(\"name\").As(\"p1\").Select(\"a\").In(\"knows\").Format(\"%{p1} knows %{name}\")", "groovy": "g.V().hasLabel(\"person\").as(\"a\").values(\"name\").as(\"p1\").select(\"a\").in(\"knows\").format(\"%{p1} knows %{name}\")", "java": "g.V().hasLabel(\"person\").as(\"a\").values(\"name\").as(\"p1\").select(\"a\").in(\"knows\").format(\"%{p1} knows %{name}\")", @@ -23871,6 +25379,7 @@ "canonical": "g.V().as(\"s\").label().as(\"subject\").select(\"s\").outE().as(\"p\").label().as(\"predicate\").select(\"p\").inV().label().as(\"object\").format(\"%{subject} %{predicate} %{object}\")", "anonymized": "g.V().as(string0).label().as(string1).select(string0).outE().as(string2).label().as(string3).select(string2).inV().label().as(string4).format(string5)", "dotnet": "g.V().As(\"s\").Label().As(\"subject\").Select(\"s\").OutE().As(\"p\").Label().As(\"predicate\").Select(\"p\").InV().Label().As(\"object\").Format(\"%{subject} %{predicate} %{object}\")", + "dotnet_parameterize": "g.V().As(\"s\").Label().As(\"subject\").Select(\"s\").OutE().As(\"p\").Label().As(\"predicate\").Select(\"p\").InV().Label().As(\"object\").Format(\"%{subject} %{predicate} %{object}\")", "go": "g.V().As(\"s\").Label().As(\"subject\").Select(\"s\").OutE().As(\"p\").Label().As(\"predicate\").Select(\"p\").InV().Label().As(\"object\").Format(\"%{subject} %{predicate} %{object}\")", "groovy": "g.V().as(\"s\").label().as(\"subject\").select(\"s\").outE().as(\"p\").label().as(\"predicate\").select(\"p\").inV().label().as(\"object\").format(\"%{subject} %{predicate} %{object}\")", "java": "g.V().as(\"s\").label().as(\"subject\").select(\"s\").outE().as(\"p\").label().as(\"predicate\").select(\"p\").inV().label().as(\"object\").format(\"%{subject} %{predicate} %{object}\")", @@ -23888,6 +25397,7 @@ "canonical": "g.V().hasLabel(\"software\").index().unfold()", "anonymized": "g.V().hasLabel(string0).index().unfold()", "dotnet": "g.V().HasLabel(\"software\").Index().Unfold()", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Index().Unfold()", "go": "g.V().HasLabel(\"software\").Index().Unfold()", "groovy": "g.V().hasLabel(\"software\").index().unfold()", "java": "g.V().hasLabel(\"software\").index().unfold()", @@ -23905,6 +25415,7 @@ "canonical": "g.V().hasLabel(\"software\").order().by(\"name\").index().with(WithOptions.indexer, WithOptions.map)", "anonymized": "g.V().hasLabel(string0).order().by(string1).index().with(WithOptions.indexer, WithOptions.map)", "dotnet": "g.V().HasLabel(\"software\").Order().By(\"name\").Index().With(WithOptions.Indexer, WithOptions.Map)", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Order().By(\"name\").Index().With(WithOptions.Indexer, WithOptions.Map)", "go": "g.V().HasLabel(\"software\").Order().By(\"name\").Index().With(gremlingo.WithOptions.Indexer, gremlingo.WithOptions.Map)", "groovy": "g.V().hasLabel(\"software\").order().by(\"name\").index().with(WithOptions.indexer, WithOptions.map)", "java": "g.V().hasLabel(\"software\").order().by(\"name\").index().with(WithOptions.indexer, WithOptions.map)", @@ -23922,6 +25433,7 @@ "canonical": "g.V().hasLabel(\"software\").values(\"name\").fold().order(Scope.local).index().unfold().order().by(__.tail(Scope.local, 1))", "anonymized": "g.V().hasLabel(string0).values(string1).fold().order(Scope.local).index().unfold().order().by(__.tail(Scope.local, number0))", "dotnet": "g.V().HasLabel(\"software\").Values(\"name\").Fold().Order(Scope.Local).Index().Unfold().Order().By(__.Tail(Scope.Local, 1))", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Values(\"name\").Fold().Order(Scope.Local).Index().Unfold().Order().By(__.Tail(Scope.Local, 1))", "go": "g.V().HasLabel(\"software\").Values(\"name\").Fold().Order(gremlingo.Scope.Local).Index().Unfold().Order().By(gremlingo.T__.Tail(gremlingo.Scope.Local, 1))", "groovy": "g.V().hasLabel(\"software\").values(\"name\").fold().order(Scope.local).index().unfold().order().by(__.tail(Scope.local, 1))", "java": "g.V().hasLabel(\"software\").values(\"name\").fold().order(Scope.local).index().unfold().order().by(__.tail(Scope.local, 1))", @@ -23939,6 +25451,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").fold().order(Scope.local).index().with(WithOptions.indexer, WithOptions.map)", "anonymized": "g.V().hasLabel(string0).values(string1).fold().order(Scope.local).index().with(WithOptions.indexer, WithOptions.map)", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").Fold().Order(Scope.Local).Index().With(WithOptions.Indexer, WithOptions.Map)", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").Fold().Order(Scope.Local).Index().With(WithOptions.Indexer, WithOptions.Map)", "go": "g.V().HasLabel(\"person\").Values(\"name\").Fold().Order(gremlingo.Scope.Local).Index().With(gremlingo.WithOptions.Indexer, gremlingo.WithOptions.Map)", "groovy": "g.V().hasLabel(\"person\").values(\"name\").fold().order(Scope.local).index().with(WithOptions.indexer, WithOptions.map)", "java": "g.V().hasLabel(\"person\").values(\"name\").fold().order(Scope.local).index().with(WithOptions.indexer, WithOptions.map)", @@ -23956,6 +25469,7 @@ "canonical": "g.V(vid1).values(\"age\").index().unfold().unfold()", "anonymized": "g.V(vid1).values(string0).index().unfold().unfold()", "dotnet": "g.V(vid1).Values(\"age\").Index().Unfold().Unfold()", + "dotnet_parameterize": "g.V(vid1).Values(\"age\").Index().Unfold().Unfold()", "go": "g.V(vid1).Values(\"age\").Index().Unfold().Unfold()", "groovy": "g.V(vid1).values(\"age\").index().unfold().unfold()", "java": "g.V(vid1).values(\"age\").index().unfold().unfold()", @@ -23973,6 +25487,7 @@ "canonical": "g.inject(null).intersect(__.inject(1))", "anonymized": "g.inject(object0).intersect(__.inject(number0))", "dotnet": "g.Inject(null).Intersect(__.Inject(1))", + "dotnet_parameterize": "g.Inject(null).Intersect(__.Inject(1))", "go": "g.Inject(nil).Intersect(gremlingo.T__.Inject(1))", "groovy": "g.inject(null).intersect(__.inject(1))", "java": "g.inject(null).intersect(__.inject(1))", @@ -23990,6 +25505,7 @@ "canonical": "g.V().values(\"name\").intersect(__.V().fold())", "anonymized": "g.V().values(string0).intersect(__.V().fold())", "dotnet": "g.V().Values(\"name\").Intersect(__.V().Fold())", + "dotnet_parameterize": "g.V().Values(\"name\").Intersect(__.V().Fold())", "go": "g.V().Values(\"name\").Intersect(gremlingo.T__.V().Fold())", "groovy": "g.V().values(\"name\").intersect(__.V().fold())", "java": "g.V().values(\"name\").intersect(__.V().fold())", @@ -24007,6 +25523,7 @@ "canonical": "g.V().fold().intersect(__.constant(null))", "anonymized": "g.V().fold().intersect(__.constant(object0))", "dotnet": "g.V().Fold().Intersect(__.Constant(null))", + "dotnet_parameterize": "g.V().Fold().Intersect(__.Constant(null))", "go": "g.V().Fold().Intersect(gremlingo.T__.Constant(nil))", "groovy": "g.V().fold().intersect(__.constant(null))", "java": "g.V().fold().intersect(__.constant(null))", @@ -24024,6 +25541,7 @@ "canonical": "g.V().fold().intersect(__.V())", "anonymized": "g.V().fold().intersect(__.V())", "dotnet": "g.V().Fold().Intersect(__.V())", + "dotnet_parameterize": "g.V().Fold().Intersect(__.V())", "go": "g.V().Fold().Intersect(gremlingo.T__.V())", "groovy": "g.V().fold().intersect(__.V())", "java": "g.V().fold().intersect(__.V())", @@ -24041,6 +25559,7 @@ "canonical": "g.V().values(\"name\").fold().intersect(2)", "anonymized": "g.V().values(string0).fold().intersect(number0)", "dotnet": "g.V().Values(\"name\").Fold().Intersect(2)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Intersect(2)", "go": "g.V().Values(\"name\").Fold().Intersect(2)", "groovy": "g.V().values(\"name\").fold().intersect(2)", "java": "g.V().values(\"name\").fold().intersect(2)", @@ -24058,6 +25577,7 @@ "canonical": "g.V().values(\"name\").fold().intersect(null)", "anonymized": "g.V().values(string0).fold().intersect(object0)", "dotnet": "g.V().Values(\"name\").Fold().Intersect(null)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Intersect(null)", "go": "g.V().Values(\"name\").Fold().Intersect(nil)", "groovy": "g.V().values(\"name\").fold().intersect(null)", "java": "g.V().values(\"name\").fold().intersect(null)", @@ -24075,6 +25595,7 @@ "canonical": "g.V().values(\"nonexistant\").fold().intersect(__.V().values(\"name\").fold())", "anonymized": "g.V().values(string0).fold().intersect(__.V().values(string1).fold())", "dotnet": "g.V().Values(\"nonexistant\").Fold().Intersect(__.V().Values(\"name\").Fold())", + "dotnet_parameterize": "g.V().Values(\"nonexistant\").Fold().Intersect(__.V().Values(\"name\").Fold())", "go": "g.V().Values(\"nonexistant\").Fold().Intersect(gremlingo.T__.V().Values(\"name\").Fold())", "groovy": "g.V().values(\"nonexistant\").fold().intersect(__.V().values(\"name\").fold())", "java": "g.V().values(\"nonexistant\").fold().intersect(__.V().values(\"name\").fold())", @@ -24092,6 +25613,7 @@ "canonical": "g.V().values(\"name\").fold().intersect(__.V().values(\"nonexistant\").fold())", "anonymized": "g.V().values(string0).fold().intersect(__.V().values(string1).fold())", "dotnet": "g.V().Values(\"name\").Fold().Intersect(__.V().Values(\"nonexistant\").Fold())", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Intersect(__.V().Values(\"nonexistant\").Fold())", "go": "g.V().Values(\"name\").Fold().Intersect(gremlingo.T__.V().Values(\"nonexistant\").Fold())", "groovy": "g.V().values(\"name\").fold().intersect(__.V().values(\"nonexistant\").fold())", "java": "g.V().values(\"name\").fold().intersect(__.V().values(\"nonexistant\").fold())", @@ -24109,6 +25631,7 @@ "canonical": "g.V().values(\"age\").fold().intersect(__.V().values(\"age\").fold()).order(Scope.local)", "anonymized": "g.V().values(string0).fold().intersect(__.V().values(string0).fold()).order(Scope.local)", "dotnet": "g.V().Values(\"age\").Fold().Intersect(__.V().Values(\"age\").Fold()).Order(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"age\").Fold().Intersect(__.V().Values(\"age\").Fold()).Order(Scope.Local)", "go": "g.V().Values(\"age\").Fold().Intersect(gremlingo.T__.V().Values(\"age\").Fold()).Order(gremlingo.Scope.Local)", "groovy": "g.V().values(\"age\").fold().intersect(__.V().values(\"age\").fold()).order(Scope.local)", "java": "g.V().values(\"age\").fold().intersect(__.V().values(\"age\").fold()).order(Scope.local)", @@ -24126,6 +25649,7 @@ "canonical": "g.V().out().path().by(__.values(\"name\").toUpper()).intersect([\"MARKO\"])", "anonymized": "g.V().out().path().by(__.values(string0).toUpper()).intersect(list0)", "dotnet": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Intersect(new List { \"MARKO\" })", + "dotnet_parameterize": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Intersect(new List { \"MARKO\" })", "go": "g.V().Out().Path().By(gremlingo.T__.Values(\"name\").ToUpper()).Intersect([]interface{}{\"MARKO\"})", "groovy": "g.V().out().path().by(__.values(\"name\").toUpper()).intersect([\"MARKO\"])", "java": "g.V().out().path().by(__.values(\"name\").toUpper()).intersect(new ArrayList() {{ add(\"MARKO\"); }})", @@ -24143,6 +25667,7 @@ "canonical": "g.inject([\"marko\"]).intersect(__.V().values(\"name\").fold())", "anonymized": "g.inject(list0).intersect(__.V().values(string0).fold())", "dotnet": "g.Inject(new List { \"marko\" }).Intersect(__.V().Values(\"name\").Fold())", + "dotnet_parameterize": "g.Inject(new List { \"marko\" }).Intersect(__.V().Values(\"name\").Fold())", "go": "g.Inject([]interface{}{\"marko\"}).Intersect(gremlingo.T__.V().Values(\"name\").Fold())", "groovy": "g.inject([\"marko\"]).intersect(__.V().values(\"name\").fold())", "java": "g.inject(new ArrayList() {{ add(\"marko\"); }}).intersect(__.V().values(\"name\").fold())", @@ -24160,6 +25685,7 @@ "canonical": "g.V().valueMap(\"location\").select(Column.values).unfold().intersect([\"seattle\", \"vancouver\"])", "anonymized": "g.V().valueMap(string0).select(Column.values).unfold().intersect(list0)", "dotnet": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Intersect(new List { \"seattle\", \"vancouver\" })", + "dotnet_parameterize": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Intersect(new List { \"seattle\", \"vancouver\" })", "go": "g.V().ValueMap(\"location\").Select(gremlingo.Column.Values).Unfold().Intersect([]interface{}{\"seattle\", \"vancouver\"})", "groovy": "g.V().valueMap(\"location\").select(Column.values).unfold().intersect([\"seattle\", \"vancouver\"])", "java": "g.V().valueMap(\"location\").select(Column.values).unfold().intersect(new ArrayList() {{ add(\"seattle\"); add(\"vancouver\"); }})", @@ -24177,6 +25703,7 @@ "canonical": "g.V().values(\"age\").fold().intersect(__.constant(27).fold())", "anonymized": "g.V().values(string0).fold().intersect(__.constant(number0).fold())", "dotnet": "g.V().Values(\"age\").Fold().Intersect(__.Constant(27).Fold())", + "dotnet_parameterize": "g.V().Values(\"age\").Fold().Intersect(__.Constant(27).Fold())", "go": "g.V().Values(\"age\").Fold().Intersect(gremlingo.T__.Constant(27).Fold())", "groovy": "g.V().values(\"age\").fold().intersect(__.constant(27).fold())", "java": "g.V().values(\"age\").fold().intersect(__.constant(27).fold())", @@ -24194,6 +25721,7 @@ "canonical": "g.V().out().out().path().by(\"name\").intersect([\"dave\", \"kelvin\"])", "anonymized": "g.V().out().out().path().by(string0).intersect(list0)", "dotnet": "g.V().Out().Out().Path().By(\"name\").Intersect(new List { \"dave\", \"kelvin\" })", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Intersect(new List { \"dave\", \"kelvin\" })", "go": "g.V().Out().Out().Path().By(\"name\").Intersect([]interface{}{\"dave\", \"kelvin\"})", "groovy": "g.V().out().out().path().by(\"name\").intersect([\"dave\", \"kelvin\"])", "java": "g.V().out().out().path().by(\"name\").intersect(new ArrayList() {{ add(\"dave\"); add(\"kelvin\"); }})", @@ -24211,6 +25739,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).intersect([\"a\", \"c\"])", "anonymized": "g.inject(list0).intersect(list1)", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Intersect(new List { \"a\", \"c\" })", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Intersect(new List { \"a\", \"c\" })", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Intersect([]interface{}{\"a\", \"c\"})", "groovy": "g.inject([\"a\", null, \"b\"]).intersect([\"a\", \"c\"])", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).intersect(new ArrayList() {{ add(\"a\"); add(\"c\"); }})", @@ -24228,6 +25757,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).intersect([\"a\", null, \"c\"])", "anonymized": "g.inject(list0).intersect(list1)", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Intersect(new List { \"a\", null, \"c\" })", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Intersect(new List { \"a\", null, \"c\" })", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Intersect([]interface{}{\"a\", nil, \"c\"})", "groovy": "g.inject([\"a\", null, \"b\"]).intersect([\"a\", null, \"c\"])", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).intersect(new ArrayList() {{ add(\"a\"); add(null); add(\"c\"); }})", @@ -24245,6 +25775,7 @@ "canonical": "g.inject([3, \"three\"]).intersect([\"five\", \"three\", 7i])", "anonymized": "g.inject(list0).intersect(list1)", "dotnet": "g.Inject(new List { 3, \"three\" }).Intersect(new List { \"five\", \"three\", 7 })", + "dotnet_parameterize": "g.Inject(new List { 3, \"three\" }).Intersect(new List { \"five\", \"three\", 7 })", "go": "g.Inject([]interface{}{3, \"three\"}).Intersect([]interface{}{\"five\", \"three\", int32(7)})", "groovy": "g.inject([3, \"three\"]).intersect([\"five\", \"three\", 7i])", "java": "g.inject(new ArrayList() {{ add(3); add(\"three\"); }}).intersect(new ArrayList() {{ add(\"five\"); add(\"three\"); add(7); }})", @@ -24262,6 +25793,7 @@ "canonical": "g.inject(\" feature\", \" one test\", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").lTrim()", "anonymized": "g.inject(string0, string1, object0, string2, string3, string4, string5, string6, string7).lTrim()", "dotnet": "g.Inject(\" feature\", \" one test\", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").LTrim()", + "dotnet_parameterize": "g.Inject(\" feature\", \" one test\", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").LTrim()", "go": "g.Inject(\" feature\", \" one test\", nil, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").LTrim()", "groovy": "g.inject(\" feature\", \" one test\", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").lTrim()", "java": "g.inject(\" feature\", \" one test\", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").lTrim()", @@ -24279,6 +25811,7 @@ "canonical": "g.inject([\" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\"]).lTrim(Scope.local)", "anonymized": "g.inject(list0).lTrim(Scope.local)", "dotnet": "g.Inject(new List { \" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\" }).LTrim(Scope.Local)", + "dotnet_parameterize": "g.Inject(new List { \" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\" }).LTrim(Scope.Local)", "go": "g.Inject([]interface{}{\" feature \", \" one test \", nil, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\"}).LTrim(gremlingo.Scope.Local)", "groovy": "g.inject([\" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\"]).lTrim(Scope.local)", "java": "g.inject(new ArrayList() {{ add(\" feature \"); add(\" one test \"); add(null); add(\"\"); add(\" \"); add(\"\u3000abc\"); add(\"abc\u3000\"); add(\"\u3000abc\u3000\"); add(\"\u3000\u3000\"); }}).lTrim(Scope.local)", @@ -24296,6 +25829,7 @@ "canonical": "g.inject(\" feature \").lTrim()", "anonymized": "g.inject(string0).lTrim()", "dotnet": "g.Inject(\" feature \").LTrim()", + "dotnet_parameterize": "g.Inject(\" feature \").LTrim()", "go": "g.Inject(\" feature \").LTrim()", "groovy": "g.inject(\" feature \").lTrim()", "java": "g.inject(\" feature \").lTrim()", @@ -24313,6 +25847,7 @@ "canonical": "g.inject([\"a\", \"b\"]).lTrim()", "anonymized": "g.inject(list0).lTrim()", "dotnet": "g.Inject(new List { \"a\", \"b\" }).LTrim()", + "dotnet_parameterize": "g.Inject(new List { \"a\", \"b\" }).LTrim()", "go": "g.Inject([]interface{}{\"a\", \"b\"}).LTrim()", "groovy": "g.inject([\"a\", \"b\"]).lTrim()", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(\"b\"); }}).lTrim()", @@ -24330,6 +25865,7 @@ "canonical": "g.inject([1, 2]).lTrim(Scope.local)", "anonymized": "g.inject(list0).lTrim(Scope.local)", "dotnet": "g.Inject(new List { 1, 2 }).LTrim(Scope.Local)", + "dotnet_parameterize": "g.Inject(new List { 1, 2 }).LTrim(Scope.Local)", "go": "g.Inject([]interface{}{1, 2}).LTrim(gremlingo.Scope.Local)", "groovy": "g.inject([1, 2]).lTrim(Scope.local)", "java": "g.inject(new ArrayList() {{ add(1); add(2); }}).lTrim(Scope.local)", @@ -24347,6 +25883,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string4).addV(string0).property(string1, string5).property(string3, number1).as(string6).addV(string7).property(string1, string8).property(string9, string10).as(string11).addV(string0).property(string1, string12).property(string3, number2).as(string13).addV(string7).property(string1, string14).property(string9, string10).as(string15).addV(string0).property(string1, string16).property(string3, number3).as(string17).addE(string18).from(string4).to(string6).property(string19, double0).addE(string18).from(string4).to(string13).property(string19, double1).addE(string20).from(string4).to(string11).property(string19, double2).addE(string20).from(string13).to(string15).property(string19, double1).addE(string20).from(string13).to(string11).property(string19, double2).addE(string20).from(string16).to(string11).property(string19, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -24359,6 +25896,7 @@ "canonical": "g.V().values(\"name\").lTrim()", "anonymized": "g.V().values(string0).lTrim()", "dotnet": "g.V().Values(\"name\").LTrim()", + "dotnet_parameterize": "g.V().Values(\"name\").LTrim()", "go": "g.V().Values(\"name\").LTrim()", "groovy": "g.V().values(\"name\").lTrim()", "java": "g.V().values(\"name\").lTrim()", @@ -24376,6 +25914,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string4).addV(string0).property(string1, string5).property(string3, number1).as(string6).addV(string7).property(string1, string8).property(string9, string10).as(string11).addV(string0).property(string1, string12).property(string3, number2).as(string13).addV(string7).property(string1, string14).property(string9, string10).as(string15).addV(string0).property(string1, string16).property(string3, number3).as(string17).addE(string18).from(string4).to(string6).property(string19, double0).addE(string18).from(string4).to(string13).property(string19, double1).addE(string20).from(string4).to(string11).property(string19, double2).addE(string20).from(string13).to(string15).property(string19, double1).addE(string20).from(string13).to(string11).property(string19, double2).addE(string20).from(string16).to(string11).property(string19, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -24388,6 +25927,7 @@ "canonical": "g.V().values(\"name\").order().fold().lTrim(Scope.local)", "anonymized": "g.V().values(string0).order().fold().lTrim(Scope.local)", "dotnet": "g.V().Values(\"name\").Order().Fold().LTrim(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"name\").Order().Fold().LTrim(Scope.Local)", "go": "g.V().Values(\"name\").Order().Fold().LTrim(gremlingo.Scope.Local)", "groovy": "g.V().values(\"name\").order().fold().lTrim(Scope.local)", "java": "g.V().values(\"name\").order().fold().lTrim(Scope.local)", @@ -24405,6 +25945,7 @@ "canonical": "g.inject(\"feature\", \"test\", null).length()", "anonymized": "g.inject(string0, string1, object0).length()", "dotnet": "g.Inject(\"feature\", \"test\", null).Length()", + "dotnet_parameterize": "g.Inject(\"feature\", \"test\", null).Length()", "go": "g.Inject(\"feature\", \"test\", nil).Length()", "groovy": "g.inject(\"feature\", \"test\", null).length()", "java": "g.inject(\"feature\", \"test\", null).length()", @@ -24422,6 +25963,7 @@ "canonical": "g.inject(\"feature\", \"test\", null).length(Scope.local)", "anonymized": "g.inject(string0, string1, object0).length(Scope.local)", "dotnet": "g.Inject(\"feature\", \"test\", null).Length(Scope.Local)", + "dotnet_parameterize": "g.Inject(\"feature\", \"test\", null).Length(Scope.Local)", "go": "g.Inject(\"feature\", \"test\", nil).Length(gremlingo.Scope.Local)", "groovy": "g.inject(\"feature\", \"test\", null).length(Scope.local)", "java": "g.inject(\"feature\", \"test\", null).length(Scope.local)", @@ -24439,6 +25981,7 @@ "canonical": "g.inject([\"a\", \"b\"]).length()", "anonymized": "g.inject(list0).length()", "dotnet": "g.Inject(new List { \"a\", \"b\" }).Length()", + "dotnet_parameterize": "g.Inject(new List { \"a\", \"b\" }).Length()", "go": "g.Inject([]interface{}{\"a\", \"b\"}).Length()", "groovy": "g.inject([\"a\", \"b\"]).length()", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(\"b\"); }}).length()", @@ -24456,6 +25999,7 @@ "canonical": "g.V().values(\"name\").length()", "anonymized": "g.V().values(string0).length()", "dotnet": "g.V().Values(\"name\").Length()", + "dotnet_parameterize": "g.V().Values(\"name\").Length()", "go": "g.V().Values(\"name\").Length()", "groovy": "g.V().values(\"name\").length()", "java": "g.V().values(\"name\").length()", @@ -24473,6 +26017,7 @@ "canonical": "g.V().values(\"name\").order().fold().length(Scope.local)", "anonymized": "g.V().values(string0).order().fold().length(Scope.local)", "dotnet": "g.V().Values(\"name\").Order().Fold().Length(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"name\").Order().Fold().Length(Scope.Local)", "go": "g.V().Values(\"name\").Order().Fold().Length(gremlingo.Scope.Local)", "groovy": "g.V().values(\"name\").order().fold().length(Scope.local)", "java": "g.V().values(\"name\").order().fold().length(Scope.local)", @@ -24490,6 +26035,7 @@ "canonical": "g.V(vid1).repeat(__.both().simplePath()).until(__.has(\"name\", \"peter\").or().loops().is(3)).has(\"name\", \"peter\").path().by(\"name\")", "anonymized": "g.V(vid1).repeat(__.both().simplePath()).until(__.has(string0, string1).or().loops().is(number0)).has(string0, string1).path().by(string0)", "dotnet": "g.V(vid1).Repeat(__.Both().SimplePath()).Until(__.Has(\"name\", \"peter\").Or().Loops().Is(3)).Has(\"name\", \"peter\").Path().By(\"name\")", + "dotnet_parameterize": "g.V(vid1).Repeat(__.Both().SimplePath()).Until(__.Has(\"name\", \"peter\").Or().Loops().Is(3)).Has(\"name\", \"peter\").Path().By(\"name\")", "go": "g.V(vid1).Repeat(gremlingo.T__.Both().SimplePath()).Until(gremlingo.T__.Has(\"name\", \"peter\").Or().Loops().Is(3)).Has(\"name\", \"peter\").Path().By(\"name\")", "groovy": "g.V(vid1).repeat(__.both().simplePath()).until(__.has(\"name\", \"peter\").or().loops().is(3)).has(\"name\", \"peter\").path().by(\"name\")", "java": "g.V(vid1).repeat(__.both().simplePath()).until(__.has(\"name\", \"peter\").or().loops().is(3)).has(\"name\", \"peter\").path().by(\"name\")", @@ -24507,6 +26053,7 @@ "canonical": "g.V(vid1).repeat(__.both().simplePath()).until(__.has(\"name\", \"peter\").or().loops().is(2)).has(\"name\", \"peter\").path().by(\"name\")", "anonymized": "g.V(vid1).repeat(__.both().simplePath()).until(__.has(string0, string1).or().loops().is(number0)).has(string0, string1).path().by(string0)", "dotnet": "g.V(vid1).Repeat(__.Both().SimplePath()).Until(__.Has(\"name\", \"peter\").Or().Loops().Is(2)).Has(\"name\", \"peter\").Path().By(\"name\")", + "dotnet_parameterize": "g.V(vid1).Repeat(__.Both().SimplePath()).Until(__.Has(\"name\", \"peter\").Or().Loops().Is(2)).Has(\"name\", \"peter\").Path().By(\"name\")", "go": "g.V(vid1).Repeat(gremlingo.T__.Both().SimplePath()).Until(gremlingo.T__.Has(\"name\", \"peter\").Or().Loops().Is(2)).Has(\"name\", \"peter\").Path().By(\"name\")", "groovy": "g.V(vid1).repeat(__.both().simplePath()).until(__.has(\"name\", \"peter\").or().loops().is(2)).has(\"name\", \"peter\").path().by(\"name\")", "java": "g.V(vid1).repeat(__.both().simplePath()).until(__.has(\"name\", \"peter\").or().loops().is(2)).has(\"name\", \"peter\").path().by(\"name\")", @@ -24524,6 +26071,7 @@ "canonical": "g.V(vid1).repeat(__.both().simplePath()).until(__.has(\"name\", \"peter\").and().loops().is(3)).has(\"name\", \"peter\").path().by(\"name\")", "anonymized": "g.V(vid1).repeat(__.both().simplePath()).until(__.has(string0, string1).and().loops().is(number0)).has(string0, string1).path().by(string0)", "dotnet": "g.V(vid1).Repeat(__.Both().SimplePath()).Until(__.Has(\"name\", \"peter\").And().Loops().Is(3)).Has(\"name\", \"peter\").Path().By(\"name\")", + "dotnet_parameterize": "g.V(vid1).Repeat(__.Both().SimplePath()).Until(__.Has(\"name\", \"peter\").And().Loops().Is(3)).Has(\"name\", \"peter\").Path().By(\"name\")", "go": "g.V(vid1).Repeat(gremlingo.T__.Both().SimplePath()).Until(gremlingo.T__.Has(\"name\", \"peter\").And().Loops().Is(3)).Has(\"name\", \"peter\").Path().By(\"name\")", "groovy": "g.V(vid1).repeat(__.both().simplePath()).until(__.has(\"name\", \"peter\").and().loops().is(3)).has(\"name\", \"peter\").path().by(\"name\")", "java": "g.V(vid1).repeat(__.both().simplePath()).until(__.has(\"name\", \"peter\").and().loops().is(3)).has(\"name\", \"peter\").path().by(\"name\")", @@ -24541,6 +26089,7 @@ "canonical": "g.V().emit(__.has(\"name\", \"marko\").or().loops().is(2)).repeat(__.out()).values(\"name\")", "anonymized": "g.V().emit(__.has(string0, string1).or().loops().is(number0)).repeat(__.out()).values(string0)", "dotnet": "g.V().Emit(__.Has(\"name\", \"marko\").Or().Loops().Is(2)).Repeat(__.Out()).Values(\"name\")", + "dotnet_parameterize": "g.V().Emit(__.Has(\"name\", \"marko\").Or().Loops().Is(2)).Repeat(__.Out()).Values(\"name\")", "go": "g.V().Emit(gremlingo.T__.Has(\"name\", \"marko\").Or().Loops().Is(2)).Repeat(gremlingo.T__.Out()).Values(\"name\")", "groovy": "g.V().emit(__.has(\"name\", \"marko\").or().loops().is(2)).repeat(__.out()).values(\"name\")", "java": "g.V().emit(__.has(\"name\", \"marko\").or().loops().is(2)).repeat(__.out()).values(\"name\")", @@ -24558,6 +26107,7 @@ "canonical": "g.V(vid1).map(__.values(\"name\"))", "anonymized": "g.V(vid1).map(__.values(string0))", "dotnet": "g.V(vid1).Map(__.Values(\"name\"))", + "dotnet_parameterize": "g.V(vid1).Map(__.Values(\"name\"))", "go": "g.V(vid1).Map(gremlingo.T__.Values(\"name\"))", "groovy": "g.V(vid1).map(__.values(\"name\"))", "java": "g.V(vid1).map(__.values(\"name\"))", @@ -24575,6 +26125,7 @@ "canonical": "g.V(vid1).outE().label().map(__.length())", "anonymized": "g.V(vid1).outE().label().map(__.length())", "dotnet": "g.V(vid1).OutE().Label().Map(__.Length())", + "dotnet_parameterize": "g.V(vid1).OutE().Label().Map(__.Length())", "go": "g.V(vid1).OutE().Label().Map(gremlingo.T__.Length())", "groovy": "g.V(vid1).outE().label().map(__.length())", "java": "g.V(vid1).outE().label().map(__.length())", @@ -24592,6 +26143,7 @@ "canonical": "g.V(vid1).out().map(__.values(\"name\")).map(__.length())", "anonymized": "g.V(vid1).out().map(__.values(string0)).map(__.length())", "dotnet": "g.V(vid1).Out().Map(__.Values(\"name\")).Map(__.Length())", + "dotnet_parameterize": "g.V(vid1).Out().Map(__.Values(\"name\")).Map(__.Length())", "go": "g.V(vid1).Out().Map(gremlingo.T__.Values(\"name\")).Map(gremlingo.T__.Length())", "groovy": "g.V(vid1).out().map(__.values(\"name\")).map(__.length())", "java": "g.V(vid1).out().map(__.values(\"name\")).map(__.length())", @@ -24609,6 +26161,7 @@ "canonical": "g.withPath().V().as(\"a\").out().map(__.select(\"a\").values(\"name\"))", "anonymized": "g.withPath().V().as(string0).out().map(__.select(string0).values(string1))", "dotnet": "g.WithPath().V().As(\"a\").Out().Map(__.Select(\"a\").Values(\"name\"))", + "dotnet_parameterize": "g.WithPath().V().As(\"a\").Out().Map(__.Select(\"a\").Values(\"name\"))", "go": "g.WithPath().V().As(\"a\").Out().Map(gremlingo.T__.Select(\"a\").Values(\"name\"))", "groovy": "g.withPath().V().as(\"a\").out().map(__.select(\"a\").values(\"name\"))", "java": "g.withPath().V().as(\"a\").out().map(__.select(\"a\").values(\"name\"))", @@ -24626,6 +26179,7 @@ "canonical": "g.withPath().V().as(\"a\").out().out().as(\"b\").map(__.select(\"a\").values(\"name\").concat(__.select(\"b\").values(\"name\")))", "anonymized": "g.withPath().V().as(string0).out().out().as(string1).map(__.select(string0).values(string2).concat(__.select(string1).values(string2)))", "dotnet": "g.WithPath().V().As(\"a\").Out().Out().As(\"b\").Map(__.Select(\"a\").Values(\"name\").Concat(__.Select(\"b\").Values(\"name\")))", + "dotnet_parameterize": "g.WithPath().V().As(\"a\").Out().Out().As(\"b\").Map(__.Select(\"a\").Values(\"name\").Concat(__.Select(\"b\").Values(\"name\")))", "go": "g.WithPath().V().As(\"a\").Out().Out().As(\"b\").Map(gremlingo.T__.Select(\"a\").Values(\"name\").Concat(gremlingo.T__.Select(\"b\").Values(\"name\")))", "groovy": "g.withPath().V().as(\"a\").out().out().as(\"b\").map(__.select(\"a\").values(\"name\").concat(__.select(\"b\").values(\"name\")))", "java": "g.withPath().V().as(\"a\").out().out().as(\"b\").map(__.select(\"a\").values(\"name\").concat(__.select(\"b\").values(\"name\")))", @@ -24643,6 +26197,7 @@ "canonical": "g.V().as(\"a\").map(__.select(\"a\"))", "anonymized": "g.V().as(string0).map(__.select(string0))", "dotnet": "g.V().As(\"a\").Map(__.Select(\"a\"))", + "dotnet_parameterize": "g.V().As(\"a\").Map(__.Select(\"a\"))", "go": "g.V().As(\"a\").Map(gremlingo.T__.Select(\"a\"))", "groovy": "g.V().as(\"a\").map(__.select(\"a\"))", "java": "g.V().as(\"a\").map(__.select(\"a\"))", @@ -24660,6 +26215,7 @@ "canonical": "g.V().map(__.constant(null))", "anonymized": "g.V().map(__.constant(object0))", "dotnet": "g.V().Map(__.Constant(null))", + "dotnet_parameterize": "g.V().Map(__.Constant(null))", "go": "g.V().Map(gremlingo.T__.Constant(nil))", "groovy": "g.V().map(__.constant(null))", "java": "g.V().map(__.constant(null))", @@ -24677,6 +26233,7 @@ "canonical": "g.V().valueMap().match(__.as(\"a\").select(\"name\").as(\"b\"))", "anonymized": "g.V().valueMap().match(__.as(string0).select(string1).as(string2))", "dotnet": "g.V().ValueMap().Match(__.As(\"a\").Select(\"name\").As(\"b\"))", + "dotnet_parameterize": "g.V().ValueMap().Match(__.As(\"a\").Select(\"name\").As(\"b\"))", "go": "g.V().ValueMap().Match(gremlingo.T__.As(\"a\").Select(\"name\").As(\"b\"))", "groovy": "g.V().valueMap().match(__.as(\"a\").select(\"name\").as(\"b\"))", "java": "g.V().valueMap().match(__.as(\"a\").select(\"name\").as(\"b\"))", @@ -24694,6 +26251,7 @@ "canonical": "g.V().match(__.as(\"a\").out().as(\"b\"))", "anonymized": "g.V().match(__.as(string0).out().as(string1))", "dotnet": "g.V().Match(__.As(\"a\").Out().As(\"b\"))", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out().As(\"b\"))", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out().As(\"b\"))", "groovy": "g.V().match(__.as(\"a\").out().as(\"b\"))", "java": "g.V().match(__.as(\"a\").out().as(\"b\"))", @@ -24711,6 +26269,7 @@ "canonical": "g.V().match(__.as(\"a\").out().as(\"b\")).select(\"b\").by(T.id)", "anonymized": "g.V().match(__.as(string0).out().as(string1)).select(string1).by(T.id)", "dotnet": "g.V().Match(__.As(\"a\").Out().As(\"b\")).Select(\"b\").By(T.Id)", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out().As(\"b\")).Select(\"b\").By(T.Id)", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out().As(\"b\")).Select(\"b\").By(gremlingo.T.Id)", "groovy": "g.V().match(__.as(\"a\").out().as(\"b\")).select(\"b\").by(T.id)", "java": "g.V().match(__.as(\"a\").out().as(\"b\")).select(\"b\").by(T.id)", @@ -24728,6 +26287,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").out(\"created\").as(\"c\"))", "anonymized": "g.V().match(__.as(string0).out(string1).as(string2), __.as(string2).out(string3).as(string4))", "dotnet": "g.V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"b\").Out(\"created\").As(\"c\"))", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"b\").Out(\"created\").As(\"c\"))", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"), gremlingo.T__.As(\"b\").Out(\"created\").As(\"c\"))", "groovy": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").out(\"created\").as(\"c\"))", "java": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").out(\"created\").as(\"c\"))", @@ -24745,6 +26305,7 @@ "canonical": "g.V().match(__.as(\"b\").out(\"created\").as(\"c\"), __.as(\"a\").out(\"knows\").as(\"b\"))", "anonymized": "g.V().match(__.as(string0).out(string1).as(string2), __.as(string3).out(string4).as(string0))", "dotnet": "g.V().Match(__.As(\"b\").Out(\"created\").As(\"c\"), __.As(\"a\").Out(\"knows\").As(\"b\"))", + "dotnet_parameterize": "g.V().Match(__.As(\"b\").Out(\"created\").As(\"c\"), __.As(\"a\").Out(\"knows\").As(\"b\"))", "go": "g.V().Match(gremlingo.T__.As(\"b\").Out(\"created\").As(\"c\"), gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"))", "groovy": "g.V().match(__.as(\"b\").out(\"created\").as(\"c\"), __.as(\"a\").out(\"knows\").as(\"b\"))", "java": "g.V().match(__.as(\"b\").out(\"created\").as(\"c\"), __.as(\"a\").out(\"knows\").as(\"b\"))", @@ -24762,6 +26323,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"created\").as(\"b\"), __.as(\"b\").in(\"created\").as(\"c\")).where(\"a\", P.neq(\"c\")).select(\"a\", \"c\")", "anonymized": "g.V().match(__.as(string0).out(string1).as(string2), __.as(string2).in(string1).as(string3)).where(string0, P.neq(string3)).select(string0, string3)", "dotnet": "g.V().Match(__.As(\"a\").Out(\"created\").As(\"b\"), __.As(\"b\").In(\"created\").As(\"c\")).Where(\"a\", P.Neq(\"c\")).Select(\"a\", \"c\")", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"created\").As(\"b\"), __.As(\"b\").In(\"created\").As(\"c\")).Where(\"a\", P.Neq(\"c\")).Select(\"a\", \"c\")", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"created\").As(\"b\"), gremlingo.T__.As(\"b\").In(\"created\").As(\"c\")).Where(\"a\", gremlingo.P.Neq(\"c\")).Select(\"a\", \"c\")", "groovy": "g.V().match(__.as(\"a\").out(\"created\").as(\"b\"), __.as(\"b\").in(\"created\").as(\"c\")).where(\"a\", P.neq(\"c\")).select(\"a\", \"c\")", "java": "g.V().match(__.as(\"a\").out(\"created\").as(\"b\"), __.as(\"b\").in(\"created\").as(\"c\")).where(\"a\", P.neq(\"c\")).select(\"a\", \"c\")", @@ -24779,6 +26341,7 @@ "canonical": "g.V().match(__.as(\"d\").in(\"knows\").as(\"a\"), __.as(\"d\").has(\"name\", \"vadas\"), __.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").out(\"created\").as(\"c\"))", "anonymized": "g.V().match(__.as(string0).in(string1).as(string2), __.as(string0).has(string3, string4), __.as(string2).out(string1).as(string5), __.as(string5).out(string6).as(string7))", "dotnet": "g.V().Match(__.As(\"d\").In(\"knows\").As(\"a\"), __.As(\"d\").Has(\"name\", \"vadas\"), __.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"b\").Out(\"created\").As(\"c\"))", + "dotnet_parameterize": "g.V().Match(__.As(\"d\").In(\"knows\").As(\"a\"), __.As(\"d\").Has(\"name\", \"vadas\"), __.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"b\").Out(\"created\").As(\"c\"))", "go": "g.V().Match(gremlingo.T__.As(\"d\").In(\"knows\").As(\"a\"), gremlingo.T__.As(\"d\").Has(\"name\", \"vadas\"), gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"), gremlingo.T__.As(\"b\").Out(\"created\").As(\"c\"))", "groovy": "g.V().match(__.as(\"d\").in(\"knows\").as(\"a\"), __.as(\"d\").has(\"name\", \"vadas\"), __.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").out(\"created\").as(\"c\"))", "java": "g.V().match(__.as(\"d\").in(\"knows\").as(\"a\"), __.as(\"d\").has(\"name\", \"vadas\"), __.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").out(\"created\").as(\"c\"))", @@ -24796,6 +26359,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"created\").has(\"name\", \"lop\").as(\"b\"), __.as(\"b\").in(\"created\").has(\"age\", 29).as(\"c\"), __.as(\"c\").where(__.repeat(__.out()).times(2)))", "anonymized": "g.V().match(__.as(string0).out(string1).has(string2, string3).as(string4), __.as(string4).in(string1).has(string5, number0).as(string6), __.as(string6).where(__.repeat(__.out()).times(number1)))", "dotnet": "g.V().Match(__.As(\"a\").Out(\"created\").Has(\"name\", \"lop\").As(\"b\"), __.As(\"b\").In(\"created\").Has(\"age\", 29).As(\"c\"), __.As(\"c\").Where(__.Repeat(__.Out()).Times(2)))", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"created\").Has(\"name\", \"lop\").As(\"b\"), __.As(\"b\").In(\"created\").Has(\"age\", 29).As(\"c\"), __.As(\"c\").Where(__.Repeat(__.Out()).Times(2)))", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"created\").Has(\"name\", \"lop\").As(\"b\"), gremlingo.T__.As(\"b\").In(\"created\").Has(\"age\", 29).As(\"c\"), gremlingo.T__.As(\"c\").Where(gremlingo.T__.Repeat(gremlingo.T__.Out()).Times(2)))", "groovy": "g.V().match(__.as(\"a\").out(\"created\").has(\"name\", \"lop\").as(\"b\"), __.as(\"b\").in(\"created\").has(\"age\", 29).as(\"c\"), __.as(\"c\").where(__.repeat(__.out()).times(2)))", "java": "g.V().match(__.as(\"a\").out(\"created\").has(\"name\", \"lop\").as(\"b\"), __.as(\"b\").in(\"created\").has(\"age\", 29).as(\"c\"), __.as(\"c\").where(__.repeat(__.out()).times(2)))", @@ -24813,6 +26377,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").match(__.as(\"a\").out().count().as(\"c\"), __.as(\"b\").in().count().as(\"c\"))", "anonymized": "g.V().as(string0).out().as(string1).match(__.as(string0).out().count().as(string2), __.as(string1).in().count().as(string2))", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Match(__.As(\"a\").Out().Count().As(\"c\"), __.As(\"b\").In().Count().As(\"c\"))", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Match(__.As(\"a\").Out().Count().As(\"c\"), __.As(\"b\").In().Count().As(\"c\"))", "go": "g.V().As(\"a\").Out().As(\"b\").Match(gremlingo.T__.As(\"a\").Out().Count().As(\"c\"), gremlingo.T__.As(\"b\").In().Count().As(\"c\"))", "groovy": "g.V().as(\"a\").out().as(\"b\").match(__.as(\"a\").out().count().as(\"c\"), __.as(\"b\").in().count().as(\"c\"))", "java": "g.V().as(\"a\").out().as(\"b\").match(__.as(\"a\").out().count().as(\"c\"), __.as(\"b\").in().count().as(\"c\"))", @@ -24830,6 +26395,7 @@ "canonical": "g.V().match(__.as(\"a\").out().as(\"b\"), __.not(__.as(\"a\").out(\"created\").as(\"b\")))", "anonymized": "g.V().match(__.as(string0).out().as(string1), __.not(__.as(string0).out(string2).as(string1)))", "dotnet": "g.V().Match(__.As(\"a\").Out().As(\"b\"), __.Not(__.As(\"a\").Out(\"created\").As(\"b\")))", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out().As(\"b\"), __.Not(__.As(\"a\").Out(\"created\").As(\"b\")))", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out().As(\"b\"), gremlingo.T__.Not(gremlingo.T__.As(\"a\").Out(\"created\").As(\"b\")))", "groovy": "g.V().match(__.as(\"a\").out().as(\"b\"), __.not(__.as(\"a\").out(\"created\").as(\"b\")))", "java": "g.V().match(__.as(\"a\").out().as(\"b\"), __.not(__.as(\"a\").out(\"created\").as(\"b\")))", @@ -24847,6 +26413,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"created\").has(\"name\", \"lop\").as(\"b\"), __.as(\"b\").in(\"created\").has(\"age\", 29).as(\"c\")).where(__.as(\"c\").repeat(__.out()).times(2)).select(\"a\", \"b\", \"c\")", "anonymized": "g.V().match(__.as(string0).out(string1).has(string2, string3).as(string4), __.as(string4).in(string1).has(string5, number0).as(string6)).where(__.as(string6).repeat(__.out()).times(number1)).select(string0, string4, string6)", "dotnet": "g.V().Match(__.As(\"a\").Out(\"created\").Has(\"name\", \"lop\").As(\"b\"), __.As(\"b\").In(\"created\").Has(\"age\", 29).As(\"c\")).Where(__.As(\"c\").Repeat(__.Out()).Times(2)).Select(\"a\", \"b\", \"c\")", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"created\").Has(\"name\", \"lop\").As(\"b\"), __.As(\"b\").In(\"created\").Has(\"age\", 29).As(\"c\")).Where(__.As(\"c\").Repeat(__.Out()).Times(2)).Select(\"a\", \"b\", \"c\")", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"created\").Has(\"name\", \"lop\").As(\"b\"), gremlingo.T__.As(\"b\").In(\"created\").Has(\"age\", 29).As(\"c\")).Where(gremlingo.T__.As(\"c\").Repeat(gremlingo.T__.Out()).Times(2)).Select(\"a\", \"b\", \"c\")", "groovy": "g.V().match(__.as(\"a\").out(\"created\").has(\"name\", \"lop\").as(\"b\"), __.as(\"b\").in(\"created\").has(\"age\", 29).as(\"c\")).where(__.as(\"c\").repeat(__.out()).times(2)).select(\"a\", \"b\", \"c\")", "java": "g.V().match(__.as(\"a\").out(\"created\").has(\"name\", \"lop\").as(\"b\"), __.as(\"b\").in(\"created\").has(\"age\", 29).as(\"c\")).where(__.as(\"c\").repeat(__.out()).times(2)).select(\"a\", \"b\", \"c\")", @@ -24864,6 +26431,7 @@ "canonical": "g.V().out().out().match(__.as(\"a\").in(\"created\").as(\"b\"), __.as(\"b\").in(\"knows\").as(\"c\")).select(\"c\").out(\"created\").values(\"name\")", "anonymized": "g.V().out().out().match(__.as(string0).in(string1).as(string2), __.as(string2).in(string3).as(string4)).select(string4).out(string1).values(string5)", "dotnet": "g.V().Out().Out().Match(__.As(\"a\").In(\"created\").As(\"b\"), __.As(\"b\").In(\"knows\").As(\"c\")).Select(\"c\").Out(\"created\").Values(\"name\")", + "dotnet_parameterize": "g.V().Out().Out().Match(__.As(\"a\").In(\"created\").As(\"b\"), __.As(\"b\").In(\"knows\").As(\"c\")).Select(\"c\").Out(\"created\").Values(\"name\")", "go": "g.V().Out().Out().Match(gremlingo.T__.As(\"a\").In(\"created\").As(\"b\"), gremlingo.T__.As(\"b\").In(\"knows\").As(\"c\")).Select(\"c\").Out(\"created\").Values(\"name\")", "groovy": "g.V().out().out().match(__.as(\"a\").in(\"created\").as(\"b\"), __.as(\"b\").in(\"knows\").as(\"c\")).select(\"c\").out(\"created\").values(\"name\")", "java": "g.V().out().out().match(__.as(\"a\").in(\"created\").as(\"b\"), __.as(\"b\").in(\"knows\").as(\"c\")).select(\"c\").out(\"created\").values(\"name\")", @@ -24881,6 +26449,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").out(\"created\").as(\"c\"), __.as(\"a\").out(\"created\").as(\"c\")).dedup(\"a\", \"b\", \"c\").select(\"a\").by(\"name\")", "anonymized": "g.V().match(__.as(string0).out(string1).as(string2), __.as(string2).out(string3).as(string4), __.as(string0).out(string3).as(string4)).dedup(string0, string2, string4).select(string0).by(string5)", "dotnet": "g.V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"b\").Out(\"created\").As(\"c\"), __.As(\"a\").Out(\"created\").As(\"c\")).Dedup(\"a\", \"b\", \"c\").Select(\"a\").By(\"name\")", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"b\").Out(\"created\").As(\"c\"), __.As(\"a\").Out(\"created\").As(\"c\")).Dedup(\"a\", \"b\", \"c\").Select(\"a\").By(\"name\")", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"), gremlingo.T__.As(\"b\").Out(\"created\").As(\"c\"), gremlingo.T__.As(\"a\").Out(\"created\").As(\"c\")).Dedup(\"a\", \"b\", \"c\").Select(\"a\").By(\"name\")", "groovy": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").out(\"created\").as(\"c\"), __.as(\"a\").out(\"created\").as(\"c\")).dedup(\"a\", \"b\", \"c\").select(\"a\").by(\"name\")", "java": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").out(\"created\").as(\"c\"), __.as(\"a\").out(\"created\").as(\"c\")).dedup(\"a\", \"b\", \"c\").select(\"a\").by(\"name\")", @@ -24898,6 +26467,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"created\").as(\"b\"), __.as(\"a\").repeat(__.out()).times(2).as(\"b\")).select(\"a\", \"b\")", "anonymized": "g.V().match(__.as(string0).out(string1).as(string2), __.as(string0).repeat(__.out()).times(number0).as(string2)).select(string0, string2)", "dotnet": "g.V().Match(__.As(\"a\").Out(\"created\").As(\"b\"), __.As(\"a\").Repeat(__.Out()).Times(2).As(\"b\")).Select(\"a\", \"b\")", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"created\").As(\"b\"), __.As(\"a\").Repeat(__.Out()).Times(2).As(\"b\")).Select(\"a\", \"b\")", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"created\").As(\"b\"), gremlingo.T__.As(\"a\").Repeat(gremlingo.T__.Out()).Times(2).As(\"b\")).Select(\"a\", \"b\")", "groovy": "g.V().match(__.as(\"a\").out(\"created\").as(\"b\"), __.as(\"a\").repeat(__.out()).times(2).as(\"b\")).select(\"a\", \"b\")", "java": "g.V().match(__.as(\"a\").out(\"created\").as(\"b\"), __.as(\"a\").repeat(__.out()).times(2).as(\"b\")).select(\"a\", \"b\")", @@ -24915,6 +26485,7 @@ "canonical": "g.V().not(__.match(__.as(\"a\").values(\"age\").as(\"b\"), __.as(\"a\").values(\"name\").as(\"c\")).where(\"b\", P.eq(\"c\")).select(\"a\")).values(\"name\")", "anonymized": "g.V().not(__.match(__.as(string0).values(string1).as(string2), __.as(string0).values(string3).as(string4)).where(string2, P.eq(string4)).select(string0)).values(string3)", "dotnet": "g.V().Not(__.Match(__.As(\"a\").Values(\"age\").As(\"b\"), __.As(\"a\").Values(\"name\").As(\"c\")).Where(\"b\", P.Eq(\"c\")).Select(\"a\")).Values(\"name\")", + "dotnet_parameterize": "g.V().Not(__.Match(__.As(\"a\").Values(\"age\").As(\"b\"), __.As(\"a\").Values(\"name\").As(\"c\")).Where(\"b\", P.Eq(\"c\")).Select(\"a\")).Values(\"name\")", "go": "g.V().Not(gremlingo.T__.Match(gremlingo.T__.As(\"a\").Values(\"age\").As(\"b\"), gremlingo.T__.As(\"a\").Values(\"name\").As(\"c\")).Where(\"b\", gremlingo.P.Eq(\"c\")).Select(\"a\")).Values(\"name\")", "groovy": "g.V().not(__.match(__.as(\"a\").values(\"age\").as(\"b\"), __.as(\"a\").values(\"name\").as(\"c\")).where(\"b\", P.eq(\"c\")).select(\"a\")).values(\"name\")", "java": "g.V().not(__.match(__.as(\"a\").values(\"age\").as(\"b\"), __.as(\"a\").values(\"name\").as(\"c\")).where(\"b\", P.eq(\"c\")).select(\"a\")).values(\"name\")", @@ -24932,6 +26503,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.and(__.as(\"a\").out(\"created\").as(\"c\"), __.as(\"b\").out(\"created\").as(\"c\"), __.and(__.as(\"b\").out(\"created\").count().as(\"d\"), __.as(\"a\").out(\"knows\").count().as(\"d\"))))", "anonymized": "g.V().match(__.as(string0).out(string1).as(string2), __.and(__.as(string0).out(string3).as(string4), __.as(string2).out(string3).as(string4), __.and(__.as(string2).out(string3).count().as(string5), __.as(string0).out(string1).count().as(string5))))", "dotnet": "g.V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.And(__.As(\"a\").Out(\"created\").As(\"c\"), __.As(\"b\").Out(\"created\").As(\"c\"), __.And(__.As(\"b\").Out(\"created\").Count().As(\"d\"), __.As(\"a\").Out(\"knows\").Count().As(\"d\"))))", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.And(__.As(\"a\").Out(\"created\").As(\"c\"), __.As(\"b\").Out(\"created\").As(\"c\"), __.And(__.As(\"b\").Out(\"created\").Count().As(\"d\"), __.As(\"a\").Out(\"knows\").Count().As(\"d\"))))", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"), gremlingo.T__.And(gremlingo.T__.As(\"a\").Out(\"created\").As(\"c\"), gremlingo.T__.As(\"b\").Out(\"created\").As(\"c\"), gremlingo.T__.And(gremlingo.T__.As(\"b\").Out(\"created\").Count().As(\"d\"), gremlingo.T__.As(\"a\").Out(\"knows\").Count().As(\"d\"))))", "groovy": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.and(__.as(\"a\").out(\"created\").as(\"c\"), __.as(\"b\").out(\"created\").as(\"c\"), __.and(__.as(\"b\").out(\"created\").count().as(\"d\"), __.as(\"a\").out(\"knows\").count().as(\"d\"))))", "java": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.and(__.as(\"a\").out(\"created\").as(\"c\"), __.as(\"b\").out(\"created\").as(\"c\"), __.and(__.as(\"b\").out(\"created\").count().as(\"d\"), __.as(\"a\").out(\"knows\").count().as(\"d\"))))", @@ -24949,6 +26521,7 @@ "canonical": "g.V().match(__.where(\"a\", P.neq(\"c\")), __.as(\"a\").out(\"created\").as(\"b\"), __.or(__.as(\"a\").out(\"knows\").has(\"name\", \"vadas\"), __.as(\"a\").in(\"knows\").and().as(\"a\").has(T.label, \"person\")), __.as(\"b\").in(\"created\").as(\"c\"), __.as(\"b\").in(\"created\").count().is(P.gt(1))).select(\"a\", \"b\", \"c\").by(T.id)", "anonymized": "g.V().match(__.where(string0, P.neq(string1)), __.as(string0).out(string2).as(string3), __.or(__.as(string0).out(string4).has(string5, string6), __.as(string0).in(string4).and().as(string0).has(T.label, string7)), __.as(string3).in(string2).as(string1), __.as(string3).in(string2).count().is(P.gt(number0))).select(string0, string3, string1).by(T.id)", "dotnet": "g.V().Match(__.Where(\"a\", P.Neq(\"c\")), __.As(\"a\").Out(\"created\").As(\"b\"), __.Or(__.As(\"a\").Out(\"knows\").Has(\"name\", \"vadas\"), __.As(\"a\").In(\"knows\").And().As(\"a\").Has(T.Label, \"person\")), __.As(\"b\").In(\"created\").As(\"c\"), __.As(\"b\").In(\"created\").Count().Is(P.Gt(1))).Select(\"a\", \"b\", \"c\").By(T.Id)", + "dotnet_parameterize": "g.V().Match(__.Where(\"a\", P.Neq(\"c\")), __.As(\"a\").Out(\"created\").As(\"b\"), __.Or(__.As(\"a\").Out(\"knows\").Has(\"name\", \"vadas\"), __.As(\"a\").In(\"knows\").And().As(\"a\").Has(T.Label, \"person\")), __.As(\"b\").In(\"created\").As(\"c\"), __.As(\"b\").In(\"created\").Count().Is(P.Gt(1))).Select(\"a\", \"b\", \"c\").By(T.Id)", "go": "g.V().Match(gremlingo.T__.Where(\"a\", gremlingo.P.Neq(\"c\")), gremlingo.T__.As(\"a\").Out(\"created\").As(\"b\"), gremlingo.T__.Or(gremlingo.T__.As(\"a\").Out(\"knows\").Has(\"name\", \"vadas\"), gremlingo.T__.As(\"a\").In(\"knows\").And().As(\"a\").Has(gremlingo.T.Label, \"person\")), gremlingo.T__.As(\"b\").In(\"created\").As(\"c\"), gremlingo.T__.As(\"b\").In(\"created\").Count().Is(gremlingo.P.Gt(1))).Select(\"a\", \"b\", \"c\").By(gremlingo.T.Id)", "groovy": "g.V().match(__.where(\"a\", P.neq(\"c\")), __.as(\"a\").out(\"created\").as(\"b\"), __.or(__.as(\"a\").out(\"knows\").has(\"name\", \"vadas\"), __.as(\"a\").in(\"knows\").and().as(\"a\").has(T.label, \"person\")), __.as(\"b\").in(\"created\").as(\"c\"), __.as(\"b\").in(\"created\").count().is(P.gt(1))).select(\"a\", \"b\", \"c\").by(T.id)", "java": "g.V().match(__.where(\"a\", P.neq(\"c\")), __.as(\"a\").out(\"created\").as(\"b\"), __.or(__.as(\"a\").out(\"knows\").has(\"name\", \"vadas\"), __.as(\"a\").in(\"knows\").and().as(\"a\").has(T.label, \"person\")), __.as(\"b\").in(\"created\").as(\"c\"), __.as(\"b\").in(\"created\").count().is(P.gt(1))).select(\"a\", \"b\", \"c\").by(T.id)", @@ -24966,6 +26539,7 @@ "canonical": "g.V().match(__.as(\"a\").both().as(\"b\"), __.as(\"b\").both().as(\"c\")).dedup(\"a\", \"b\")", "anonymized": "g.V().match(__.as(string0).both().as(string1), __.as(string1).both().as(string2)).dedup(string0, string1)", "dotnet": "g.V().Match(__.As(\"a\").Both().As(\"b\"), __.As(\"b\").Both().As(\"c\")).Dedup(\"a\", \"b\")", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Both().As(\"b\"), __.As(\"b\").Both().As(\"c\")).Dedup(\"a\", \"b\")", "go": "g.V().Match(gremlingo.T__.As(\"a\").Both().As(\"b\"), gremlingo.T__.As(\"b\").Both().As(\"c\")).Dedup(\"a\", \"b\")", "groovy": "g.V().match(__.as(\"a\").both().as(\"b\"), __.as(\"b\").both().as(\"c\")).dedup(\"a\", \"b\")", "java": "g.V().match(__.as(\"a\").both().as(\"b\"), __.as(\"b\").both().as(\"c\")).dedup(\"a\", \"b\")", @@ -24983,6 +26557,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").out(\"created\").has(\"name\", \"lop\"), __.as(\"b\").match(__.as(\"b\").out(\"created\").as(\"d\"), __.as(\"d\").in(\"created\").as(\"c\")).select(\"c\").as(\"c\")).select(\"a\", \"b\", \"c\")", "anonymized": "g.V().match(__.as(string0).out(string1).as(string2), __.as(string2).out(string3).has(string4, string5), __.as(string2).match(__.as(string2).out(string3).as(string6), __.as(string6).in(string3).as(string7)).select(string7).as(string7)).select(string0, string2, string7)", "dotnet": "g.V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"b\").Out(\"created\").Has(\"name\", \"lop\"), __.As(\"b\").Match(__.As(\"b\").Out(\"created\").As(\"d\"), __.As(\"d\").In(\"created\").As(\"c\")).Select(\"c\").As(\"c\")).Select(\"a\", \"b\", \"c\")", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"b\").Out(\"created\").Has(\"name\", \"lop\"), __.As(\"b\").Match(__.As(\"b\").Out(\"created\").As(\"d\"), __.As(\"d\").In(\"created\").As(\"c\")).Select(\"c\").As(\"c\")).Select(\"a\", \"b\", \"c\")", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"), gremlingo.T__.As(\"b\").Out(\"created\").Has(\"name\", \"lop\"), gremlingo.T__.As(\"b\").Match(gremlingo.T__.As(\"b\").Out(\"created\").As(\"d\"), gremlingo.T__.As(\"d\").In(\"created\").As(\"c\")).Select(\"c\").As(\"c\")).Select(\"a\", \"b\", \"c\")", "groovy": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").out(\"created\").has(\"name\", \"lop\"), __.as(\"b\").match(__.as(\"b\").out(\"created\").as(\"d\"), __.as(\"d\").in(\"created\").as(\"c\")).select(\"c\").as(\"c\")).select(\"a\", \"b\", \"c\")", "java": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").out(\"created\").has(\"name\", \"lop\"), __.as(\"b\").match(__.as(\"b\").out(\"created\").as(\"d\"), __.as(\"d\").in(\"created\").as(\"c\")).select(\"c\").as(\"c\")).select(\"a\", \"b\", \"c\")", @@ -25000,6 +26575,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"a\").out(\"created\").as(\"c\"))", "anonymized": "g.V().match(__.as(string0).out(string1).as(string2), __.as(string0).out(string3).as(string4))", "dotnet": "g.V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"a\").Out(\"created\").As(\"c\"))", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"a\").Out(\"created\").As(\"c\"))", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"), gremlingo.T__.As(\"a\").Out(\"created\").As(\"c\"))", "groovy": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"a\").out(\"created\").as(\"c\"))", "java": "g.V().match(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"a\").out(\"created\").as(\"c\"))", @@ -25017,6 +26593,7 @@ "canonical": "g.V().match(__.where(__.and(__.as(\"a\").out(\"created\").as(\"b\"), __.as(\"b\").in(\"created\").count().is(P.eq(3)))), __.as(\"a\").both().as(\"b\"), __.where(__.as(\"b\").in()))", "anonymized": "g.V().match(__.where(__.and(__.as(string0).out(string1).as(string2), __.as(string2).in(string1).count().is(P.eq(number0)))), __.as(string0).both().as(string2), __.where(__.as(string2).in()))", "dotnet": "g.V().Match(__.Where(__.And(__.As(\"a\").Out(\"created\").As(\"b\"), __.As(\"b\").In(\"created\").Count().Is(P.Eq(3)))), __.As(\"a\").Both().As(\"b\"), __.Where(__.As(\"b\").In()))", + "dotnet_parameterize": "g.V().Match(__.Where(__.And(__.As(\"a\").Out(\"created\").As(\"b\"), __.As(\"b\").In(\"created\").Count().Is(P.Eq(3)))), __.As(\"a\").Both().As(\"b\"), __.Where(__.As(\"b\").In()))", "go": "g.V().Match(gremlingo.T__.Where(gremlingo.T__.And(gremlingo.T__.As(\"a\").Out(\"created\").As(\"b\"), gremlingo.T__.As(\"b\").In(\"created\").Count().Is(gremlingo.P.Eq(3)))), gremlingo.T__.As(\"a\").Both().As(\"b\"), gremlingo.T__.Where(gremlingo.T__.As(\"b\").In()))", "groovy": "g.V().match(__.where(__.and(__.as(\"a\").out(\"created\").as(\"b\"), __.as(\"b\").in(\"created\").count().is(P.eq(3)))), __.as(\"a\").both().as(\"b\"), __.where(__.as(\"b\").in()))", "java": "g.V().match(__.where(__.and(__.as(\"a\").out(\"created\").as(\"b\"), __.as(\"b\").in(\"created\").count().is(P.eq(3)))), __.as(\"a\").both().as(\"b\"), __.where(__.as(\"b\").in()))", @@ -25034,6 +26611,7 @@ "canonical": "g.V().match(__.as(\"a\").outE(\"created\").order().by(\"weight\", Order.desc).limit(1).inV().as(\"b\"), __.as(\"b\").has(\"lang\", \"java\")).select(\"a\", \"b\").by(\"name\")", "anonymized": "g.V().match(__.as(string0).outE(string1).order().by(string2, Order.desc).limit(number0).inV().as(string3), __.as(string3).has(string4, string5)).select(string0, string3).by(string6)", "dotnet": "g.V().Match(__.As(\"a\").OutE(\"created\").Order().By(\"weight\", Order.Desc).Limit(1).InV().As(\"b\"), __.As(\"b\").Has(\"lang\", \"java\")).Select(\"a\", \"b\").By(\"name\")", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").OutE(\"created\").Order().By(\"weight\", Order.Desc).Limit(1).InV().As(\"b\"), __.As(\"b\").Has(\"lang\", \"java\")).Select(\"a\", \"b\").By(\"name\")", "go": "g.V().Match(gremlingo.T__.As(\"a\").OutE(\"created\").Order().By(\"weight\", gremlingo.Order.Desc).Limit(1).InV().As(\"b\"), gremlingo.T__.As(\"b\").Has(\"lang\", \"java\")).Select(\"a\", \"b\").By(\"name\")", "groovy": "g.V().match(__.as(\"a\").outE(\"created\").order().by(\"weight\", Order.desc).limit(1).inV().as(\"b\"), __.as(\"b\").has(\"lang\", \"java\")).select(\"a\", \"b\").by(\"name\")", "java": "g.V().match(__.as(\"a\").outE(\"created\").order().by(\"weight\", Order.desc).limit(1).inV().as(\"b\"), __.as(\"b\").has(\"lang\", \"java\")).select(\"a\", \"b\").by(\"name\")", @@ -25051,6 +26629,7 @@ "canonical": "g.V().match(__.as(\"a\").both().as(\"b\"), __.as(\"b\").both().as(\"c\")).dedup(\"a\", \"b\").by(T.label)", "anonymized": "g.V().match(__.as(string0).both().as(string1), __.as(string1).both().as(string2)).dedup(string0, string1).by(T.label)", "dotnet": "g.V().Match(__.As(\"a\").Both().As(\"b\"), __.As(\"b\").Both().As(\"c\")).Dedup(\"a\", \"b\").By(T.Label)", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Both().As(\"b\"), __.As(\"b\").Both().As(\"c\")).Dedup(\"a\", \"b\").By(T.Label)", "go": "g.V().Match(gremlingo.T__.As(\"a\").Both().As(\"b\"), gremlingo.T__.As(\"b\").Both().As(\"c\")).Dedup(\"a\", \"b\").By(gremlingo.T.Label)", "groovy": "g.V().match(__.as(\"a\").both().as(\"b\"), __.as(\"b\").both().as(\"c\")).dedup(\"a\", \"b\").by(T.label)", "java": "g.V().match(__.as(\"a\").both().as(\"b\"), __.as(\"b\").both().as(\"c\")).dedup(\"a\", \"b\").by(T.label)", @@ -25068,6 +26647,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"created\").as(\"b\"), __.as(\"b\").in(\"created\").as(\"a\"))", "anonymized": "g.V().match(__.as(string0).out(string1).as(string2), __.as(string2).in(string1).as(string0))", "dotnet": "g.V().Match(__.As(\"a\").Out(\"created\").As(\"b\"), __.As(\"b\").In(\"created\").As(\"a\"))", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"created\").As(\"b\"), __.As(\"b\").In(\"created\").As(\"a\"))", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"created\").As(\"b\"), gremlingo.T__.As(\"b\").In(\"created\").As(\"a\"))", "groovy": "g.V().match(__.as(\"a\").out(\"created\").as(\"b\"), __.as(\"b\").in(\"created\").as(\"a\"))", "java": "g.V().match(__.as(\"a\").out(\"created\").as(\"b\"), __.as(\"b\").in(\"created\").as(\"a\"))", @@ -25085,6 +26665,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").match(__.as(\"a\").out().count().as(\"c\"), __.or(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").in().count().as(\"c\").and().as(\"c\").is(P.gt(2))))", "anonymized": "g.V().as(string0).out().as(string1).match(__.as(string0).out().count().as(string2), __.or(__.as(string0).out(string3).as(string1), __.as(string1).in().count().as(string2).and().as(string2).is(P.gt(number0))))", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Match(__.As(\"a\").Out().Count().As(\"c\"), __.Or(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"b\").In().Count().As(\"c\").And().As(\"c\").Is(P.Gt(2))))", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Match(__.As(\"a\").Out().Count().As(\"c\"), __.Or(__.As(\"a\").Out(\"knows\").As(\"b\"), __.As(\"b\").In().Count().As(\"c\").And().As(\"c\").Is(P.Gt(2))))", "go": "g.V().As(\"a\").Out().As(\"b\").Match(gremlingo.T__.As(\"a\").Out().Count().As(\"c\"), gremlingo.T__.Or(gremlingo.T__.As(\"a\").Out(\"knows\").As(\"b\"), gremlingo.T__.As(\"b\").In().Count().As(\"c\").And().As(\"c\").Is(gremlingo.P.Gt(2))))", "groovy": "g.V().as(\"a\").out().as(\"b\").match(__.as(\"a\").out().count().as(\"c\"), __.or(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").in().count().as(\"c\").and().as(\"c\").is(P.gt(2))))", "java": "g.V().as(\"a\").out().as(\"b\").match(__.as(\"a\").out().count().as(\"c\"), __.or(__.as(\"a\").out(\"knows\").as(\"b\"), __.as(\"b\").in().count().as(\"c\").and().as(\"c\").is(P.gt(2))))", @@ -25102,6 +26683,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"knows\").count().as(\"b\")).select(\"b\")", "anonymized": "g.V().match(__.as(string0).out(string1).count().as(string2)).select(string2)", "dotnet": "g.V().Match(__.As(\"a\").Out(\"knows\").Count().As(\"b\")).Select(\"b\")", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"knows\").Count().As(\"b\")).Select(\"b\")", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"knows\").Count().As(\"b\")).Select(\"b\")", "groovy": "g.V().match(__.as(\"a\").out(\"knows\").count().as(\"b\")).select(\"b\")", "java": "g.V().match(__.as(\"a\").out(\"knows\").count().as(\"b\")).select(\"b\")", @@ -25119,6 +26701,7 @@ "canonical": "g.V().match(__.as(\"a\").in(\"sungBy\").as(\"b\"), __.as(\"a\").in(\"writtenBy\").as(\"c\"), __.as(\"b\").out(\"writtenBy\").as(\"d\"), __.as(\"c\").out(\"sungBy\").as(\"d\"), __.as(\"d\").has(\"name\", \"Garcia\"))", "anonymized": "g.V().match(__.as(string0).in(string1).as(string2), __.as(string0).in(string3).as(string4), __.as(string2).out(string3).as(string5), __.as(string4).out(string1).as(string5), __.as(string5).has(string6, string7))", "dotnet": "g.V().Match(__.As(\"a\").In(\"sungBy\").As(\"b\"), __.As(\"a\").In(\"writtenBy\").As(\"c\"), __.As(\"b\").Out(\"writtenBy\").As(\"d\"), __.As(\"c\").Out(\"sungBy\").As(\"d\"), __.As(\"d\").Has(\"name\", \"Garcia\"))", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").In(\"sungBy\").As(\"b\"), __.As(\"a\").In(\"writtenBy\").As(\"c\"), __.As(\"b\").Out(\"writtenBy\").As(\"d\"), __.As(\"c\").Out(\"sungBy\").As(\"d\"), __.As(\"d\").Has(\"name\", \"Garcia\"))", "go": "g.V().Match(gremlingo.T__.As(\"a\").In(\"sungBy\").As(\"b\"), gremlingo.T__.As(\"a\").In(\"writtenBy\").As(\"c\"), gremlingo.T__.As(\"b\").Out(\"writtenBy\").As(\"d\"), gremlingo.T__.As(\"c\").Out(\"sungBy\").As(\"d\"), gremlingo.T__.As(\"d\").Has(\"name\", \"Garcia\"))", "groovy": "g.V().match(__.as(\"a\").in(\"sungBy\").as(\"b\"), __.as(\"a\").in(\"writtenBy\").as(\"c\"), __.as(\"b\").out(\"writtenBy\").as(\"d\"), __.as(\"c\").out(\"sungBy\").as(\"d\"), __.as(\"d\").has(\"name\", \"Garcia\"))", "java": "g.V().match(__.as(\"a\").in(\"sungBy\").as(\"b\"), __.as(\"a\").in(\"writtenBy\").as(\"c\"), __.as(\"b\").out(\"writtenBy\").as(\"d\"), __.as(\"c\").out(\"sungBy\").as(\"d\"), __.as(\"d\").has(\"name\", \"Garcia\"))", @@ -25136,6 +26719,7 @@ "canonical": "g.V().match(__.as(\"a\").has(\"song\", \"name\", \"HERE COMES SUNSHINE\"), __.as(\"a\").map(__.inE(\"followedBy\").values(\"weight\").mean()).as(\"b\"), __.as(\"a\").inE(\"followedBy\").as(\"c\"), __.as(\"c\").filter(__.values(\"weight\").where(P.gte(\"b\"))).outV().as(\"d\")).select(\"d\").by(\"name\")", "anonymized": "g.V().match(__.as(string0).has(string1, string2, string3), __.as(string0).map(__.inE(string4).values(string5).mean()).as(string6), __.as(string0).inE(string4).as(string7), __.as(string7).filter(__.values(string5).where(P.gte(string6))).outV().as(string8)).select(string8).by(string2)", "dotnet": "g.V().Match(__.As(\"a\").Has(\"song\", \"name\", \"HERE COMES SUNSHINE\"), __.As(\"a\").Map(__.InE(\"followedBy\").Values(\"weight\").Mean()).As(\"b\"), __.As(\"a\").InE(\"followedBy\").As(\"c\"), __.As(\"c\").Filter(__.Values(\"weight\").Where(P.Gte(\"b\"))).OutV().As(\"d\")).Select(\"d\").By(\"name\")", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Has(\"song\", \"name\", \"HERE COMES SUNSHINE\"), __.As(\"a\").Map(__.InE(\"followedBy\").Values(\"weight\").Mean()).As(\"b\"), __.As(\"a\").InE(\"followedBy\").As(\"c\"), __.As(\"c\").Filter(__.Values(\"weight\").Where(P.Gte(\"b\"))).OutV().As(\"d\")).Select(\"d\").By(\"name\")", "go": "g.V().Match(gremlingo.T__.As(\"a\").Has(\"song\", \"name\", \"HERE COMES SUNSHINE\"), gremlingo.T__.As(\"a\").Map(gremlingo.T__.InE(\"followedBy\").Values(\"weight\").Mean()).As(\"b\"), gremlingo.T__.As(\"a\").InE(\"followedBy\").As(\"c\"), gremlingo.T__.As(\"c\").Filter(gremlingo.T__.Values(\"weight\").Where(gremlingo.P.Gte(\"b\"))).OutV().As(\"d\")).Select(\"d\").By(\"name\")", "groovy": "g.V().match(__.as(\"a\").has(\"song\", \"name\", \"HERE COMES SUNSHINE\"), __.as(\"a\").map(__.inE(\"followedBy\").values(\"weight\").mean()).as(\"b\"), __.as(\"a\").inE(\"followedBy\").as(\"c\"), __.as(\"c\").filter(__.values(\"weight\").where(P.gte(\"b\"))).outV().as(\"d\")).select(\"d\").by(\"name\")", "java": "g.V().match(__.as(\"a\").has(\"song\", \"name\", \"HERE COMES SUNSHINE\"), __.as(\"a\").map(__.inE(\"followedBy\").values(\"weight\").mean()).as(\"b\"), __.as(\"a\").inE(\"followedBy\").as(\"c\"), __.as(\"c\").filter(__.values(\"weight\").where(P.gte(\"b\"))).outV().as(\"d\")).select(\"d\").by(\"name\")", @@ -25153,6 +26737,7 @@ "canonical": "g.V().match(__.as(\"a\").in(\"sungBy\").as(\"b\"), __.as(\"a\").in(\"sungBy\").as(\"c\"), __.as(\"b\").out(\"writtenBy\").as(\"d\"), __.as(\"c\").out(\"writtenBy\").as(\"e\"), __.as(\"d\").has(\"name\", \"George_Harrison\"), __.as(\"e\").has(\"name\", \"Bob_Marley\"))", "anonymized": "g.V().match(__.as(string0).in(string1).as(string2), __.as(string0).in(string1).as(string3), __.as(string2).out(string4).as(string5), __.as(string3).out(string4).as(string6), __.as(string5).has(string7, string8), __.as(string6).has(string7, string9))", "dotnet": "g.V().Match(__.As(\"a\").In(\"sungBy\").As(\"b\"), __.As(\"a\").In(\"sungBy\").As(\"c\"), __.As(\"b\").Out(\"writtenBy\").As(\"d\"), __.As(\"c\").Out(\"writtenBy\").As(\"e\"), __.As(\"d\").Has(\"name\", \"George_Harrison\"), __.As(\"e\").Has(\"name\", \"Bob_Marley\"))", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").In(\"sungBy\").As(\"b\"), __.As(\"a\").In(\"sungBy\").As(\"c\"), __.As(\"b\").Out(\"writtenBy\").As(\"d\"), __.As(\"c\").Out(\"writtenBy\").As(\"e\"), __.As(\"d\").Has(\"name\", \"George_Harrison\"), __.As(\"e\").Has(\"name\", \"Bob_Marley\"))", "go": "g.V().Match(gremlingo.T__.As(\"a\").In(\"sungBy\").As(\"b\"), gremlingo.T__.As(\"a\").In(\"sungBy\").As(\"c\"), gremlingo.T__.As(\"b\").Out(\"writtenBy\").As(\"d\"), gremlingo.T__.As(\"c\").Out(\"writtenBy\").As(\"e\"), gremlingo.T__.As(\"d\").Has(\"name\", \"George_Harrison\"), gremlingo.T__.As(\"e\").Has(\"name\", \"Bob_Marley\"))", "groovy": "g.V().match(__.as(\"a\").in(\"sungBy\").as(\"b\"), __.as(\"a\").in(\"sungBy\").as(\"c\"), __.as(\"b\").out(\"writtenBy\").as(\"d\"), __.as(\"c\").out(\"writtenBy\").as(\"e\"), __.as(\"d\").has(\"name\", \"George_Harrison\"), __.as(\"e\").has(\"name\", \"Bob_Marley\"))", "java": "g.V().match(__.as(\"a\").in(\"sungBy\").as(\"b\"), __.as(\"a\").in(\"sungBy\").as(\"c\"), __.as(\"b\").out(\"writtenBy\").as(\"d\"), __.as(\"c\").out(\"writtenBy\").as(\"e\"), __.as(\"d\").has(\"name\", \"George_Harrison\"), __.as(\"e\").has(\"name\", \"Bob_Marley\"))", @@ -25170,6 +26755,7 @@ "canonical": "g.V().match(__.as(\"a\").has(\"name\", \"Garcia\"), __.as(\"a\").in(\"writtenBy\").as(\"b\"), __.as(\"a\").in(\"sungBy\").as(\"b\"))", "anonymized": "g.V().match(__.as(string0).has(string1, string2), __.as(string0).in(string3).as(string4), __.as(string0).in(string5).as(string4))", "dotnet": "g.V().Match(__.As(\"a\").Has(\"name\", \"Garcia\"), __.As(\"a\").In(\"writtenBy\").As(\"b\"), __.As(\"a\").In(\"sungBy\").As(\"b\"))", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Has(\"name\", \"Garcia\"), __.As(\"a\").In(\"writtenBy\").As(\"b\"), __.As(\"a\").In(\"sungBy\").As(\"b\"))", "go": "g.V().Match(gremlingo.T__.As(\"a\").Has(\"name\", \"Garcia\"), gremlingo.T__.As(\"a\").In(\"writtenBy\").As(\"b\"), gremlingo.T__.As(\"a\").In(\"sungBy\").As(\"b\"))", "groovy": "g.V().match(__.as(\"a\").has(\"name\", \"Garcia\"), __.as(\"a\").in(\"writtenBy\").as(\"b\"), __.as(\"a\").in(\"sungBy\").as(\"b\"))", "java": "g.V().match(__.as(\"a\").has(\"name\", \"Garcia\"), __.as(\"a\").in(\"writtenBy\").as(\"b\"), __.as(\"a\").in(\"sungBy\").as(\"b\"))", @@ -25187,6 +26773,7 @@ "canonical": "g.V().hasLabel(\"song\").match(__.as(\"a\").values(\"name\").as(\"b\"), __.as(\"a\").values(\"performances\").as(\"c\")).select(\"b\", \"c\").count()", "anonymized": "g.V().hasLabel(string0).match(__.as(string1).values(string2).as(string3), __.as(string1).values(string4).as(string5)).select(string3, string5).count()", "dotnet": "g.V().HasLabel(\"song\").Match(__.As(\"a\").Values(\"name\").As(\"b\"), __.As(\"a\").Values(\"performances\").As(\"c\")).Select(\"b\", \"c\").Count()", + "dotnet_parameterize": "g.V().HasLabel(\"song\").Match(__.As(\"a\").Values(\"name\").As(\"b\"), __.As(\"a\").Values(\"performances\").As(\"c\")).Select(\"b\", \"c\").Count()", "go": "g.V().HasLabel(\"song\").Match(gremlingo.T__.As(\"a\").Values(\"name\").As(\"b\"), gremlingo.T__.As(\"a\").Values(\"performances\").As(\"c\")).Select(\"b\", \"c\").Count()", "groovy": "g.V().hasLabel(\"song\").match(__.as(\"a\").values(\"name\").as(\"b\"), __.as(\"a\").values(\"performances\").as(\"c\")).select(\"b\", \"c\").count()", "java": "g.V().hasLabel(\"song\").match(__.as(\"a\").values(\"name\").as(\"b\"), __.as(\"a\").values(\"performances\").as(\"c\")).select(\"b\", \"c\").count()", @@ -25204,6 +26791,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"followedBy\").count().is(P.gt(10)).as(\"b\"), __.as(\"a\").in(\"followedBy\").count().is(P.gt(10)).as(\"b\")).count()", "anonymized": "g.V().match(__.as(string0).out(string1).count().is(P.gt(number0)).as(string2), __.as(string0).in(string1).count().is(P.gt(number0)).as(string2)).count()", "dotnet": "g.V().Match(__.As(\"a\").Out(\"followedBy\").Count().Is(P.Gt(10)).As(\"b\"), __.As(\"a\").In(\"followedBy\").Count().Is(P.Gt(10)).As(\"b\")).Count()", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"followedBy\").Count().Is(P.Gt(10)).As(\"b\"), __.As(\"a\").In(\"followedBy\").Count().Is(P.Gt(10)).As(\"b\")).Count()", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"followedBy\").Count().Is(gremlingo.P.Gt(10)).As(\"b\"), gremlingo.T__.As(\"a\").In(\"followedBy\").Count().Is(gremlingo.P.Gt(10)).As(\"b\")).Count()", "groovy": "g.V().match(__.as(\"a\").out(\"followedBy\").count().is(P.gt(10)).as(\"b\"), __.as(\"a\").in(\"followedBy\").count().is(P.gt(10)).as(\"b\")).count()", "java": "g.V().match(__.as(\"a\").out(\"followedBy\").count().is(P.gt(10)).as(\"b\"), __.as(\"a\").in(\"followedBy\").count().is(P.gt(10)).as(\"b\")).count()", @@ -25221,6 +26809,7 @@ "canonical": "g.V().match(__.as(\"a\").in(\"sungBy\").as(\"b\"), __.as(\"a\").in(\"writtenBy\").as(\"c\"), __.as(\"b\").out(\"writtenBy\").as(\"d\")).where(__.as(\"c\").out(\"sungBy\").as(\"d\")).where(__.as(\"d\").has(\"name\", \"Garcia\"))", "anonymized": "g.V().match(__.as(string0).in(string1).as(string2), __.as(string0).in(string3).as(string4), __.as(string2).out(string3).as(string5)).where(__.as(string4).out(string1).as(string5)).where(__.as(string5).has(string6, string7))", "dotnet": "g.V().Match(__.As(\"a\").In(\"sungBy\").As(\"b\"), __.As(\"a\").In(\"writtenBy\").As(\"c\"), __.As(\"b\").Out(\"writtenBy\").As(\"d\")).Where(__.As(\"c\").Out(\"sungBy\").As(\"d\")).Where(__.As(\"d\").Has(\"name\", \"Garcia\"))", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").In(\"sungBy\").As(\"b\"), __.As(\"a\").In(\"writtenBy\").As(\"c\"), __.As(\"b\").Out(\"writtenBy\").As(\"d\")).Where(__.As(\"c\").Out(\"sungBy\").As(\"d\")).Where(__.As(\"d\").Has(\"name\", \"Garcia\"))", "go": "g.V().Match(gremlingo.T__.As(\"a\").In(\"sungBy\").As(\"b\"), gremlingo.T__.As(\"a\").In(\"writtenBy\").As(\"c\"), gremlingo.T__.As(\"b\").Out(\"writtenBy\").As(\"d\")).Where(gremlingo.T__.As(\"c\").Out(\"sungBy\").As(\"d\")).Where(gremlingo.T__.As(\"d\").Has(\"name\", \"Garcia\"))", "groovy": "g.V().match(__.as(\"a\").in(\"sungBy\").as(\"b\"), __.as(\"a\").in(\"writtenBy\").as(\"c\"), __.as(\"b\").out(\"writtenBy\").as(\"d\")).where(__.as(\"c\").out(\"sungBy\").as(\"d\")).where(__.as(\"d\").has(\"name\", \"Garcia\"))", "java": "g.V().match(__.as(\"a\").in(\"sungBy\").as(\"b\"), __.as(\"a\").in(\"writtenBy\").as(\"c\"), __.as(\"b\").out(\"writtenBy\").as(\"d\")).where(__.as(\"c\").out(\"sungBy\").as(\"d\")).where(__.as(\"d\").has(\"name\", \"Garcia\"))", @@ -25238,6 +26827,7 @@ "canonical": "g.V().match(__.as(\"a\").has(\"name\", \"Garcia\"), __.as(\"a\").in(\"writtenBy\").as(\"b\"), __.as(\"b\").out(\"followedBy\").as(\"c\"), __.as(\"c\").out(\"writtenBy\").as(\"d\"), __.where(\"d\", P.neq(\"a\")))", "anonymized": "g.V().match(__.as(string0).has(string1, string2), __.as(string0).in(string3).as(string4), __.as(string4).out(string5).as(string6), __.as(string6).out(string3).as(string7), __.where(string7, P.neq(string0)))", "dotnet": "g.V().Match(__.As(\"a\").Has(\"name\", \"Garcia\"), __.As(\"a\").In(\"writtenBy\").As(\"b\"), __.As(\"b\").Out(\"followedBy\").As(\"c\"), __.As(\"c\").Out(\"writtenBy\").As(\"d\"), __.Where(\"d\", P.Neq(\"a\")))", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Has(\"name\", \"Garcia\"), __.As(\"a\").In(\"writtenBy\").As(\"b\"), __.As(\"b\").Out(\"followedBy\").As(\"c\"), __.As(\"c\").Out(\"writtenBy\").As(\"d\"), __.Where(\"d\", P.Neq(\"a\")))", "go": "g.V().Match(gremlingo.T__.As(\"a\").Has(\"name\", \"Garcia\"), gremlingo.T__.As(\"a\").In(\"writtenBy\").As(\"b\"), gremlingo.T__.As(\"b\").Out(\"followedBy\").As(\"c\"), gremlingo.T__.As(\"c\").Out(\"writtenBy\").As(\"d\"), gremlingo.T__.Where(\"d\", gremlingo.P.Neq(\"a\")))", "groovy": "g.V().match(__.as(\"a\").has(\"name\", \"Garcia\"), __.as(\"a\").in(\"writtenBy\").as(\"b\"), __.as(\"b\").out(\"followedBy\").as(\"c\"), __.as(\"c\").out(\"writtenBy\").as(\"d\"), __.where(\"d\", P.neq(\"a\")))", "java": "g.V().match(__.as(\"a\").has(\"name\", \"Garcia\"), __.as(\"a\").in(\"writtenBy\").as(\"b\"), __.as(\"b\").out(\"followedBy\").as(\"c\"), __.as(\"c\").out(\"writtenBy\").as(\"d\"), __.where(\"d\", P.neq(\"a\")))", @@ -25255,6 +26845,7 @@ "canonical": "g.V().match(__.as(\"a\").out(\"knows\").values(\"name\").as(\"b\")).identity()", "anonymized": "g.V().match(__.as(string0).out(string1).values(string2).as(string3)).identity()", "dotnet": "g.V().Match(__.As(\"a\").Out(\"knows\").Values(\"name\").As(\"b\")).Identity()", + "dotnet_parameterize": "g.V().Match(__.As(\"a\").Out(\"knows\").Values(\"name\").As(\"b\")).Identity()", "go": "g.V().Match(gremlingo.T__.As(\"a\").Out(\"knows\").Values(\"name\").As(\"b\")).Identity()", "groovy": "g.V().match(__.as(\"a\").out(\"knows\").values(\"name\").as(\"b\")).identity()", "java": "g.V().match(__.as(\"a\").out(\"knows\").values(\"name\").as(\"b\")).identity()", @@ -25272,6 +26863,7 @@ "canonical": "g.V().outE().math(\"0-_\").by(\"weight\")", "anonymized": "g.V().outE().math(string0).by(string1)", "dotnet": "g.V().OutE().Math(\"0-_\").By(\"weight\")", + "dotnet_parameterize": "g.V().OutE().Math(\"0-_\").By(\"weight\")", "go": "g.V().OutE().Math(\"0-_\").By(\"weight\")", "groovy": "g.V().outE().math(\"0-_\").by(\"weight\")", "java": "g.V().outE().math(\"0-_\").by(\"weight\")", @@ -25289,6 +26881,7 @@ "canonical": "g.V().has(\"age\").valueMap().math(\"_+_\").by(__.select(\"age\").unfold())", "anonymized": "g.V().has(string0).valueMap().math(string1).by(__.select(string0).unfold())", "dotnet": "g.V().Has(\"age\").ValueMap().Math(\"_+_\").By(__.Select(\"age\").Unfold())", + "dotnet_parameterize": "g.V().Has(\"age\").ValueMap().Math(\"_+_\").By(__.Select(\"age\").Unfold())", "go": "g.V().Has(\"age\").ValueMap().Math(\"_+_\").By(gremlingo.T__.Select(\"age\").Unfold())", "groovy": "g.V().has(\"age\").valueMap().math(\"_+_\").by(__.select(\"age\").unfold())", "java": "g.V().has(\"age\").valueMap().math(\"_+_\").by(__.select(\"age\").unfold())", @@ -25306,6 +26899,7 @@ "canonical": "g.V().as(\"a\").out(\"knows\").as(\"b\").math(\"a + b\").by(\"age\")", "anonymized": "g.V().as(string0).out(string1).as(string2).math(string3).by(string4)", "dotnet": "g.V().As(\"a\").Out(\"knows\").As(\"b\").Math(\"a + b\").By(\"age\")", + "dotnet_parameterize": "g.V().As(\"a\").Out(\"knows\").As(\"b\").Math(\"a + b\").By(\"age\")", "go": "g.V().As(\"a\").Out(\"knows\").As(\"b\").Math(\"a + b\").By(\"age\")", "groovy": "g.V().as(\"a\").out(\"knows\").as(\"b\").math(\"a + b\").by(\"age\")", "java": "g.V().as(\"a\").out(\"knows\").as(\"b\").math(\"a + b\").by(\"age\")", @@ -25323,6 +26917,7 @@ "canonical": "g.withSideEffect(\"x\", 100i).V().values(\"age\").math(\"_ + x\")", "anonymized": "g.withSideEffect(string0, integer0).V().values(string1).math(string2)", "dotnet": "g.WithSideEffect(\"x\", 100).V().Values(\"age\").Math(\"_ + x\")", + "dotnet_parameterize": "g.WithSideEffect(\"x\", 100).V().Values(\"age\").Math(\"_ + x\")", "go": "g.WithSideEffect(\"x\", int32(100)).V().Values(\"age\").Math(\"_ + x\")", "groovy": "g.withSideEffect(\"x\", 100i).V().values(\"age\").math(\"_ + x\")", "java": "g.withSideEffect(\"x\", 100).V().values(\"age\").math(\"_ + x\")", @@ -25340,6 +26935,7 @@ "canonical": "g.V().as(\"a\").out(\"created\").as(\"b\").math(\"b + a\").by(__.in(\"created\").count()).by(\"age\")", "anonymized": "g.V().as(string0).out(string1).as(string2).math(string3).by(__.in(string1).count()).by(string4)", "dotnet": "g.V().As(\"a\").Out(\"created\").As(\"b\").Math(\"b + a\").By(__.In(\"created\").Count()).By(\"age\")", + "dotnet_parameterize": "g.V().As(\"a\").Out(\"created\").As(\"b\").Math(\"b + a\").By(__.In(\"created\").Count()).By(\"age\")", "go": "g.V().As(\"a\").Out(\"created\").As(\"b\").Math(\"b + a\").By(gremlingo.T__.In(\"created\").Count()).By(\"age\")", "groovy": "g.V().as(\"a\").out(\"created\").as(\"b\").math(\"b + a\").by(__.in(\"created\").count()).by(\"age\")", "java": "g.V().as(\"a\").out(\"created\").as(\"b\").math(\"b + a\").by(__.in(\"created\").count()).by(\"age\")", @@ -25357,6 +26953,7 @@ "canonical": "g.withSack(1).inject(1).repeat(__.sack(Operator.sum).by(__.constant(1))).times(5).emit().math(\"sin _\").by(__.sack())", "anonymized": "g.withSack(number0).inject(number0).repeat(__.sack(Operator.sum).by(__.constant(number0))).times(number1).emit().math(string0).by(__.sack())", "dotnet": "g.WithSack(1).Inject(1).Repeat(__.Sack(Operator.Sum).By(__.Constant(1))).Times(5).Emit().Math(\"sin _\").By(__.Sack())", + "dotnet_parameterize": "g.WithSack(1).Inject(1).Repeat(__.Sack(Operator.Sum).By(__.Constant(1))).Times(5).Emit().Math(\"sin _\").By(__.Sack())", "go": "g.WithSack(1).Inject(1).Repeat(gremlingo.T__.Sack(gremlingo.Operator.Sum).By(gremlingo.T__.Constant(1))).Times(5).Emit().Math(\"sin _\").By(gremlingo.T__.Sack())", "groovy": "g.withSack(1).inject(1).repeat(__.sack(Operator.sum).by(__.constant(1))).times(5).emit().math(\"sin _\").by(__.sack())", "java": "g.withSack(1).inject(1).repeat(__.sack(Operator.sum).by(__.constant(1))).times(5).emit().math(\"sin _\").by(__.sack())", @@ -25374,6 +26971,7 @@ "canonical": "g.V().project(\"a\", \"b\", \"c\").by(__.bothE().values(\"weight\").sum()).by(__.bothE().count()).by(\"name\").order().by(__.math(\"a / b\"), Order.desc).select(\"c\")", "anonymized": "g.V().project(string0, string1, string2).by(__.bothE().values(string3).sum()).by(__.bothE().count()).by(string4).order().by(__.math(string5), Order.desc).select(string2)", "dotnet": "g.V().Project(\"a\", \"b\", \"c\").By(__.BothE().Values(\"weight\").Sum()).By(__.BothE().Count()).By(\"name\").Order().By(__.Math(\"a / b\"), Order.Desc).Select(\"c\")", + "dotnet_parameterize": "g.V().Project(\"a\", \"b\", \"c\").By(__.BothE().Values(\"weight\").Sum()).By(__.BothE().Count()).By(\"name\").Order().By(__.Math(\"a / b\"), Order.Desc).Select(\"c\")", "go": "g.V().Project(\"a\", \"b\", \"c\").By(gremlingo.T__.BothE().Values(\"weight\").Sum()).By(gremlingo.T__.BothE().Count()).By(\"name\").Order().By(gremlingo.T__.Math(\"a / b\"), gremlingo.Order.Desc).Select(\"c\")", "groovy": "g.V().project(\"a\", \"b\", \"c\").by(__.bothE().values(\"weight\").sum()).by(__.bothE().count()).by(\"name\").order().by(__.math(\"a / b\"), Order.desc).select(\"c\")", "java": "g.V().project(\"a\", \"b\", \"c\").by(__.bothE().values(\"weight\").sum()).by(__.bothE().count()).by(\"name\").order().by(__.math(\"a / b\"), Order.desc).select(\"c\")", @@ -25391,6 +26989,7 @@ "canonical": "g.V().math(\"_+_\").by(\"age\")", "anonymized": "g.V().math(string0).by(string1)", "dotnet": "g.V().Math(\"_+_\").By(\"age\")", + "dotnet_parameterize": "g.V().Math(\"_+_\").By(\"age\")", "go": "g.V().Math(\"_+_\").By(\"age\")", "groovy": "g.V().math(\"_+_\").by(\"age\")", "java": "g.V().math(\"_+_\").by(\"age\")", @@ -25408,6 +27007,7 @@ "canonical": "g.V().valueMap().math(\"_+_\").by(__.select(\"age\").unfold())", "anonymized": "g.V().valueMap().math(string0).by(__.select(string1).unfold())", "dotnet": "g.V().ValueMap().Math(\"_+_\").By(__.Select(\"age\").Unfold())", + "dotnet_parameterize": "g.V().ValueMap().Math(\"_+_\").By(__.Select(\"age\").Unfold())", "go": "g.V().ValueMap().Math(\"_+_\").By(gremlingo.T__.Select(\"age\").Unfold())", "groovy": "g.V().valueMap().math(\"_+_\").by(__.select(\"age\").unfold())", "java": "g.V().valueMap().math(\"_+_\").by(__.select(\"age\").unfold())", @@ -25425,6 +27025,7 @@ "canonical": "g.V(vid1).outE().as(\"expectedWeight\").math(\"expectedWeight + 1\").by(\"weight\")", "anonymized": "g.V(vid1).outE().as(string0).math(string1).by(string2)", "dotnet": "g.V(vid1).OutE().As(\"expectedWeight\").Math(\"expectedWeight + 1\").By(\"weight\")", + "dotnet_parameterize": "g.V(vid1).OutE().As(\"expectedWeight\").Math(\"expectedWeight + 1\").By(\"weight\")", "go": "g.V(vid1).OutE().As(\"expectedWeight\").Math(\"expectedWeight + 1\").By(\"weight\")", "groovy": "g.V(vid1).outE().as(\"expectedWeight\").math(\"expectedWeight + 1\").by(\"weight\")", "java": "g.V(vid1).outE().as(\"expectedWeight\").math(\"expectedWeight + 1\").by(\"weight\")", @@ -25442,6 +27043,7 @@ "canonical": "g.V().values(\"age\").max()", "anonymized": "g.V().values(string0).max()", "dotnet": "g.V().Values(\"age\").Max()", + "dotnet_parameterize": "g.V().Values(\"age\").Max()", "go": "g.V().Values(\"age\").Max()", "groovy": "g.V().values(\"age\").max()", "java": "g.V().values(\"age\").max()", @@ -25459,6 +27061,7 @@ "canonical": "g.V().values(\"foo\").max()", "anonymized": "g.V().values(string0).max()", "dotnet": "g.V().Values(\"foo\").Max()", + "dotnet_parameterize": "g.V().Values(\"foo\").Max()", "go": "g.V().Values(\"foo\").Max()", "groovy": "g.V().values(\"foo\").max()", "java": "g.V().values(\"foo\").max()", @@ -25476,6 +27079,7 @@ "canonical": "g.V().values(\"name\").max()", "anonymized": "g.V().values(string0).max()", "dotnet": "g.V().Values(\"name\").Max()", + "dotnet_parameterize": "g.V().Values(\"name\").Max()", "go": "g.V().Values(\"name\").Max()", "groovy": "g.V().values(\"name\").max()", "java": "g.V().values(\"name\").max()", @@ -25493,6 +27097,7 @@ "canonical": "g.V().values(\"age\").fold().max(Scope.local)", "anonymized": "g.V().values(string0).fold().max(Scope.local)", "dotnet": "g.V().Values(\"age\").Fold().Max(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"age\").Fold().Max(Scope.Local)", "go": "g.V().Values(\"age\").Fold().Max(gremlingo.Scope.Local)", "groovy": "g.V().values(\"age\").fold().max(Scope.local)", "java": "g.V().values(\"age\").fold().max(Scope.local)", @@ -25510,6 +27115,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").max(Scope.local)", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).max(Scope.local)", "dotnet": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Max(Scope.Local)", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Max(Scope.Local)", "go": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Max(gremlingo.Scope.Local)", "groovy": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").max(Scope.local)", "java": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").max(Scope.local)", @@ -25527,6 +27133,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").max(Scope.local)", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).max(Scope.local)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Max(Scope.Local)", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Max(Scope.Local)", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Max(gremlingo.Scope.Local)", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").max(Scope.local)", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"age\").cap(\"a\").max(Scope.local)", @@ -25544,6 +27151,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().max()", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).unfold().max()", "dotnet": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Max()", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Max()", "go": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Max()", "groovy": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().max()", "java": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().max()", @@ -25561,6 +27169,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().max()", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).unfold().max()", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Max()", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Max()", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Max()", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().max()", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().max()", @@ -25578,6 +27187,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").max(Scope.local)", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).max(Scope.local)", "dotnet": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Max(Scope.Local)", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Max(Scope.Local)", "go": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Max(gremlingo.Scope.Local)", "groovy": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").max(Scope.local)", "java": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").max(Scope.local)", @@ -25595,6 +27205,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").max(Scope.local)", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).max(Scope.local)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Max(Scope.Local)", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Max(Scope.Local)", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Max(gremlingo.Scope.Local)", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").max(Scope.local)", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"foo\").cap(\"a\").max(Scope.local)", @@ -25612,6 +27223,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().max()", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).unfold().max()", "dotnet": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Max()", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Max()", "go": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Max()", "groovy": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().max()", "java": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().max()", @@ -25629,6 +27241,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().max()", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).unfold().max()", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Max()", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Max()", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Max()", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().max()", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().max()", @@ -25646,6 +27259,7 @@ "canonical": "g.V().values(\"foo\").fold().max(Scope.local)", "anonymized": "g.V().values(string0).fold().max(Scope.local)", "dotnet": "g.V().Values(\"foo\").Fold().Max(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"foo\").Fold().Max(Scope.Local)", "go": "g.V().Values(\"foo\").Fold().Max(gremlingo.Scope.Local)", "groovy": "g.V().values(\"foo\").fold().max(Scope.local)", "java": "g.V().values(\"foo\").fold().max(Scope.local)", @@ -25663,6 +27277,7 @@ "canonical": "g.V().values(\"name\").fold().max(Scope.local)", "anonymized": "g.V().values(string0).fold().max(Scope.local)", "dotnet": "g.V().Values(\"name\").Fold().Max(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Max(Scope.Local)", "go": "g.V().Values(\"name\").Fold().Max(gremlingo.Scope.Local)", "groovy": "g.V().values(\"name\").fold().max(Scope.local)", "java": "g.V().values(\"name\").fold().max(Scope.local)", @@ -25680,6 +27295,7 @@ "canonical": "g.V().repeat(__.both()).times(5).values(\"age\").max()", "anonymized": "g.V().repeat(__.both()).times(number0).values(string0).max()", "dotnet": "g.V().Repeat(__.Both()).Times(5).Values(\"age\").Max()", + "dotnet_parameterize": "g.V().Repeat(__.Both()).Times(5).Values(\"age\").Max()", "go": "g.V().Repeat(gremlingo.T__.Both()).Times(5).Values(\"age\").Max()", "groovy": "g.V().repeat(__.both()).times(5).values(\"age\").max()", "java": "g.V().repeat(__.both()).times(5).values(\"age\").max()", @@ -25697,6 +27313,7 @@ "canonical": "g.V().hasLabel(\"software\").group().by(\"name\").by(__.bothE().values(\"weight\").max())", "anonymized": "g.V().hasLabel(string0).group().by(string1).by(__.bothE().values(string2).max())", "dotnet": "g.V().HasLabel(\"software\").Group().By(\"name\").By(__.BothE().Values(\"weight\").Max())", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Group().By(\"name\").By(__.BothE().Values(\"weight\").Max())", "go": "g.V().HasLabel(\"software\").Group().By(\"name\").By(gremlingo.T__.BothE().Values(\"weight\").Max())", "groovy": "g.V().hasLabel(\"software\").group().by(\"name\").by(__.bothE().values(\"weight\").max())", "java": "g.V().hasLabel(\"software\").group().by(\"name\").by(__.bothE().values(\"weight\").max())", @@ -25714,6 +27331,7 @@ "canonical": "g.V(vid1).values(\"age\").max(Scope.local)", "anonymized": "g.V(vid1).values(string0).max(Scope.local)", "dotnet": "g.V(vid1).Values(\"age\").Max(Scope.Local)", + "dotnet_parameterize": "g.V(vid1).Values(\"age\").Max(Scope.Local)", "go": "g.V(vid1).Values(\"age\").Max(gremlingo.Scope.Local)", "groovy": "g.V(vid1).values(\"age\").max(Scope.local)", "java": "g.V(vid1).values(\"age\").max(Scope.local)", @@ -25731,6 +27349,7 @@ "canonical": "g.V().local(__.union(__.values(\"age\"), __.outE().values(\"weight\")).fold()).max(Scope.local)", "anonymized": "g.V().local(__.union(__.values(string0), __.outE().values(string1)).fold()).max(Scope.local)", "dotnet": "g.V().Local(__.Union(__.Values(\"age\"), __.OutE().Values(\"weight\")).Fold()).Max(Scope.Local)", + "dotnet_parameterize": "g.V().Local(__.Union(__.Values(\"age\"), __.OutE().Values(\"weight\")).Fold()).Max(Scope.Local)", "go": "g.V().Local(gremlingo.T__.Union(gremlingo.T__.Values(\"age\"), gremlingo.T__.OutE().Values(\"weight\")).Fold()).Max(gremlingo.Scope.Local)", "groovy": "g.V().local(__.union(__.values(\"age\"), __.outE().values(\"weight\")).fold()).max(Scope.local)", "java": "g.V().local(__.union(__.values(\"age\"), __.outE().values(\"weight\")).fold()).max(Scope.local)", @@ -25748,6 +27367,7 @@ "canonical": "g.V().values(\"age\").mean()", "anonymized": "g.V().values(string0).mean()", "dotnet": "g.V().Values(\"age\").Mean()", + "dotnet_parameterize": "g.V().Values(\"age\").Mean()", "go": "g.V().Values(\"age\").Mean()", "groovy": "g.V().values(\"age\").mean()", "java": "g.V().values(\"age\").mean()", @@ -25765,6 +27385,7 @@ "canonical": "g.V().values(\"foo\").mean()", "anonymized": "g.V().values(string0).mean()", "dotnet": "g.V().Values(\"foo\").Mean()", + "dotnet_parameterize": "g.V().Values(\"foo\").Mean()", "go": "g.V().Values(\"foo\").Mean()", "groovy": "g.V().values(\"foo\").mean()", "java": "g.V().values(\"foo\").mean()", @@ -25782,6 +27403,7 @@ "canonical": "g.V().values(\"age\").fold().mean(Scope.local)", "anonymized": "g.V().values(string0).fold().mean(Scope.local)", "dotnet": "g.V().Values(\"age\").Fold().Mean(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"age\").Fold().Mean(Scope.Local)", "go": "g.V().Values(\"age\").Fold().Mean(gremlingo.Scope.Local)", "groovy": "g.V().values(\"age\").fold().mean(Scope.local)", "java": "g.V().values(\"age\").fold().mean(Scope.local)", @@ -25799,6 +27421,7 @@ "canonical": "g.V().values(\"foo\").fold().mean(Scope.local)", "anonymized": "g.V().values(string0).fold().mean(Scope.local)", "dotnet": "g.V().Values(\"foo\").Fold().Mean(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"foo\").Fold().Mean(Scope.Local)", "go": "g.V().Values(\"foo\").Fold().Mean(gremlingo.Scope.Local)", "groovy": "g.V().values(\"foo\").fold().mean(Scope.local)", "java": "g.V().values(\"foo\").fold().mean(Scope.local)", @@ -25816,6 +27439,7 @@ "canonical": "g.V().hasLabel(\"software\").group().by(\"name\").by(__.bothE().values(\"weight\").mean())", "anonymized": "g.V().hasLabel(string0).group().by(string1).by(__.bothE().values(string2).mean())", "dotnet": "g.V().HasLabel(\"software\").Group().By(\"name\").By(__.BothE().Values(\"weight\").Mean())", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Group().By(\"name\").By(__.BothE().Values(\"weight\").Mean())", "go": "g.V().HasLabel(\"software\").Group().By(\"name\").By(gremlingo.T__.BothE().Values(\"weight\").Mean())", "groovy": "g.V().hasLabel(\"software\").group().by(\"name\").by(__.bothE().values(\"weight\").mean())", "java": "g.V().hasLabel(\"software\").group().by(\"name\").by(__.bothE().values(\"weight\").mean())", @@ -25833,6 +27457,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").mean(Scope.local)", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).mean(Scope.local)", "dotnet": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Mean(Scope.Local)", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Mean(Scope.Local)", "go": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Mean(gremlingo.Scope.Local)", "groovy": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").mean(Scope.local)", "java": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").mean(Scope.local)", @@ -25850,6 +27475,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").mean(Scope.local)", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).mean(Scope.local)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Mean(Scope.Local)", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Mean(Scope.Local)", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Mean(gremlingo.Scope.Local)", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").mean(Scope.local)", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"age\").cap(\"a\").mean(Scope.local)", @@ -25867,6 +27493,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().mean()", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).unfold().mean()", "dotnet": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Mean()", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Mean()", "go": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Mean()", "groovy": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().mean()", "java": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().mean()", @@ -25884,6 +27511,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().mean()", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).unfold().mean()", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Mean()", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Mean()", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Mean()", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().mean()", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().mean()", @@ -25901,6 +27529,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").mean(Scope.local)", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).mean(Scope.local)", "dotnet": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Mean(Scope.Local)", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Mean(Scope.Local)", "go": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Mean(gremlingo.Scope.Local)", "groovy": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").mean(Scope.local)", "java": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").mean(Scope.local)", @@ -25918,6 +27547,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").mean(Scope.local)", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).mean(Scope.local)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Mean(Scope.Local)", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Mean(Scope.Local)", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Mean(gremlingo.Scope.Local)", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").mean(Scope.local)", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"foo\").cap(\"a\").mean(Scope.local)", @@ -25935,6 +27565,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().mean()", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).unfold().mean()", "dotnet": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Mean()", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Mean()", "go": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Mean()", "groovy": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().mean()", "java": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().mean()", @@ -25952,6 +27583,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().mean()", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).unfold().mean()", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Mean()", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Mean()", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Mean()", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().mean()", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().mean()", @@ -25969,6 +27601,7 @@ "canonical": "g.inject(null, 10, 20, null).mean()", "anonymized": "g.inject(object0, number0, number1, object0).mean()", "dotnet": "g.Inject(null, 10, 20, null).Mean()", + "dotnet_parameterize": "g.Inject(null, 10, 20, null).Mean()", "go": "g.Inject(nil, 10, 20, nil).Mean()", "groovy": "g.inject(null, 10, 20, null).mean()", "java": "g.inject(null, 10, 20, null).mean()", @@ -25986,6 +27619,7 @@ "canonical": "g.inject([null, 10, 20, null]).mean(Scope.local)", "anonymized": "g.inject(list0).mean(Scope.local)", "dotnet": "g.Inject(new List { null, 10, 20, null }).Mean(Scope.Local)", + "dotnet_parameterize": "g.Inject(new List { null, 10, 20, null }).Mean(Scope.Local)", "go": "g.Inject([]interface{}{nil, 10, 20, nil}).Mean(gremlingo.Scope.Local)", "groovy": "g.inject([null, 10, 20, null]).mean(Scope.local)", "java": "g.inject(new ArrayList() {{ add(null); add(10); add(20); add(null); }}).mean(Scope.local)", @@ -26003,6 +27637,7 @@ "canonical": "g.V(vid1).values(\"age\").mean(Scope.local)", "anonymized": "g.V(vid1).values(string0).mean(Scope.local)", "dotnet": "g.V(vid1).Values(\"age\").Mean(Scope.Local)", + "dotnet_parameterize": "g.V(vid1).Values(\"age\").Mean(Scope.Local)", "go": "g.V(vid1).Values(\"age\").Mean(gremlingo.Scope.Local)", "groovy": "g.V(vid1).values(\"age\").mean(Scope.local)", "java": "g.V(vid1).values(\"age\").mean(Scope.local)", @@ -26020,6 +27655,7 @@ "canonical": "g.V().local(__.union(__.values(\"age\"), __.outE().values(\"weight\")).fold()).mean(Scope.local)", "anonymized": "g.V().local(__.union(__.values(string0), __.outE().values(string1)).fold()).mean(Scope.local)", "dotnet": "g.V().Local(__.Union(__.Values(\"age\"), __.OutE().Values(\"weight\")).Fold()).Mean(Scope.Local)", + "dotnet_parameterize": "g.V().Local(__.Union(__.Values(\"age\"), __.OutE().Values(\"weight\")).Fold()).Mean(Scope.Local)", "go": "g.V().Local(gremlingo.T__.Union(gremlingo.T__.Values(\"age\"), gremlingo.T__.OutE().Values(\"weight\")).Fold()).Mean(gremlingo.Scope.Local)", "groovy": "g.V().local(__.union(__.values(\"age\"), __.outE().values(\"weight\")).fold()).mean(Scope.local)", "java": "g.V().local(__.union(__.values(\"age\"), __.outE().values(\"weight\")).fold()).mean(Scope.local)", @@ -26037,6 +27673,7 @@ "canonical": "g.inject(null).merge(__.inject(1))", "anonymized": "g.inject(object0).merge(__.inject(number0))", "dotnet": "g.Inject(null).Merge(__.Inject(1))", + "dotnet_parameterize": "g.Inject(null).Merge(__.Inject(1))", "go": "g.Inject(nil).Merge(gremlingo.T__.Inject(1))", "groovy": "g.inject(null).merge(__.inject(1))", "java": "g.inject(null).merge(__.inject(1))", @@ -26054,6 +27691,7 @@ "canonical": "g.V().values(\"name\").merge(__.V().fold())", "anonymized": "g.V().values(string0).merge(__.V().fold())", "dotnet": "g.V().Values(\"name\").Merge(__.V().Fold())", + "dotnet_parameterize": "g.V().Values(\"name\").Merge(__.V().Fold())", "go": "g.V().Values(\"name\").Merge(gremlingo.T__.V().Fold())", "groovy": "g.V().values(\"name\").merge(__.V().fold())", "java": "g.V().values(\"name\").merge(__.V().fold())", @@ -26071,6 +27709,7 @@ "canonical": "g.V().fold().merge(__.constant(null))", "anonymized": "g.V().fold().merge(__.constant(object0))", "dotnet": "g.V().Fold().Merge(__.Constant(null))", + "dotnet_parameterize": "g.V().Fold().Merge(__.Constant(null))", "go": "g.V().Fold().Merge(gremlingo.T__.Constant(nil))", "groovy": "g.V().fold().merge(__.constant(null))", "java": "g.V().fold().merge(__.constant(null))", @@ -26088,6 +27727,7 @@ "canonical": "g.V().fold().merge(__.V())", "anonymized": "g.V().fold().merge(__.V())", "dotnet": "g.V().Fold().Merge(__.V())", + "dotnet_parameterize": "g.V().Fold().Merge(__.V())", "go": "g.V().Fold().Merge(gremlingo.T__.V())", "groovy": "g.V().fold().merge(__.V())", "java": "g.V().fold().merge(__.V())", @@ -26105,6 +27745,7 @@ "canonical": "g.V().elementMap().merge(__.constant(\"a\"))", "anonymized": "g.V().elementMap().merge(__.constant(string0))", "dotnet": "g.V().ElementMap().Merge(__.Constant(\"a\"))", + "dotnet_parameterize": "g.V().ElementMap().Merge(__.Constant(\"a\"))", "go": "g.V().ElementMap().Merge(gremlingo.T__.Constant(\"a\"))", "groovy": "g.V().elementMap().merge(__.constant(\"a\"))", "java": "g.V().elementMap().merge(__.constant(\"a\"))", @@ -26122,6 +27763,7 @@ "canonical": "g.V().fold().merge(__.V().as(\"a\").project(\"a\").by(\"name\"))", "anonymized": "g.V().fold().merge(__.V().as(string0).project(string0).by(string1))", "dotnet": "g.V().Fold().Merge(__.V().As(\"a\").Project(\"a\").By(\"name\"))", + "dotnet_parameterize": "g.V().Fold().Merge(__.V().As(\"a\").Project(\"a\").By(\"name\"))", "go": "g.V().Fold().Merge(gremlingo.T__.V().As(\"a\").Project(\"a\").By(\"name\"))", "groovy": "g.V().fold().merge(__.V().as(\"a\").project(\"a\").by(\"name\"))", "java": "g.V().fold().merge(__.V().as(\"a\").project(\"a\").by(\"name\"))", @@ -26139,6 +27781,7 @@ "canonical": "g.V().fold().merge([k:\"v\"])", "anonymized": "g.V().fold().merge(map0)", "dotnet": "g.V().Fold().Merge(new Dictionary {{ \"k\", \"v\" }})", + "dotnet_parameterize": "g.V().Fold().Merge(new Dictionary {{ \"k\", \"v\" }})", "go": "g.V().Fold().Merge(map[interface{}]interface{}{\"k\": \"v\" })", "groovy": "g.V().fold().merge([k:\"v\"])", "java": "g.V().fold().merge(new LinkedHashMap() {{ put(\"k\", \"v\"); }})", @@ -26156,6 +27799,7 @@ "canonical": "g.V().values(\"name\").fold().merge(2)", "anonymized": "g.V().values(string0).fold().merge(number0)", "dotnet": "g.V().Values(\"name\").Fold().Merge(2)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Merge(2)", "go": "g.V().Values(\"name\").Fold().Merge(2)", "groovy": "g.V().values(\"name\").fold().merge(2)", "java": "g.V().values(\"name\").fold().merge(2)", @@ -26173,6 +27817,7 @@ "canonical": "g.V().values(\"name\").fold().merge(null)", "anonymized": "g.V().values(string0).fold().merge(object0)", "dotnet": "g.V().Values(\"name\").Fold().Merge(null)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Merge(null)", "go": "g.V().Values(\"name\").Fold().Merge(nil)", "groovy": "g.V().values(\"name\").fold().merge(null)", "java": "g.V().values(\"name\").fold().merge(null)", @@ -26190,6 +27835,7 @@ "canonical": "g.V().values(\"nonexistant\").fold().merge(__.V().values(\"name\").fold())", "anonymized": "g.V().values(string0).fold().merge(__.V().values(string1).fold())", "dotnet": "g.V().Values(\"nonexistant\").Fold().Merge(__.V().Values(\"name\").Fold())", + "dotnet_parameterize": "g.V().Values(\"nonexistant\").Fold().Merge(__.V().Values(\"name\").Fold())", "go": "g.V().Values(\"nonexistant\").Fold().Merge(gremlingo.T__.V().Values(\"name\").Fold())", "groovy": "g.V().values(\"nonexistant\").fold().merge(__.V().values(\"name\").fold())", "java": "g.V().values(\"nonexistant\").fold().merge(__.V().values(\"name\").fold())", @@ -26207,6 +27853,7 @@ "canonical": "g.V().values(\"name\").fold().merge(__.V().values(\"nonexistant\").fold())", "anonymized": "g.V().values(string0).fold().merge(__.V().values(string1).fold())", "dotnet": "g.V().Values(\"name\").Fold().Merge(__.V().Values(\"nonexistant\").Fold())", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Merge(__.V().Values(\"nonexistant\").Fold())", "go": "g.V().Values(\"name\").Fold().Merge(gremlingo.T__.V().Values(\"nonexistant\").Fold())", "groovy": "g.V().values(\"name\").fold().merge(__.V().values(\"nonexistant\").fold())", "java": "g.V().values(\"name\").fold().merge(__.V().values(\"nonexistant\").fold())", @@ -26224,6 +27871,7 @@ "canonical": "g.V().values(\"age\").fold().merge(__.V().values(\"age\").fold())", "anonymized": "g.V().values(string0).fold().merge(__.V().values(string0).fold())", "dotnet": "g.V().Values(\"age\").Fold().Merge(__.V().Values(\"age\").Fold())", + "dotnet_parameterize": "g.V().Values(\"age\").Fold().Merge(__.V().Values(\"age\").Fold())", "go": "g.V().Values(\"age\").Fold().Merge(gremlingo.T__.V().Values(\"age\").Fold())", "groovy": "g.V().values(\"age\").fold().merge(__.V().values(\"age\").fold())", "java": "g.V().values(\"age\").fold().merge(__.V().values(\"age\").fold())", @@ -26241,6 +27889,7 @@ "canonical": "g.V().out().path().by(__.values(\"name\").toUpper()).merge([\"MARKO\"])", "anonymized": "g.V().out().path().by(__.values(string0).toUpper()).merge(list0)", "dotnet": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Merge(new List { \"MARKO\" })", + "dotnet_parameterize": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Merge(new List { \"MARKO\" })", "go": "g.V().Out().Path().By(gremlingo.T__.Values(\"name\").ToUpper()).Merge([]interface{}{\"MARKO\"})", "groovy": "g.V().out().path().by(__.values(\"name\").toUpper()).merge([\"MARKO\"])", "java": "g.V().out().path().by(__.values(\"name\").toUpper()).merge(new ArrayList() {{ add(\"MARKO\"); }})", @@ -26258,6 +27907,7 @@ "canonical": "g.inject([\"marko\"]).merge(__.V().values(\"name\").fold())", "anonymized": "g.inject(list0).merge(__.V().values(string0).fold())", "dotnet": "g.Inject(new List { \"marko\" }).Merge(__.V().Values(\"name\").Fold())", + "dotnet_parameterize": "g.Inject(new List { \"marko\" }).Merge(__.V().Values(\"name\").Fold())", "go": "g.Inject([]interface{}{\"marko\"}).Merge(gremlingo.T__.V().Values(\"name\").Fold())", "groovy": "g.inject([\"marko\"]).merge(__.V().values(\"name\").fold())", "java": "g.inject(new ArrayList() {{ add(\"marko\"); }}).merge(__.V().values(\"name\").fold())", @@ -26275,6 +27925,7 @@ "canonical": "g.V().valueMap(\"location\").select(Column.values).unfold().merge([\"seattle\", \"vancouver\"])", "anonymized": "g.V().valueMap(string0).select(Column.values).unfold().merge(list0)", "dotnet": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Merge(new List { \"seattle\", \"vancouver\" })", + "dotnet_parameterize": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Merge(new List { \"seattle\", \"vancouver\" })", "go": "g.V().ValueMap(\"location\").Select(gremlingo.Column.Values).Unfold().Merge([]interface{}{\"seattle\", \"vancouver\"})", "groovy": "g.V().valueMap(\"location\").select(Column.values).unfold().merge([\"seattle\", \"vancouver\"])", "java": "g.V().valueMap(\"location\").select(Column.values).unfold().merge(new ArrayList() {{ add(\"seattle\"); add(\"vancouver\"); }})", @@ -26292,6 +27943,7 @@ "canonical": "g.V().out().out().path().by(\"name\").merge([])", "anonymized": "g.V().out().out().path().by(string0).merge(list0)", "dotnet": "g.V().Out().Out().Path().By(\"name\").Merge(new List { })", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Merge(new List { })", "go": "g.V().Out().Out().Path().By(\"name\").Merge([]interface{}{})", "groovy": "g.V().out().out().path().by(\"name\").merge([])", "java": "g.V().out().out().path().by(\"name\").merge(new ArrayList() {{ }})", @@ -26309,6 +27961,7 @@ "canonical": "g.V().values(\"age\").fold().merge(__.constant(27).fold())", "anonymized": "g.V().values(string0).fold().merge(__.constant(number0).fold())", "dotnet": "g.V().Values(\"age\").Fold().Merge(__.Constant(27).Fold())", + "dotnet_parameterize": "g.V().Values(\"age\").Fold().Merge(__.Constant(27).Fold())", "go": "g.V().Values(\"age\").Fold().Merge(gremlingo.T__.Constant(27).Fold())", "groovy": "g.V().values(\"age\").fold().merge(__.constant(27).fold())", "java": "g.V().values(\"age\").fold().merge(__.constant(27).fold())", @@ -26326,6 +27979,7 @@ "canonical": "g.V().out().out().path().by(\"name\").merge([\"dave\", \"kelvin\"])", "anonymized": "g.V().out().out().path().by(string0).merge(list0)", "dotnet": "g.V().Out().Out().Path().By(\"name\").Merge(new List { \"dave\", \"kelvin\" })", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Merge(new List { \"dave\", \"kelvin\" })", "go": "g.V().Out().Out().Path().By(\"name\").Merge([]interface{}{\"dave\", \"kelvin\"})", "groovy": "g.V().out().out().path().by(\"name\").merge([\"dave\", \"kelvin\"])", "java": "g.V().out().out().path().by(\"name\").merge(new ArrayList() {{ add(\"dave\"); add(\"kelvin\"); }})", @@ -26343,6 +27997,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).merge([\"a\", \"c\"])", "anonymized": "g.inject(list0).merge(list1)", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Merge(new List { \"a\", \"c\" })", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Merge(new List { \"a\", \"c\" })", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Merge([]interface{}{\"a\", \"c\"})", "groovy": "g.inject([\"a\", null, \"b\"]).merge([\"a\", \"c\"])", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).merge(new ArrayList() {{ add(\"a\"); add(\"c\"); }})", @@ -26360,6 +28015,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).merge([\"a\", null, \"c\"])", "anonymized": "g.inject(list0).merge(list1)", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Merge(new List { \"a\", null, \"c\" })", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Merge(new List { \"a\", null, \"c\" })", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Merge([]interface{}{\"a\", nil, \"c\"})", "groovy": "g.inject([\"a\", null, \"b\"]).merge([\"a\", null, \"c\"])", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).merge(new ArrayList() {{ add(\"a\"); add(null); add(\"c\"); }})", @@ -26377,6 +28033,7 @@ "canonical": "g.inject([3, \"three\"]).merge([\"five\", \"three\", 7i])", "anonymized": "g.inject(list0).merge(list1)", "dotnet": "g.Inject(new List { 3, \"three\" }).Merge(new List { \"five\", \"three\", 7 })", + "dotnet_parameterize": "g.Inject(new List { 3, \"three\" }).Merge(new List { \"five\", \"three\", 7 })", "go": "g.Inject([]interface{}{3, \"three\"}).Merge([]interface{}{\"five\", \"three\", int32(7)})", "groovy": "g.inject([3, \"three\"]).merge([\"five\", \"three\", 7i])", "java": "g.inject(new ArrayList() {{ add(3); add(\"three\"); }}).merge(new ArrayList() {{ add(\"five\"); add(\"three\"); add(7); }})", @@ -26394,6 +28051,7 @@ "canonical": "g.V().as(\"name\").project(\"name\").by(\"name\").merge([\"other\":\"blueprint\"])", "anonymized": "g.V().as(string0).project(string0).by(string0).merge(map0)", "dotnet": "g.V().As(\"name\").Project(\"name\").By(\"name\").Merge(new Dictionary {{ \"other\", \"blueprint\" }})", + "dotnet_parameterize": "g.V().As(\"name\").Project(\"name\").By(\"name\").Merge(new Dictionary {{ \"other\", \"blueprint\" }})", "go": "g.V().As(\"name\").Project(\"name\").By(\"name\").Merge(map[interface{}]interface{}{\"other\": \"blueprint\" })", "groovy": "g.V().as(\"name\").project(\"name\").by(\"name\").merge([\"other\":\"blueprint\"])", "java": "g.V().as(\"name\").project(\"name\").by(\"name\").merge(new LinkedHashMap() {{ put(\"other\", \"blueprint\"); }})", @@ -26411,6 +28069,7 @@ "canonical": "g.V().has(\"name\", \"marko\").elementMap().merge(__.V().has(\"name\", \"lop\").elementMap())", "anonymized": "g.V().has(string0, string1).elementMap().merge(__.V().has(string0, string2).elementMap())", "dotnet": "g.V().Has(\"name\", \"marko\").ElementMap().Merge(__.V().Has(\"name\", \"lop\").ElementMap())", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").ElementMap().Merge(__.V().Has(\"name\", \"lop\").ElementMap())", "go": "g.V().Has(\"name\", \"marko\").ElementMap().Merge(gremlingo.T__.V().Has(\"name\", \"lop\").ElementMap())", "groovy": "g.V().has(\"name\", \"marko\").elementMap().merge(__.V().has(\"name\", \"lop\").elementMap())", "java": "g.V().has(\"name\", \"marko\").elementMap().merge(__.V().has(\"name\", \"lop\").elementMap())", @@ -26428,6 +28087,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addE(\"self\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addE(string4)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddE((string) \"self\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddE((string) \"self\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddE(\"self\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addE(\"self\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addE(\"self\")", @@ -26440,6 +28100,7 @@ "canonical": "g.V().mergeE(xx1).option(Merge.onMatch, [:])", "anonymized": "g.V().mergeE(map0).option(Merge.onMatch, map1)", "dotnet": "g.V().MergeE((IDictionary) xx1).Option(Merge.OnMatch, (IDictionary) new Dictionary {})", + "dotnet_parameterize": "g.V().MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnMatch, (IDictionary) new Dictionary {})", "go": "g.V().MergeE(xx1).Option(gremlingo.Merge.OnMatch, map[interface{}]interface{}{ })", "groovy": "g.V().mergeE(xx1).option(Merge.onMatch, [:])", "java": "g.V().mergeE(xx1).option(Merge.onMatch, new LinkedHashMap() {{ }})", @@ -26452,6 +28113,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -26464,6 +28126,7 @@ "canonical": "g.E().properties()", "anonymized": "g.E().properties()", "dotnet": "g.E().Properties()", + "dotnet_parameterize": "g.E().Properties()", "go": "g.E().Properties()", "groovy": "g.E().properties()", "java": "g.E().properties()", @@ -26476,6 +28139,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -26493,6 +28157,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addE(\"self\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addE(string4)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddE((string) \"self\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddE((string) \"self\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddE(\"self\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addE(\"self\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addE(\"self\")", @@ -26505,6 +28170,7 @@ "canonical": "g.V().mergeE(xx1).option(Merge.onMatch, null)", "anonymized": "g.V().mergeE(map0).option(Merge.onMatch, map1)", "dotnet": "g.V().MergeE((IDictionary) xx1).Option(Merge.OnMatch, (IDictionary) null)", + "dotnet_parameterize": "g.V().MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnMatch, (IDictionary) null)", "go": "g.V().MergeE(xx1).Option(gremlingo.Merge.OnMatch, nil)", "groovy": "g.V().mergeE(xx1).option(Merge.onMatch, (Map) null)", "java": "g.V().mergeE(xx1).option(Merge.onMatch, null)", @@ -26517,6 +28183,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -26529,6 +28196,7 @@ "canonical": "g.E().properties()", "anonymized": "g.E().properties()", "dotnet": "g.E().Properties()", + "dotnet_parameterize": "g.E().Properties()", "go": "g.E().Properties()", "groovy": "g.E().properties()", "java": "g.E().properties()", @@ -26541,6 +28209,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -26558,6 +28227,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -26570,6 +28240,7 @@ "canonical": "g.V().as(\"v\").mergeE(xx1).option(Merge.onCreate, null).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", "anonymized": "g.V().as(string0).mergeE(map0).option(Merge.onCreate, map1).option(Merge.outV, __.select(string0)).option(Merge.inV, __.select(string0))", "dotnet": "g.V().As(\"v\").MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) null).Option(Merge.OutV, (ITraversal) __.Select(\"v\")).Option(Merge.InV, (ITraversal) __.Select(\"v\"))", + "dotnet_parameterize": "g.V().As(\"v\").MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (IDictionary) null).Option(Merge.OutV, (ITraversal) __.Select(\"v\")).Option(Merge.InV, (ITraversal) __.Select(\"v\"))", "go": "g.V().As(\"v\").MergeE(xx1).Option(gremlingo.Merge.OnCreate, nil).Option(gremlingo.Merge.OutV, gremlingo.T__.Select(\"v\")).Option(gremlingo.Merge.InV, gremlingo.T__.Select(\"v\"))", "groovy": "g.V().as(\"v\").mergeE(xx1).option(Merge.onCreate, (Map) null).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", "java": "g.V().as(\"v\").mergeE(xx1).option(Merge.onCreate, null).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", @@ -26582,6 +28253,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -26594,6 +28266,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -26611,6 +28284,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -26623,6 +28297,7 @@ "canonical": "g.V().as(\"v\").mergeE([T.label:\"self\", (Direction.OUT):Merge.outV, (Direction.IN):Merge.inV]).option(Merge.onCreate, null).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", "anonymized": "g.V().as(string0).mergeE(map0).option(Merge.onCreate, map1).option(Merge.outV, __.select(string0)).option(Merge.inV, __.select(string0))", "dotnet": "g.V().As(\"v\").MergeE((IDictionary) new Dictionary {{ T.Label, \"self\" }, { Direction.Out, Merge.OutV }, { Direction.In, Merge.InV }}).Option(Merge.OnCreate, (IDictionary) null).Option(Merge.OutV, (ITraversal) __.Select(\"v\")).Option(Merge.InV, (ITraversal) __.Select(\"v\"))", + "dotnet_parameterize": "g.V().As(\"v\").MergeE((IDictionary) new Dictionary {{ T.Label, \"self\" }, { Direction.Out, Merge.OutV }, { Direction.In, Merge.InV }}).Option(Merge.OnCreate, (IDictionary) null).Option(Merge.OutV, (ITraversal) __.Select(\"v\")).Option(Merge.InV, (ITraversal) __.Select(\"v\"))", "go": "g.V().As(\"v\").MergeE(map[interface{}]interface{}{gremlingo.T.Label: \"self\", gremlingo.Direction.Out: gremlingo.Merge.OutV, gremlingo.Direction.In: gremlingo.Merge.InV }).Option(gremlingo.Merge.OnCreate, nil).Option(gremlingo.Merge.OutV, gremlingo.T__.Select(\"v\")).Option(gremlingo.Merge.InV, gremlingo.T__.Select(\"v\"))", "groovy": "g.V().as(\"v\").mergeE([T.label:\"self\", (Direction.OUT):Merge.outV, (Direction.IN):Merge.inV]).option(Merge.onCreate, (Map) null).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", "java": "g.V().as(\"v\").mergeE(new LinkedHashMap() {{ put(T.label, \"self\"); put(Direction.OUT, Merge.outV); put(Direction.IN, Merge.inV); }}).option(Merge.onCreate, null).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", @@ -26635,6 +28310,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -26647,6 +28323,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -26664,6 +28341,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addE(\"self\")", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addE(string4)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddE((string) \"self\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddE((string) \"self\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddE(\"self\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addE(\"self\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addE(\"self\")", @@ -26676,6 +28354,7 @@ "canonical": "g.mergeE([:])", "anonymized": "g.mergeE(map0)", "dotnet": "g.MergeE((IDictionary) new Dictionary {})", + "dotnet_parameterize": "g.MergeE((IDictionary) new Dictionary {})", "go": "g.MergeE(map[interface{}]interface{}{ })", "groovy": "g.mergeE([:])", "java": "g.mergeE(new LinkedHashMap() {{ }})", @@ -26688,6 +28367,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -26700,6 +28380,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -26717,6 +28398,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -26729,6 +28411,7 @@ "canonical": "g.mergeE([:])", "anonymized": "g.mergeE(map0)", "dotnet": "g.MergeE((IDictionary) new Dictionary {})", + "dotnet_parameterize": "g.MergeE((IDictionary) new Dictionary {})", "go": "g.MergeE(map[interface{}]interface{}{ })", "groovy": "g.mergeE([:])", "java": "g.mergeE(new LinkedHashMap() {{ }})", @@ -26746,6 +28429,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addV(string0).property(string1, string4).property(string3, number1)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", @@ -26758,6 +28442,7 @@ "canonical": "g.V().as(\"v\").mergeE(xx1).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", "anonymized": "g.V().as(string0).mergeE(map0).option(Merge.outV, __.select(string0)).option(Merge.inV, __.select(string0))", "dotnet": "g.V().As(\"v\").MergeE((IDictionary) xx1).Option(Merge.OutV, (ITraversal) __.Select(\"v\")).Option(Merge.InV, (ITraversal) __.Select(\"v\"))", + "dotnet_parameterize": "g.V().As(\"v\").MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OutV, (ITraversal) __.Select(\"v\")).Option(Merge.InV, (ITraversal) __.Select(\"v\"))", "go": "g.V().As(\"v\").MergeE(xx1).Option(gremlingo.Merge.OutV, gremlingo.T__.Select(\"v\")).Option(gremlingo.Merge.InV, gremlingo.T__.Select(\"v\"))", "groovy": "g.V().as(\"v\").mergeE(xx1).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", "java": "g.V().as(\"v\").mergeE(xx1).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", @@ -26770,6 +28455,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -26782,6 +28468,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -26799,6 +28486,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addV(string0).property(string1, string4).property(string3, number1)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", @@ -26811,6 +28499,7 @@ "canonical": "g.V().as(\"v\").mergeE([T.label:\"self\", (Direction.OUT):Merge.outV, (Direction.IN):Merge.inV]).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", "anonymized": "g.V().as(string0).mergeE(map0).option(Merge.outV, __.select(string0)).option(Merge.inV, __.select(string0))", "dotnet": "g.V().As(\"v\").MergeE((IDictionary) new Dictionary {{ T.Label, \"self\" }, { Direction.Out, Merge.OutV }, { Direction.In, Merge.InV }}).Option(Merge.OutV, (ITraversal) __.Select(\"v\")).Option(Merge.InV, (ITraversal) __.Select(\"v\"))", + "dotnet_parameterize": "g.V().As(\"v\").MergeE((IDictionary) new Dictionary {{ T.Label, \"self\" }, { Direction.Out, Merge.OutV }, { Direction.In, Merge.InV }}).Option(Merge.OutV, (ITraversal) __.Select(\"v\")).Option(Merge.InV, (ITraversal) __.Select(\"v\"))", "go": "g.V().As(\"v\").MergeE(map[interface{}]interface{}{gremlingo.T.Label: \"self\", gremlingo.Direction.Out: gremlingo.Merge.OutV, gremlingo.Direction.In: gremlingo.Merge.InV }).Option(gremlingo.Merge.OutV, gremlingo.T__.Select(\"v\")).Option(gremlingo.Merge.InV, gremlingo.T__.Select(\"v\"))", "groovy": "g.V().as(\"v\").mergeE([T.label:\"self\", (Direction.OUT):Merge.outV, (Direction.IN):Merge.inV]).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", "java": "g.V().as(\"v\").mergeE(new LinkedHashMap() {{ put(T.label, \"self\"); put(Direction.OUT, Merge.outV); put(Direction.IN, Merge.inV); }}).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", @@ -26823,6 +28512,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -26835,6 +28525,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -26852,6 +28543,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -26864,6 +28556,7 @@ "canonical": "g.mergeE(null)", "anonymized": "g.mergeE(map0)", "dotnet": "g.MergeE((IDictionary) null)", + "dotnet_parameterize": "g.MergeE((IDictionary) null)", "go": "g.MergeE(nil)", "groovy": "g.mergeE((Map) null)", "java": "g.mergeE(null)", @@ -26881,6 +28574,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -26893,6 +28587,7 @@ "canonical": "g.mergeE(xx1)", "anonymized": "g.mergeE(map0)", "dotnet": "g.MergeE((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeE(xx1)", "groovy": "g.mergeE(xx1)", "java": "g.mergeE(xx1)", @@ -26910,6 +28605,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -26922,6 +28618,7 @@ "canonical": "g.V().limit(1).mergeE(xx1)", "anonymized": "g.V().limit(number0).mergeE(map0)", "dotnet": "g.V().Limit(1).MergeE((IDictionary) xx1)", + "dotnet_parameterize": "g.V().Limit(1).MergeE(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.V().Limit(1).MergeE(xx1)", "groovy": "g.V().limit(1).mergeE(xx1)", "java": "g.V().limit(1).mergeE(xx1)", @@ -26939,6 +28636,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -26951,6 +28649,7 @@ "canonical": "g.V().mergeE(null)", "anonymized": "g.V().mergeE(map0)", "dotnet": "g.V().MergeE((IDictionary) null)", + "dotnet_parameterize": "g.V().MergeE((IDictionary) null)", "go": "g.V().MergeE(nil)", "groovy": "g.V().mergeE((Map) null)", "java": "g.V().mergeE(null)", @@ -26968,6 +28667,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -26980,6 +28680,7 @@ "canonical": "g.mergeE(xx1)", "anonymized": "g.mergeE(map0)", "dotnet": "g.MergeE((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeE(xx1)", "groovy": "g.mergeE(xx1)", "java": "g.mergeE(xx1)", @@ -26992,6 +28693,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1, string2).out(string3).has(string0, string1, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "java": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", @@ -27009,6 +28711,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -27021,6 +28724,7 @@ "canonical": "g.mergeE(__.select(\"a\"))", "anonymized": "g.mergeE(__.select(string0))", "dotnet": "g.MergeE((ITraversal) __.Select(\"a\"))", + "dotnet_parameterize": "g.MergeE((ITraversal) __.Select(\"a\"))", "go": "g.MergeE(gremlingo.T__.Select(\"a\"))", "groovy": "g.mergeE(__.select(\"a\"))", "java": "g.mergeE(__.select(\"a\"))", @@ -27033,6 +28737,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1, string2).out(string3).has(string0, string1, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "java": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", @@ -27050,6 +28755,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -27062,6 +28768,7 @@ "canonical": "g.mergeE(xx1)", "anonymized": "g.mergeE(map0)", "dotnet": "g.MergeE((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeE(xx1)", "groovy": "g.mergeE(xx1)", "java": "g.mergeE(xx1)", @@ -27074,6 +28781,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1, string2).out(string3).has(string0, string1, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "java": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", @@ -27091,6 +28799,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\")", @@ -27103,6 +28812,7 @@ "canonical": "g.mergeE(xx1)", "anonymized": "g.mergeE(map0)", "dotnet": "g.MergeE((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeE(xx1)", "groovy": "g.mergeE(xx1)", "java": "g.mergeE(xx1)", @@ -27115,6 +28825,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").outE(\"knows\").has(\"weight\", 0.5).inV().has(\"person\", \"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1, string2).outE(string3).has(string4, number0).inV().has(string0, string1, string5)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").OutE(\"knows\").Has(\"weight\", 0.5).InV().Has(\"person\", \"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").OutE(\"knows\").Has(\"weight\", 0.5).InV().Has(\"person\", \"name\", \"vadas\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").OutE(\"knows\").Has(\"weight\", 0.5).InV().Has(\"person\", \"name\", \"vadas\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").outE(\"knows\").has(\"weight\", 0.5).inV().has(\"person\", \"name\", \"vadas\")", "java": "g.V().has(\"person\", \"name\", \"marko\").outE(\"knows\").has(\"weight\", 0.5).inV().has(\"person\", \"name\", \"vadas\")", @@ -27127,6 +28838,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1, string2).out(string3).has(string0, string1, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "java": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", @@ -27144,6 +28856,7 @@ "canonical": "g.mergeE(xx1)", "anonymized": "g.mergeE(map0)", "dotnet": "g.MergeE((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeE(xx1)", "groovy": "g.mergeE(xx1)", "java": "g.mergeE(xx1)", @@ -27161,6 +28874,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1).option(Merge.onMatch, map2)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2).Option(Merge.OnMatch, (IDictionary) xx3)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2)).Option(Merge.OnMatch, new GValue>(\"xx3\", (IDictionary) xx3))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2).Option(gremlingo.Merge.OnMatch, xx3)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", @@ -27178,6 +28892,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\")", @@ -27190,6 +28905,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1).option(Merge.onMatch, map2)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2).Option(Merge.OnMatch, (IDictionary) xx3)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2)).Option(Merge.OnMatch, new GValue>(\"xx3\", (IDictionary) xx3))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2).Option(gremlingo.Merge.OnMatch, xx3)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", @@ -27202,6 +28918,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -27214,6 +28931,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", @@ -27226,6 +28944,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", @@ -27243,6 +28962,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, string8)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\")", @@ -27255,6 +28975,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1).option(Merge.onMatch, map2)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2).Option(Merge.OnMatch, (IDictionary) xx3)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2)).Option(Merge.OnMatch, new GValue>(\"xx3\", (IDictionary) xx3))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2).Option(gremlingo.Merge.OnMatch, xx3)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", @@ -27267,6 +28988,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -27279,6 +29001,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", @@ -27291,6 +29014,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", @@ -27308,6 +29032,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"a\").to(\"b\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, string8).addE(string6).from(string3).to(string5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"a\").To(\"b\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"a\").To(\"b\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE(\"knows\").From(\"a\").To(\"b\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"a\").to(\"b\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"a\").to(\"b\")", @@ -27320,6 +29045,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "anonymized": "g.V().has(string0, string1, string2).mergeE(map0).option(Merge.onCreate, map1).option(Merge.onMatch, map2)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2).Option(Merge.OnMatch, (IDictionary) xx3)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2)).Option(Merge.OnMatch, new GValue>(\"xx3\", (IDictionary) xx3))", "go": "g.V().Has(\"person\", \"name\", \"marko\").MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2).Option(gremlingo.Merge.OnMatch, xx3)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "java": "g.V().has(\"person\", \"name\", \"marko\").mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", @@ -27332,6 +29058,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -27344,6 +29071,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -27356,6 +29084,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", @@ -27368,6 +29097,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", @@ -27385,6 +29115,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -27397,6 +29128,7 @@ "canonical": "g.inject(1).select(\"m\").mergeE()", "anonymized": "g.inject(number0).select(string0).mergeE()", "dotnet": "g.Inject(1).Select(\"m\").MergeE()", + "dotnet_parameterize": "g.Inject(1).Select(\"m\").MergeE()", "go": "g.Inject(1).Select(\"m\").MergeE()", "groovy": "g.inject(1).select(\"m\").mergeE()", "java": "g.inject(1).select(\"m\").mergeE()", @@ -27409,6 +29141,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1, string2).out(string3).has(string0, string1, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "java": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", @@ -27426,6 +29159,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, string8).addE(string6).from(string5).to(string3).property(string7, string8)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE(\"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", @@ -27438,6 +29172,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1).option(Merge.onMatch, map2)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2).Option(Merge.OnMatch, (IDictionary) xx3)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2)).Option(Merge.OnMatch, new GValue>(\"xx3\", (IDictionary) xx3))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2).Option(gremlingo.Merge.OnMatch, xx3)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", @@ -27450,6 +29185,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -27462,6 +29198,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -27474,6 +29211,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", @@ -27486,6 +29224,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"N\").inV().has(\"name\", \"vadas\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2).inV().has(string3, string4)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\").InV().Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\").InV().Has(\"name\", \"vadas\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\").InV().Has(\"name\", \"vadas\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"N\").inV().has(\"name\", \"vadas\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"N\").inV().has(\"name\", \"vadas\")", @@ -27503,6 +29242,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, string8).addE(string6).from(string5).to(string3).property(string7, string8)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE(\"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", @@ -27515,6 +29255,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1).option(Merge.onMatch, map2)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2).Option(Merge.OnMatch, (IDictionary) xx3)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2)).Option(Merge.OnMatch, new GValue>(\"xx3\", (IDictionary) xx3))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2).Option(gremlingo.Merge.OnMatch, xx3)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", @@ -27527,6 +29268,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -27539,6 +29281,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -27551,6 +29294,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", @@ -27563,6 +29307,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"N\").outV().has(\"name\", \"vadas\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2).outV().has(string3, string4)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\").OutV().Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\").OutV().Has(\"name\", \"vadas\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\").OutV().Has(\"name\", \"vadas\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"N\").outV().has(\"name\", \"vadas\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"N\").outV().has(\"name\", \"vadas\")", @@ -27580,6 +29325,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, string8).addE(string6).from(string5).to(string3).property(string7, string8)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE(\"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", @@ -27592,6 +29338,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1).option(Merge.onMatch, map2)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2).Option(Merge.OnMatch, (IDictionary) xx3)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2)).Option(Merge.OnMatch, new GValue>(\"xx3\", (IDictionary) xx3))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2).Option(gremlingo.Merge.OnMatch, xx3)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", @@ -27609,6 +29356,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, string8).addE(string6).from(string5).to(string3).property(string7, string8)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE(\"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", @@ -27621,6 +29369,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1).option(Merge.onMatch, map2)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2).Option(Merge.OnMatch, (IDictionary) xx3)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2)).Option(Merge.OnMatch, new GValue>(\"xx3\", (IDictionary) xx3))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2).Option(gremlingo.Merge.OnMatch, xx3)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", @@ -27633,6 +29382,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -27645,6 +29395,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -27657,6 +29408,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", @@ -27669,6 +29421,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"N\").outV().has(\"name\", \"vadas\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2).outV().has(string3, string4)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\").OutV().Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\").OutV().Has(\"name\", \"vadas\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\").OutV().Has(\"name\", \"vadas\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"N\").outV().has(\"name\", \"vadas\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"N\").outV().has(\"name\", \"vadas\")", @@ -27686,6 +29439,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, string8).addE(string6).from(string5).to(string3).property(string7, string8)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE(\"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", @@ -27698,6 +29452,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1).option(Merge.onMatch, map2)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2).Option(Merge.OnMatch, (IDictionary) xx3)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2)).Option(Merge.OnMatch, new GValue>(\"xx3\", (IDictionary) xx3))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2).Option(gremlingo.Merge.OnMatch, xx3)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2).option(Merge.onMatch, xx3)", @@ -27715,6 +29470,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, string8).addE(string6).from(string5).to(string3).property(string7, string8)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE((string) \"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"created\", \"Y\").AddE(\"knows\").From(\"b\").To(\"a\").Property(\"created\", \"Y\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"created\", \"Y\").addE(\"knows\").from(\"b\").to(\"a\").property(\"created\", \"Y\")", @@ -27727,6 +29483,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\")).option(Merge.onMatch, xx3)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, __.select(string0)).option(Merge.onMatch, map1)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (ITraversal) __.Select(\"sideEffect1\")).Option(Merge.OnMatch, (IDictionary) xx3)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (ITraversal) __.Select(\"sideEffect1\")).Option(Merge.OnMatch, new GValue>(\"xx3\", (IDictionary) xx3))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"sideEffect1\")).Option(gremlingo.Merge.OnMatch, xx3)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\")).option(Merge.onMatch, xx3)", "java": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\")).option(Merge.onMatch, xx3)", @@ -27739,6 +29496,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -27751,6 +29509,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -27763,6 +29522,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", @@ -27775,6 +29535,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"N\").outV().has(\"name\", \"vadas\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2).outV().has(string3, string4)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\").OutV().Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\").OutV().Has(\"name\", \"vadas\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\").OutV().Has(\"name\", \"vadas\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"N\").outV().has(\"name\", \"vadas\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"N\").outV().has(\"name\", \"vadas\")", @@ -27792,6 +29553,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -27804,6 +29566,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").mergeE(xx1)", "anonymized": "g.V().has(string0, string1, string2).mergeE(map0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").MergeE((IDictionary) xx1)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").MergeE(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.V().Has(\"person\", \"name\", \"marko\").MergeE(xx1)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").mergeE(xx1)", "java": "g.V().has(\"person\", \"name\", \"marko\").mergeE(xx1)", @@ -27816,6 +29579,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -27828,6 +29592,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -27840,6 +29605,7 @@ "canonical": "g.E().hasLabel(\"self\").bothV().has(\"name\", \"vadas\")", "anonymized": "g.E().hasLabel(string0).bothV().has(string1, string2)", "dotnet": "g.E().HasLabel(\"self\").BothV().Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.E().HasLabel(\"self\").BothV().Has(\"name\", \"vadas\")", "go": "g.E().HasLabel(\"self\").BothV().Has(\"name\", \"vadas\")", "groovy": "g.E().hasLabel(\"self\").bothV().has(\"name\", \"vadas\")", "java": "g.E().hasLabel(\"self\").bothV().has(\"name\", \"vadas\")", @@ -27857,6 +29623,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\")", @@ -27869,6 +29636,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", "anonymized": "g.mergeE(map0).option(Merge.onCreate, __.select(string0)).option(Merge.onMatch, __.select(string1))", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\"))", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\"))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"c\")).Option(gremlingo.Merge.OnMatch, gremlingo.T__.Select(\"m\"))", "groovy": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", "java": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", @@ -27881,6 +29649,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -27893,6 +29662,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", @@ -27905,6 +29675,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", @@ -27922,6 +29693,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\")", @@ -27934,6 +29706,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", "anonymized": "g.mergeE(map0).option(Merge.onCreate, __.select(string0)).option(Merge.onMatch, __.select(string1))", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\"))", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\"))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"c\")).Option(gremlingo.Merge.OnMatch, gremlingo.T__.Select(\"m\"))", "groovy": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", "java": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", @@ -27946,6 +29719,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -27958,6 +29732,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -27970,6 +29745,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", @@ -27982,6 +29758,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", @@ -27999,6 +29776,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\")", @@ -28011,6 +29789,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", "anonymized": "g.mergeE(map0).option(Merge.onCreate, __.select(string0)).option(Merge.onMatch, __.select(string1))", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\"))", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\"))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"c\")).Option(gremlingo.Merge.OnMatch, gremlingo.T__.Select(\"m\"))", "groovy": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", "java": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", @@ -28023,6 +29802,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -28035,6 +29815,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -28047,6 +29828,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", @@ -28059,6 +29841,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", @@ -28076,6 +29859,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28088,6 +29872,7 @@ "canonical": "g.mergeE(xx1)", "anonymized": "g.mergeE(map0)", "dotnet": "g.MergeE((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeE(xx1)", "groovy": "g.mergeE(xx1)", "java": "g.mergeE(xx1)", @@ -28100,6 +29885,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1, string2).out(string3).has(string0, string1, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "java": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", @@ -28117,6 +29903,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28129,6 +29916,7 @@ "canonical": "g.union(__.select(\"m1\"), __.select(\"m2\")).mergeE()", "anonymized": "g.union(__.select(string0), __.select(string1)).mergeE()", "dotnet": "g.Union(__.Select(\"m1\"), __.Select(\"m2\")).MergeE()", + "dotnet_parameterize": "g.Union(__.Select(\"m1\"), __.Select(\"m2\")).MergeE()", "go": "g.Union(gremlingo.T__.Select(\"m1\"), gremlingo.T__.Select(\"m2\")).MergeE()", "groovy": "g.union(__.select(\"m1\"), __.select(\"m2\")).mergeE()", "java": "g.union(__.select(\"m1\"), __.select(\"m2\")).mergeE()", @@ -28141,6 +29929,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -28153,6 +29942,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -28165,6 +29955,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1, string2).out(string3).has(string0, string1, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Out(\"knows\").Has(\"person\", \"name\", \"vadas\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", "java": "g.V().has(\"person\", \"name\", \"marko\").out(\"knows\").has(\"person\", \"name\", \"vadas\")", @@ -28177,6 +29968,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"vadas\").out(\"self\").has(\"person\", \"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1, string2).out(string3).has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"vadas\").Out(\"self\").Has(\"person\", \"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"vadas\").Out(\"self\").Has(\"person\", \"name\", \"vadas\")", "go": "g.V().Has(\"person\", \"name\", \"vadas\").Out(\"self\").Has(\"person\", \"name\", \"vadas\")", "groovy": "g.V().has(\"person\", \"name\", \"vadas\").out(\"self\").has(\"person\", \"name\", \"vadas\")", "java": "g.V().has(\"person\", \"name\", \"vadas\").out(\"self\").has(\"person\", \"name\", \"vadas\")", @@ -28194,6 +29986,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").property(\"weight\", 1.0d).from(\"a\").to(\"b\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).property(string7, double0).from(string3).to(string5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").Property(\"weight\", 1.0d).From(\"a\").To(\"b\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").Property(\"weight\", 1.0d).From(\"a\").To(\"b\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").Property(\"weight\", 1.0).From(\"a\").To(\"b\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").property(\"weight\", 1.0d).from(\"a\").to(\"b\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").property(\"weight\", 1.0d).from(\"a\").to(\"b\")", @@ -28206,6 +29999,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"c\")).option(Merge.onMatch, __.sideEffect(__.properties(\"weight\").drop()).select(\"m\"))", "anonymized": "g.mergeE(map0).option(Merge.onCreate, __.select(string0)).option(Merge.onMatch, __.sideEffect(__.properties(string1).drop()).select(string2))", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Properties(\"weight\").Drop()).Select(\"m\"))", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Properties(\"weight\").Drop()).Select(\"m\"))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"c\")).Option(gremlingo.Merge.OnMatch, gremlingo.T__.SideEffect(gremlingo.T__.Properties(\"weight\").Drop()).Select(\"m\"))", "groovy": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"c\")).option(Merge.onMatch, __.sideEffect(__.properties(\"weight\").drop()).select(\"m\"))", "java": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"c\")).option(Merge.onMatch, __.sideEffect(__.properties(\"weight\").drop()).select(\"m\"))", @@ -28218,6 +30012,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -28230,6 +30025,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"Y\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"Y\")", @@ -28242,6 +30038,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "anonymized": "g.E().hasLabel(string0).has(string1, string2)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "go": "g.E().HasLabel(\"knows\").Has(\"created\", \"N\")", "groovy": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", "java": "g.E().hasLabel(\"knows\").has(\"created\", \"N\")", @@ -28254,6 +30051,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"weight\")", "anonymized": "g.E().hasLabel(string0).has(string1)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"weight\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"weight\")", "go": "g.E().HasLabel(\"knows\").Has(\"weight\")", "groovy": "g.E().hasLabel(\"knows\").has(\"weight\")", "java": "g.E().hasLabel(\"knows\").has(\"weight\")", @@ -28271,6 +30069,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28283,6 +30082,7 @@ "canonical": "g.mergeE(xx1).option(Merge.outV, xx2).option(Merge.inV, xx3)", "anonymized": "g.mergeE(map0).option(Merge.outV, map1).option(Merge.inV, map2)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OutV, (IDictionary) xx2).Option(Merge.InV, (IDictionary) xx3)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OutV, new GValue>(\"xx2\", (IDictionary) xx2)).Option(Merge.InV, new GValue>(\"xx3\", (IDictionary) xx3))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OutV, xx2).Option(gremlingo.Merge.InV, xx3)", "groovy": "g.mergeE(xx1).option(Merge.outV, xx2).option(Merge.inV, xx3)", "java": "g.mergeE(xx1).option(Merge.outV, xx2).option(Merge.inV, xx3)", @@ -28295,6 +30095,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -28307,6 +30108,7 @@ "canonical": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1).out(string2).has(string0, string3)", "dotnet": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "go": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "groovy": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "java": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", @@ -28324,6 +30126,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28336,6 +30139,7 @@ "canonical": "g.mergeE([(Direction.OUT):Merge.outV, (Direction.IN):Merge.inV, T.label:\"knows\"]).option(Merge.outV, xx1).option(Merge.inV, xx2)", "anonymized": "g.mergeE(map0).option(Merge.outV, map1).option(Merge.inV, map2)", "dotnet": "g.MergeE((IDictionary) new Dictionary {{ Direction.Out, Merge.OutV }, { Direction.In, Merge.InV }, { T.Label, \"knows\" }}).Option(Merge.OutV, (IDictionary) xx1).Option(Merge.InV, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeE((IDictionary) new Dictionary {{ Direction.Out, Merge.OutV }, { Direction.In, Merge.InV }, { T.Label, \"knows\" }}).Option(Merge.OutV, new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.InV, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeE(map[interface{}]interface{}{gremlingo.Direction.Out: gremlingo.Merge.OutV, gremlingo.Direction.In: gremlingo.Merge.InV, gremlingo.T.Label: \"knows\" }).Option(gremlingo.Merge.OutV, xx1).Option(gremlingo.Merge.InV, xx2)", "groovy": "g.mergeE([(Direction.OUT):Merge.outV, (Direction.IN):Merge.inV, T.label:\"knows\"]).option(Merge.outV, xx1).option(Merge.inV, xx2)", "java": "g.mergeE(new LinkedHashMap() {{ put(Direction.OUT, Merge.outV); put(Direction.IN, Merge.inV); put(T.label, \"knows\"); }}).option(Merge.outV, xx1).option(Merge.inV, xx2)", @@ -28348,6 +30152,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -28360,6 +30165,7 @@ "canonical": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1).out(string2).has(string0, string3)", "dotnet": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "go": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "groovy": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "java": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", @@ -28377,6 +30183,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28389,6 +30196,7 @@ "canonical": "g.V(vid1).as(\"x\").V(vid2).as(\"y\").mergeE(xx1).option(Merge.outV, __.select(\"x\")).option(Merge.inV, __.select(\"y\"))", "anonymized": "g.V(vid1).as(string0).V(vid2).as(string1).mergeE(map0).option(Merge.outV, __.select(string0)).option(Merge.inV, __.select(string1))", "dotnet": "g.V(vid1).As(\"x\").V(vid2).As(\"y\").MergeE((IDictionary) xx1).Option(Merge.OutV, (ITraversal) __.Select(\"x\")).Option(Merge.InV, (ITraversal) __.Select(\"y\"))", + "dotnet_parameterize": "g.V(vid1).As(\"x\").V(vid2).As(\"y\").MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OutV, (ITraversal) __.Select(\"x\")).Option(Merge.InV, (ITraversal) __.Select(\"y\"))", "go": "g.V(vid1).As(\"x\").V(vid2).As(\"y\").MergeE(xx1).Option(gremlingo.Merge.OutV, gremlingo.T__.Select(\"x\")).Option(gremlingo.Merge.InV, gremlingo.T__.Select(\"y\"))", "groovy": "g.V(vid1).as(\"x\").V(vid2).as(\"y\").mergeE(xx1).option(Merge.outV, __.select(\"x\")).option(Merge.inV, __.select(\"y\"))", "java": "g.V(vid1).as(\"x\").V(vid2).as(\"y\").mergeE(xx1).option(Merge.outV, __.select(\"x\")).option(Merge.inV, __.select(\"y\"))", @@ -28401,6 +30209,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -28413,6 +30222,7 @@ "canonical": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1).out(string2).has(string0, string3)", "dotnet": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "go": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "groovy": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "java": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", @@ -28430,6 +30240,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28442,6 +30253,7 @@ "canonical": "g.V(vid1).as(\"x\").V(vid2).as(\"y\").mergeE([(Direction.OUT):Merge.outV, (Direction.IN):Merge.inV, T.label:\"knows\"]).option(Merge.outV, __.select(\"x\")).option(Merge.inV, __.select(\"y\"))", "anonymized": "g.V(vid1).as(string0).V(vid2).as(string1).mergeE(map0).option(Merge.outV, __.select(string0)).option(Merge.inV, __.select(string1))", "dotnet": "g.V(vid1).As(\"x\").V(vid2).As(\"y\").MergeE((IDictionary) new Dictionary {{ Direction.Out, Merge.OutV }, { Direction.In, Merge.InV }, { T.Label, \"knows\" }}).Option(Merge.OutV, (ITraversal) __.Select(\"x\")).Option(Merge.InV, (ITraversal) __.Select(\"y\"))", + "dotnet_parameterize": "g.V(vid1).As(\"x\").V(vid2).As(\"y\").MergeE((IDictionary) new Dictionary {{ Direction.Out, Merge.OutV }, { Direction.In, Merge.InV }, { T.Label, \"knows\" }}).Option(Merge.OutV, (ITraversal) __.Select(\"x\")).Option(Merge.InV, (ITraversal) __.Select(\"y\"))", "go": "g.V(vid1).As(\"x\").V(vid2).As(\"y\").MergeE(map[interface{}]interface{}{gremlingo.Direction.Out: gremlingo.Merge.OutV, gremlingo.Direction.In: gremlingo.Merge.InV, gremlingo.T.Label: \"knows\" }).Option(gremlingo.Merge.OutV, gremlingo.T__.Select(\"x\")).Option(gremlingo.Merge.InV, gremlingo.T__.Select(\"y\"))", "groovy": "g.V(vid1).as(\"x\").V(vid2).as(\"y\").mergeE([(Direction.OUT):Merge.outV, (Direction.IN):Merge.inV, T.label:\"knows\"]).option(Merge.outV, __.select(\"x\")).option(Merge.inV, __.select(\"y\"))", "java": "g.V(vid1).as(\"x\").V(vid2).as(\"y\").mergeE(new LinkedHashMap() {{ put(Direction.OUT, Merge.outV); put(Direction.IN, Merge.inV); put(T.label, \"knows\"); }}).option(Merge.outV, __.select(\"x\")).option(Merge.inV, __.select(\"y\"))", @@ -28454,6 +30266,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -28466,6 +30279,7 @@ "canonical": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1).out(string2).has(string0, string3)", "dotnet": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "go": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "groovy": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "java": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", @@ -28483,6 +30297,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28495,6 +30310,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2)", @@ -28507,6 +30323,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -28519,6 +30336,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -28531,6 +30349,7 @@ "canonical": "g.E(\"201\")", "anonymized": "g.E(string0)", "dotnet": "g.E(\"201\")", + "dotnet_parameterize": "g.E(\"201\")", "go": "g.E(\"201\")", "groovy": "g.E(\"201\")", "java": "g.E(\"201\")", @@ -28543,6 +30362,7 @@ "canonical": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1).out(string2).has(string0, string3)", "dotnet": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "go": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "groovy": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "java": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", @@ -28560,6 +30380,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28572,6 +30393,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2)", @@ -28584,6 +30406,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -28596,6 +30419,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -28608,6 +30432,7 @@ "canonical": "g.E(\"201\")", "anonymized": "g.E(string0)", "dotnet": "g.E(\"201\")", + "dotnet_parameterize": "g.E(\"201\")", "go": "g.E(\"201\")", "groovy": "g.E(\"201\")", "java": "g.E(\"201\")", @@ -28620,6 +30445,7 @@ "canonical": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1).out(string2).has(string0, string3)", "dotnet": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "go": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "groovy": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "java": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", @@ -28637,6 +30463,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28649,6 +30476,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2)", @@ -28666,6 +30494,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28678,6 +30507,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", "anonymized": "g.mergeE(map0).option(Merge.onCreate, __.select(string0))", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (ITraversal) __.Select(\"sideEffect1\"))", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (ITraversal) __.Select(\"sideEffect1\"))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"sideEffect1\"))", "groovy": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", "java": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", @@ -28695,6 +30525,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28707,6 +30538,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2)", @@ -28724,6 +30556,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28736,6 +30569,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", "anonymized": "g.mergeE(map0).option(Merge.onCreate, __.select(string0))", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (ITraversal) __.Select(\"sideEffect1\"))", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (ITraversal) __.Select(\"sideEffect1\"))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"sideEffect1\"))", "groovy": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", "java": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", @@ -28753,6 +30587,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28765,6 +30600,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2)", @@ -28782,6 +30618,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28794,6 +30631,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", "anonymized": "g.mergeE(map0).option(Merge.onCreate, __.select(string0))", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (ITraversal) __.Select(\"sideEffect1\"))", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (ITraversal) __.Select(\"sideEffect1\"))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"sideEffect1\"))", "groovy": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", "java": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", @@ -28811,6 +30649,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28823,6 +30662,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.mergeE(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.mergeE(xx1).option(Merge.onCreate, xx2)", "java": "g.mergeE(xx1).option(Merge.onCreate, xx2)", @@ -28840,6 +30680,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28852,6 +30693,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", "anonymized": "g.mergeE(map0).option(Merge.onCreate, __.select(string0))", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnCreate, (ITraversal) __.Select(\"sideEffect1\"))", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (ITraversal) __.Select(\"sideEffect1\"))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"sideEffect1\"))", "groovy": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", "java": "g.mergeE(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", @@ -28869,6 +30711,7 @@ "canonical": "g.mergeV(xx1).as(\"outV\").mergeV(xx2).as(\"inV\").mergeE(xx3).option(Merge.outV, __.select(\"outV\")).option(Merge.inV, __.select(\"inV\"))", "anonymized": "g.mergeV(map0).as(string0).mergeV(map1).as(string1).mergeE(map2).option(Merge.outV, __.select(string0)).option(Merge.inV, __.select(string1))", "dotnet": "g.MergeV((IDictionary) xx1).As(\"outV\").MergeV((IDictionary) xx2).As(\"inV\").MergeE((IDictionary) xx3).Option(Merge.OutV, (ITraversal) __.Select(\"outV\")).Option(Merge.InV, (ITraversal) __.Select(\"inV\"))", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).As(\"outV\").MergeV(new GValue>(\"xx2\", (IDictionary) xx2)).As(\"inV\").MergeE(new GValue>(\"xx3\", (IDictionary) xx3)).Option(Merge.OutV, (ITraversal) __.Select(\"outV\")).Option(Merge.InV, (ITraversal) __.Select(\"inV\"))", "go": "g.MergeV(xx1).As(\"outV\").MergeV(xx2).As(\"inV\").MergeE(xx3).Option(gremlingo.Merge.OutV, gremlingo.T__.Select(\"outV\")).Option(gremlingo.Merge.InV, gremlingo.T__.Select(\"inV\"))", "groovy": "g.mergeV(xx1).as(\"outV\").mergeV(xx2).as(\"inV\").mergeE(xx3).option(Merge.outV, __.select(\"outV\")).option(Merge.inV, __.select(\"inV\"))", "java": "g.mergeV(xx1).as(\"outV\").mergeV(xx2).as(\"inV\").mergeE(xx3).option(Merge.outV, __.select(\"outV\")).option(Merge.inV, __.select(\"inV\"))", @@ -28881,6 +30724,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -28893,6 +30737,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -28905,6 +30750,7 @@ "canonical": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1).out(string2).has(string0, string3)", "dotnet": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "go": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "groovy": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "java": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", @@ -28922,6 +30768,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "anonymized": "g.addV(string0).property(string1, string2).addV(string0).property(string1, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").AddV(\"person\").Property(\"name\", \"vadas\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").addV(\"person\").property(\"name\", \"vadas\")", @@ -28934,6 +30781,7 @@ "canonical": "g.mergeV(xx1).as(\"outV\").mergeV(xx2).as(\"inV\").mergeE(xx3).option(Merge.outV, __.select(\"outV\")).option(Merge.inV, __.select(\"inV\"))", "anonymized": "g.mergeV(map0).as(string0).mergeV(map1).as(string1).mergeE(map2).option(Merge.outV, __.select(string0)).option(Merge.inV, __.select(string1))", "dotnet": "g.MergeV((IDictionary) xx1).As(\"outV\").MergeV((IDictionary) xx2).As(\"inV\").MergeE((IDictionary) xx3).Option(Merge.OutV, (ITraversal) __.Select(\"outV\")).Option(Merge.InV, (ITraversal) __.Select(\"inV\"))", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).As(\"outV\").MergeV(new GValue>(\"xx2\", (IDictionary) xx2)).As(\"inV\").MergeE(new GValue>(\"xx3\", (IDictionary) xx3)).Option(Merge.OutV, (ITraversal) __.Select(\"outV\")).Option(Merge.InV, (ITraversal) __.Select(\"inV\"))", "go": "g.MergeV(xx1).As(\"outV\").MergeV(xx2).As(\"inV\").MergeE(xx3).Option(gremlingo.Merge.OutV, gremlingo.T__.Select(\"outV\")).Option(gremlingo.Merge.InV, gremlingo.T__.Select(\"inV\"))", "groovy": "g.mergeV(xx1).as(\"outV\").mergeV(xx2).as(\"inV\").mergeE(xx3).option(Merge.outV, __.select(\"outV\")).option(Merge.inV, __.select(\"inV\"))", "java": "g.mergeV(xx1).as(\"outV\").mergeV(xx2).as(\"inV\").mergeE(xx3).option(Merge.outV, __.select(\"outV\")).option(Merge.inV, __.select(\"inV\"))", @@ -28946,6 +30794,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -28958,6 +30807,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -28970,6 +30820,7 @@ "canonical": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1).out(string2).has(string0, string3)", "dotnet": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "go": "g.V().Has(\"name\", \"marko\").Out(\"knows\").Has(\"name\", \"vadas\")", "groovy": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", "java": "g.V().has(\"name\", \"marko\").out(\"knows\").has(\"name\", \"vadas\")", @@ -28987,6 +30838,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -28999,6 +30851,7 @@ "canonical": "g.V().as(\"v\").mergeE(xx1).option(Merge.onMatch, xx2).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", "anonymized": "g.V().as(string0).mergeE(map0).option(Merge.onMatch, map1).option(Merge.outV, __.select(string0)).option(Merge.inV, __.select(string0))", "dotnet": "g.V().As(\"v\").MergeE((IDictionary) xx1).Option(Merge.OnMatch, (IDictionary) xx2).Option(Merge.OutV, (ITraversal) __.Select(\"v\")).Option(Merge.InV, (ITraversal) __.Select(\"v\"))", + "dotnet_parameterize": "g.V().As(\"v\").MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnMatch, new GValue>(\"xx2\", (IDictionary) xx2)).Option(Merge.OutV, (ITraversal) __.Select(\"v\")).Option(Merge.InV, (ITraversal) __.Select(\"v\"))", "go": "g.V().As(\"v\").MergeE(xx1).Option(gremlingo.Merge.OnMatch, xx2).Option(gremlingo.Merge.OutV, gremlingo.T__.Select(\"v\")).Option(gremlingo.Merge.InV, gremlingo.T__.Select(\"v\"))", "groovy": "g.V().as(\"v\").mergeE(xx1).option(Merge.onMatch, xx2).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", "java": "g.V().as(\"v\").mergeE(xx1).option(Merge.onMatch, xx2).option(Merge.outV, __.select(\"v\")).option(Merge.inV, __.select(\"v\"))", @@ -29016,6 +30869,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").property(\"weight\", 1).from(\"a\").to(\"b\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).property(string7, number0).from(string3).to(string5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").Property(\"weight\", 1).From(\"a\").To(\"b\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").Property(\"weight\", 1).From(\"a\").To(\"b\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").Property(\"weight\", 1).From(\"a\").To(\"b\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").property(\"weight\", 1).from(\"a\").to(\"b\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").property(\"weight\", 1).from(\"a\").to(\"b\")", @@ -29028,6 +30882,7 @@ "canonical": "g.V().mergeE(xx1).option(Merge.onMatch, __.sideEffect(__.property(\"weight\", 0)).constant([:]))", "anonymized": "g.V().mergeE(map0).option(Merge.onMatch, __.sideEffect(__.property(string0, number0)).constant(map1))", "dotnet": "g.V().MergeE((IDictionary) xx1).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Property(\"weight\", 0)).Constant(new Dictionary {}))", + "dotnet_parameterize": "g.V().MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Property(\"weight\", 0)).Constant(new Dictionary {}))", "go": "g.V().MergeE(xx1).Option(gremlingo.Merge.OnMatch, gremlingo.T__.SideEffect(gremlingo.T__.Property(\"weight\", 0)).Constant(map[interface{}]interface{}{ }))", "groovy": "g.V().mergeE(xx1).option(Merge.onMatch, __.sideEffect(__.property(\"weight\", 0)).constant([:]))", "java": "g.V().mergeE(xx1).option(Merge.onMatch, __.sideEffect(__.property(\"weight\", 0)).constant(new LinkedHashMap() {{ }}))", @@ -29040,6 +30895,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29052,6 +30908,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -29064,6 +30921,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"weight\", 0)", "anonymized": "g.E().hasLabel(string0).has(string1, number0)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"weight\", 0)", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"weight\", 0)", "go": "g.E().HasLabel(\"knows\").Has(\"weight\", 0)", "groovy": "g.E().hasLabel(\"knows\").has(\"weight\", 0)", "java": "g.E().hasLabel(\"knows\").has(\"weight\", 0)", @@ -29081,6 +30939,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").property(\"weight\", 1).from(\"a\").to(\"b\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).property(string7, number0).from(string3).to(string5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").Property(\"weight\", 1).From(\"a\").To(\"b\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").Property(\"weight\", 1).From(\"a\").To(\"b\")", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").Property(\"weight\", 1).From(\"a\").To(\"b\")", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").property(\"weight\", 1).from(\"a\").to(\"b\")", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").property(\"weight\", 1).from(\"a\").to(\"b\")", @@ -29093,6 +30952,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onMatch, __.sideEffect(__.property(\"weight\", 0)).constant([:]))", "anonymized": "g.mergeE(map0).option(Merge.onMatch, __.sideEffect(__.property(string0, number0)).constant(map1))", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Property(\"weight\", 0)).Constant(new Dictionary {}))", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Property(\"weight\", 0)).Constant(new Dictionary {}))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnMatch, gremlingo.T__.SideEffect(gremlingo.T__.Property(\"weight\", 0)).Constant(map[interface{}]interface{}{ }))", "groovy": "g.mergeE(xx1).option(Merge.onMatch, __.sideEffect(__.property(\"weight\", 0)).constant([:]))", "java": "g.mergeE(xx1).option(Merge.onMatch, __.sideEffect(__.property(\"weight\", 0)).constant(new LinkedHashMap() {{ }}))", @@ -29105,6 +30965,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29117,6 +30978,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"weight\", 1)", "anonymized": "g.E().hasLabel(string0).has(string1, number0)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"weight\", 1)", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"weight\", 1)", "go": "g.E().HasLabel(\"knows\").Has(\"weight\", 1)", "groovy": "g.E().hasLabel(\"knows\").has(\"weight\", 1)", "java": "g.E().hasLabel(\"knows\").has(\"weight\", 1)", @@ -29129,6 +30991,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"weight\", 0)", "anonymized": "g.E().hasLabel(string0).has(string1, number0)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"weight\", 0)", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"weight\", 0)", "go": "g.E().HasLabel(\"knows\").Has(\"weight\", 0)", "groovy": "g.E().hasLabel(\"knows\").has(\"weight\", 0)", "java": "g.E().hasLabel(\"knows\").has(\"weight\", 0)", @@ -29141,6 +31004,7 @@ "canonical": "g.V().has(\"weight\")", "anonymized": "g.V().has(string0)", "dotnet": "g.V().Has(\"weight\")", + "dotnet_parameterize": "g.V().Has(\"weight\")", "go": "g.V().Has(\"weight\")", "groovy": "g.V().has(\"weight\")", "java": "g.V().has(\"weight\")", @@ -29158,6 +31022,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -29170,6 +31035,7 @@ "canonical": "g.union(__.select(\"map\"), __.select(\"map\"), __.constant([created:\"N\"])).fold().as(\"m\").mergeE(__.select(\"m\").limit(Scope.local, 1).unfold()).option(Merge.onCreate, __.select(\"m\").range(Scope.local, 1, 2).unfold()).option(Merge.onMatch, __.select(\"m\").tail(Scope.local).unfold())", "anonymized": "g.union(__.select(string0), __.select(string0), __.constant(map0)).fold().as(string1).mergeE(__.select(string1).limit(Scope.local, number0).unfold()).option(Merge.onCreate, __.select(string1).range(Scope.local, number0, number1).unfold()).option(Merge.onMatch, __.select(string1).tail(Scope.local).unfold())", "dotnet": "g.Union(__.Select(\"map\"), __.Select(\"map\"), __.Constant(new Dictionary {{ \"created\", \"N\" }})).Fold().As(\"m\").MergeE((ITraversal) __.Select(\"m\").Limit(Scope.Local, 1).Unfold()).Option(Merge.OnCreate, (ITraversal) __.Select(\"m\").Range(Scope.Local, 1, 2).Unfold()).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\").Tail(Scope.Local).Unfold())", + "dotnet_parameterize": "g.Union(__.Select(\"map\"), __.Select(\"map\"), __.Constant(new Dictionary {{ \"created\", \"N\" }})).Fold().As(\"m\").MergeE((ITraversal) __.Select(\"m\").Limit(Scope.Local, 1).Unfold()).Option(Merge.OnCreate, (ITraversal) __.Select(\"m\").Range(Scope.Local, 1, 2).Unfold()).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\").Tail(Scope.Local).Unfold())", "go": "g.Union(gremlingo.T__.Select(\"map\"), gremlingo.T__.Select(\"map\"), gremlingo.T__.Constant(map[interface{}]interface{}{\"created\": \"N\" })).Fold().As(\"m\").MergeE(gremlingo.T__.Select(\"m\").Limit(gremlingo.Scope.Local, 1).Unfold()).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"m\").Range(gremlingo.Scope.Local, 1, 2).Unfold()).Option(gremlingo.Merge.OnMatch, gremlingo.T__.Select(\"m\").Tail(gremlingo.Scope.Local).Unfold())", "groovy": "g.union(__.select(\"map\"), __.select(\"map\"), __.constant([created:\"N\"])).fold().as(\"m\").mergeE(__.select(\"m\").limit(Scope.local, 1).unfold()).option(Merge.onCreate, __.select(\"m\").range(Scope.local, 1, 2).unfold()).option(Merge.onMatch, __.select(\"m\").tail(Scope.local).unfold())", "java": "g.union(__.select(\"map\"), __.select(\"map\"), __.constant(new LinkedHashMap() {{ put(\"created\", \"N\"); }})).fold().as(\"m\").mergeE(__.select(\"m\").limit(Scope.local, 1).unfold()).option(Merge.onCreate, __.select(\"m\").range(Scope.local, 1, 2).unfold()).option(Merge.onMatch, __.select(\"m\").tail(Scope.local).unfold())", @@ -29182,6 +31048,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29194,6 +31061,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -29206,6 +31074,7 @@ "canonical": "g.E().has(\"created\", \"N\")", "anonymized": "g.E().has(string0, string1)", "dotnet": "g.E().Has(\"created\", \"N\")", + "dotnet_parameterize": "g.E().Has(\"created\", \"N\")", "go": "g.E().Has(\"created\", \"N\")", "groovy": "g.E().has(\"created\", \"N\")", "java": "g.E().has(\"created\", \"N\")", @@ -29218,6 +31087,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").outE(\"knows\").has(\"created\", \"N\").inV().has(\"person\", \"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1, string2).outE(string3).has(string4, string5).inV().has(string0, string1, string6)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").OutE(\"knows\").Has(\"created\", \"N\").InV().Has(\"person\", \"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").OutE(\"knows\").Has(\"created\", \"N\").InV().Has(\"person\", \"name\", \"vadas\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").OutE(\"knows\").Has(\"created\", \"N\").InV().Has(\"person\", \"name\", \"vadas\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").outE(\"knows\").has(\"created\", \"N\").inV().has(\"person\", \"name\", \"vadas\")", "java": "g.V().has(\"person\", \"name\", \"marko\").outE(\"knows\").has(\"created\", \"N\").inV().has(\"person\", \"name\", \"vadas\")", @@ -29235,6 +31105,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -29247,6 +31118,7 @@ "canonical": "g.union(__.select(\"map\"), __.select(\"map\"), __.constant([created:\"N\"])).fold().as(\"m\").mergeE(__.select(\"m\").limit(Scope.local, 1).unfold()).option(Merge.onCreate, __.select(\"m\").range(Scope.local, 1, 2).unfold()).option(Merge.onMatch, __.select(\"m\").tail(Scope.local).unfold())", "anonymized": "g.union(__.select(string0), __.select(string0), __.constant(map0)).fold().as(string1).mergeE(__.select(string1).limit(Scope.local, number0).unfold()).option(Merge.onCreate, __.select(string1).range(Scope.local, number0, number1).unfold()).option(Merge.onMatch, __.select(string1).tail(Scope.local).unfold())", "dotnet": "g.Union(__.Select(\"map\"), __.Select(\"map\"), __.Constant(new Dictionary {{ \"created\", \"N\" }})).Fold().As(\"m\").MergeE((ITraversal) __.Select(\"m\").Limit(Scope.Local, 1).Unfold()).Option(Merge.OnCreate, (ITraversal) __.Select(\"m\").Range(Scope.Local, 1, 2).Unfold()).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\").Tail(Scope.Local).Unfold())", + "dotnet_parameterize": "g.Union(__.Select(\"map\"), __.Select(\"map\"), __.Constant(new Dictionary {{ \"created\", \"N\" }})).Fold().As(\"m\").MergeE((ITraversal) __.Select(\"m\").Limit(Scope.Local, 1).Unfold()).Option(Merge.OnCreate, (ITraversal) __.Select(\"m\").Range(Scope.Local, 1, 2).Unfold()).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\").Tail(Scope.Local).Unfold())", "go": "g.Union(gremlingo.T__.Select(\"map\"), gremlingo.T__.Select(\"map\"), gremlingo.T__.Constant(map[interface{}]interface{}{\"created\": \"N\" })).Fold().As(\"m\").MergeE(gremlingo.T__.Select(\"m\").Limit(gremlingo.Scope.Local, 1).Unfold()).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"m\").Range(gremlingo.Scope.Local, 1, 2).Unfold()).Option(gremlingo.Merge.OnMatch, gremlingo.T__.Select(\"m\").Tail(gremlingo.Scope.Local).Unfold())", "groovy": "g.union(__.select(\"map\"), __.select(\"map\"), __.constant([created:\"N\"])).fold().as(\"m\").mergeE(__.select(\"m\").limit(Scope.local, 1).unfold()).option(Merge.onCreate, __.select(\"m\").range(Scope.local, 1, 2).unfold()).option(Merge.onMatch, __.select(\"m\").tail(Scope.local).unfold())", "java": "g.union(__.select(\"map\"), __.select(\"map\"), __.constant(new LinkedHashMap() {{ put(\"created\", \"N\"); }})).fold().as(\"m\").mergeE(__.select(\"m\").limit(Scope.local, 1).unfold()).option(Merge.onCreate, __.select(\"m\").range(Scope.local, 1, 2).unfold()).option(Merge.onMatch, __.select(\"m\").tail(Scope.local).unfold())", @@ -29259,6 +31131,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29271,6 +31144,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -29283,6 +31157,7 @@ "canonical": "g.E().hasNot(\"created\")", "anonymized": "g.E().hasNot(string0)", "dotnet": "g.E().HasNot(\"created\")", + "dotnet_parameterize": "g.E().HasNot(\"created\")", "go": "g.E().HasNot(\"created\")", "groovy": "g.E().hasNot(\"created\")", "java": "g.E().hasNot(\"created\")", @@ -29295,6 +31170,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").outE(\"knows\").hasNot(\"created\").inV().has(\"person\", \"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1, string2).outE(string3).hasNot(string4).inV().has(string0, string1, string5)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").OutE(\"knows\").HasNot(\"created\").InV().Has(\"person\", \"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").OutE(\"knows\").HasNot(\"created\").InV().Has(\"person\", \"name\", \"vadas\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").OutE(\"knows\").HasNot(\"created\").InV().Has(\"person\", \"name\", \"vadas\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").outE(\"knows\").hasNot(\"created\").inV().has(\"person\", \"name\", \"vadas\")", "java": "g.V().has(\"person\", \"name\", \"marko\").outE(\"knows\").hasNot(\"created\").inV().has(\"person\", \"name\", \"vadas\")", @@ -29307,6 +31183,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"vadas\").outE(\"self\").hasNot(\"weight\").inV().has(\"person\", \"name\", \"vadas\")", "anonymized": "g.V().has(string0, string1, string2).outE(string3).hasNot(string4).inV().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"vadas\").OutE(\"self\").HasNot(\"weight\").InV().Has(\"person\", \"name\", \"vadas\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"vadas\").OutE(\"self\").HasNot(\"weight\").InV().Has(\"person\", \"name\", \"vadas\")", "go": "g.V().Has(\"person\", \"name\", \"vadas\").OutE(\"self\").HasNot(\"weight\").InV().Has(\"person\", \"name\", \"vadas\")", "groovy": "g.V().has(\"person\", \"name\", \"vadas\").outE(\"self\").hasNot(\"weight\").inV().has(\"person\", \"name\", \"vadas\")", "java": "g.V().has(\"person\", \"name\", \"vadas\").outE(\"self\").hasNot(\"weight\").inV().has(\"person\", \"name\", \"vadas\")", @@ -29324,6 +31201,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 1.0d)", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, double0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"weight\", 1.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"weight\", 1.0d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"weight\", 1.0)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 1.0d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 1.0d)", @@ -29336,6 +31214,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onMatch, xx2)", "anonymized": "g.mergeE(map0).option(Merge.onMatch, map1)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnMatch, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnMatch, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnMatch, xx2)", "groovy": "g.mergeE(xx1).option(Merge.onMatch, xx2)", "java": "g.mergeE(xx1).option(Merge.onMatch, xx2)", @@ -29348,6 +31227,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29360,6 +31240,7 @@ "canonical": "g.E().hasLabel(\"knows\")", "anonymized": "g.E().hasLabel(string0)", "dotnet": "g.E().HasLabel(\"knows\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\")", "go": "g.E().HasLabel(\"knows\")", "groovy": "g.E().hasLabel(\"knows\")", "java": "g.E().hasLabel(\"knows\")", @@ -29372,6 +31253,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"weight\", null)", "anonymized": "g.E().hasLabel(string0).has(string1, object0)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"weight\", (object) null)", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"weight\", (object) null)", "go": "g.E().HasLabel(\"knows\").Has(\"weight\", nil)", "groovy": "g.E().hasLabel(\"knows\").has(\"weight\", null)", "java": "g.E().hasLabel(\"knows\").has(\"weight\", null)", @@ -29389,6 +31271,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 1.0d)", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, double0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"weight\", 1.0d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"vadas\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"weight\", 1.0d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").As(\"a\").AddV(\"person\").Property(\"name\", \"vadas\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"weight\", 1.0)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 1.0d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").as(\"a\").addV(\"person\").property(\"name\", \"vadas\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 1.0d)", @@ -29401,6 +31284,7 @@ "canonical": "g.mergeE(xx1).option(Merge.onMatch, xx2)", "anonymized": "g.mergeE(map0).option(Merge.onMatch, map1)", "dotnet": "g.MergeE((IDictionary) xx1).Option(Merge.OnMatch, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeE(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnMatch, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeE(xx1).Option(gremlingo.Merge.OnMatch, xx2)", "groovy": "g.mergeE(xx1).option(Merge.onMatch, xx2)", "java": "g.mergeE(xx1).option(Merge.onMatch, xx2)", @@ -29413,6 +31297,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29425,6 +31310,7 @@ "canonical": "g.E().hasLabel(\"knows\")", "anonymized": "g.E().hasLabel(string0)", "dotnet": "g.E().HasLabel(\"knows\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\")", "go": "g.E().HasLabel(\"knows\")", "groovy": "g.E().hasLabel(\"knows\")", "java": "g.E().hasLabel(\"knows\")", @@ -29437,6 +31323,7 @@ "canonical": "g.E().hasLabel(\"knows\").has(\"weight\")", "anonymized": "g.E().hasLabel(string0).has(string1)", "dotnet": "g.E().HasLabel(\"knows\").Has(\"weight\")", + "dotnet_parameterize": "g.E().HasLabel(\"knows\").Has(\"weight\")", "go": "g.E().HasLabel(\"knows\").Has(\"weight\")", "groovy": "g.E().hasLabel(\"knows\").has(\"weight\")", "java": "g.E().hasLabel(\"knows\").has(\"weight\")", @@ -29454,6 +31341,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -29466,6 +31354,7 @@ "canonical": "g.mergeV([:]).option(Merge.onMatch, null)", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, (IDictionary) null)", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, (IDictionary) null)", "go": "g.MergeV(map[interface{}]interface{}{ }).Option(gremlingo.Merge.OnMatch, nil)", "groovy": "g.mergeV([:]).option(Merge.onMatch, (Map) null)", "java": "g.mergeV(new LinkedHashMap() {{ }}).option(Merge.onMatch, null)", @@ -29478,6 +31367,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 29)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 29)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 29)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 29)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 29)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 29)", @@ -29495,6 +31385,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -29507,6 +31398,7 @@ "canonical": "g.V().mergeV([:]).option(Merge.onMatch, null)", "anonymized": "g.V().mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.V().MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, (IDictionary) null)", + "dotnet_parameterize": "g.V().MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, (IDictionary) null)", "go": "g.V().MergeV(map[interface{}]interface{}{ }).Option(gremlingo.Merge.OnMatch, nil)", "groovy": "g.V().mergeV([:]).option(Merge.onMatch, (Map) null)", "java": "g.V().mergeV(new LinkedHashMap() {{ }}).option(Merge.onMatch, null)", @@ -29519,6 +31411,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 29)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 29)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 29)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 29)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 29)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 29)", @@ -29536,6 +31429,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -29548,6 +31442,7 @@ "canonical": "g.mergeV(xx1)", "anonymized": "g.mergeV(map0)", "dotnet": "g.MergeV((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(xx1)", "groovy": "g.mergeV(xx1)", "java": "g.mergeV(xx1)", @@ -29565,6 +31460,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -29577,6 +31473,7 @@ "canonical": "g.V().mergeV(xx1)", "anonymized": "g.V().mergeV(map0)", "dotnet": "g.V().MergeV((IDictionary) xx1)", + "dotnet_parameterize": "g.V().MergeV(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.V().MergeV(xx1)", "groovy": "g.V().mergeV(xx1)", "java": "g.V().mergeV(xx1)", @@ -29594,6 +31491,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -29606,6 +31504,7 @@ "canonical": "g.mergeV(xx1).option(Merge.onCreate, null)", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) null)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (IDictionary) null)", "go": "g.MergeV(xx1).Option(gremlingo.Merge.OnCreate, nil)", "groovy": "g.mergeV(xx1).option(Merge.onCreate, (Map) null)", "java": "g.mergeV(xx1).option(Merge.onCreate, null)", @@ -29618,6 +31517,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29630,6 +31530,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\")", "go": "g.V().Has(\"person\", \"name\", \"marko\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\")", "java": "g.V().has(\"person\", \"name\", \"marko\")", @@ -29642,6 +31543,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\")", "go": "g.V().Has(\"person\", \"name\", \"stephen\")", "groovy": "g.V().has(\"person\", \"name\", \"stephen\")", "java": "g.V().has(\"person\", \"name\", \"stephen\")", @@ -29659,6 +31561,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -29671,6 +31574,7 @@ "canonical": "g.V().mergeV(xx1).option(Merge.onCreate, null)", "anonymized": "g.V().mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.V().MergeV((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) null)", + "dotnet_parameterize": "g.V().MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (IDictionary) null)", "go": "g.V().MergeV(xx1).Option(gremlingo.Merge.OnCreate, nil)", "groovy": "g.V().mergeV(xx1).option(Merge.onCreate, (Map) null)", "java": "g.V().mergeV(xx1).option(Merge.onCreate, null)", @@ -29683,6 +31587,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29695,6 +31600,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\")", "go": "g.V().Has(\"person\", \"name\", \"marko\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\")", "java": "g.V().has(\"person\", \"name\", \"marko\")", @@ -29707,6 +31613,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\")", "go": "g.V().Has(\"person\", \"name\", \"stephen\")", "groovy": "g.V().has(\"person\", \"name\", \"stephen\")", "java": "g.V().has(\"person\", \"name\", \"stephen\")", @@ -29724,6 +31631,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -29736,6 +31644,7 @@ "canonical": "g.mergeV(null).option(Merge.onCreate, [:])", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) null).Option(Merge.OnCreate, (IDictionary) new Dictionary {})", + "dotnet_parameterize": "g.MergeV((IDictionary) null).Option(Merge.OnCreate, (IDictionary) new Dictionary {})", "go": "g.MergeV(nil).Option(gremlingo.Merge.OnCreate, map[interface{}]interface{}{ })", "groovy": "g.mergeV((Map) null).option(Merge.onCreate, [:])", "java": "g.mergeV(null).option(Merge.onCreate, new LinkedHashMap() {{ }})", @@ -29748,6 +31657,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29765,6 +31675,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -29777,6 +31688,7 @@ "canonical": "g.V().mergeV(null).option(Merge.onCreate, [:])", "anonymized": "g.V().mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.V().MergeV((IDictionary) null).Option(Merge.OnCreate, (IDictionary) new Dictionary {})", + "dotnet_parameterize": "g.V().MergeV((IDictionary) null).Option(Merge.OnCreate, (IDictionary) new Dictionary {})", "go": "g.V().MergeV(nil).Option(gremlingo.Merge.OnCreate, map[interface{}]interface{}{ })", "groovy": "g.V().mergeV((Map) null).option(Merge.onCreate, [:])", "java": "g.V().mergeV(null).option(Merge.onCreate, new LinkedHashMap() {{ }})", @@ -29789,6 +31701,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29806,6 +31719,7 @@ "canonical": "g.mergeV([:])", "anonymized": "g.mergeV(map0)", "dotnet": "g.MergeV((IDictionary) new Dictionary {})", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {})", "go": "g.MergeV(map[interface{}]interface{}{ })", "groovy": "g.mergeV([:])", "java": "g.mergeV(new LinkedHashMap() {{ }})", @@ -29818,6 +31732,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29835,6 +31750,7 @@ "canonical": "g.inject(0).mergeV([:])", "anonymized": "g.inject(number0).mergeV(map0)", "dotnet": "g.Inject(0).MergeV((IDictionary) new Dictionary {})", + "dotnet_parameterize": "g.Inject(0).MergeV((IDictionary) new Dictionary {})", "go": "g.Inject(0).MergeV(map[interface{}]interface{}{ })", "groovy": "g.inject(0).mergeV([:])", "java": "g.inject(0).mergeV(new LinkedHashMap() {{ }})", @@ -29847,6 +31763,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29864,6 +31781,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -29876,6 +31794,7 @@ "canonical": "g.mergeV([:])", "anonymized": "g.mergeV(map0)", "dotnet": "g.MergeV((IDictionary) new Dictionary {})", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {})", "go": "g.MergeV(map[interface{}]interface{}{ })", "groovy": "g.mergeV([:])", "java": "g.mergeV(new LinkedHashMap() {{ }})", @@ -29888,6 +31807,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 29)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 29)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 29)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 29)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 29)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 29)", @@ -29905,6 +31825,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addV(string0).property(string1, string4).property(string3, number1)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", @@ -29917,6 +31838,7 @@ "canonical": "g.V().mergeV([:])", "anonymized": "g.V().mergeV(map0)", "dotnet": "g.V().MergeV((IDictionary) new Dictionary {})", + "dotnet_parameterize": "g.V().MergeV((IDictionary) new Dictionary {})", "go": "g.V().MergeV(map[interface{}]interface{}{ })", "groovy": "g.V().mergeV([:])", "java": "g.V().mergeV(new LinkedHashMap() {{ }})", @@ -29929,6 +31851,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -29941,6 +31864,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 29)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 29)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 29)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 29)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 29)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 29)", @@ -29953,6 +31877,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"vadas\").has(\"age\", 27)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"vadas\").Has(\"age\", 27)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"vadas\").Has(\"age\", 27)", "go": "g.V().Has(\"person\", \"name\", \"vadas\").Has(\"age\", 27)", "groovy": "g.V().has(\"person\", \"name\", \"vadas\").has(\"age\", 27)", "java": "g.V().has(\"person\", \"name\", \"vadas\").has(\"age\", 27)", @@ -29970,6 +31895,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -29982,6 +31908,7 @@ "canonical": "g.mergeV(null)", "anonymized": "g.mergeV(map0)", "dotnet": "g.MergeV((IDictionary) null)", + "dotnet_parameterize": "g.MergeV((IDictionary) null)", "go": "g.MergeV(nil)", "groovy": "g.mergeV((Map) null)", "java": "g.mergeV(null)", @@ -29994,6 +31921,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -30011,6 +31939,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30023,6 +31952,7 @@ "canonical": "g.mergeV(xx1)", "anonymized": "g.mergeV(map0)", "dotnet": "g.MergeV((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(xx1)", "groovy": "g.mergeV(xx1)", "java": "g.mergeV(xx1)", @@ -30035,6 +31965,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -30052,6 +31983,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30064,6 +31996,7 @@ "canonical": "g.V().mergeV(null)", "anonymized": "g.V().mergeV(map0)", "dotnet": "g.V().MergeV((IDictionary) null)", + "dotnet_parameterize": "g.V().MergeV((IDictionary) null)", "go": "g.V().MergeV(nil)", "groovy": "g.V().mergeV((Map) null)", "java": "g.V().mergeV(null)", @@ -30076,6 +32009,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -30093,6 +32027,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30105,6 +32040,7 @@ "canonical": "g.mergeV(xx1)", "anonymized": "g.mergeV(map0)", "dotnet": "g.MergeV((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(xx1)", "groovy": "g.mergeV(xx1)", "java": "g.mergeV(xx1)", @@ -30117,6 +32053,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\")", "go": "g.V().Has(\"person\", \"name\", \"stephen\")", "groovy": "g.V().has(\"person\", \"name\", \"stephen\")", "java": "g.V().has(\"person\", \"name\", \"stephen\")", @@ -30134,6 +32071,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30146,6 +32084,7 @@ "canonical": "g.mergeV(xx1)", "anonymized": "g.mergeV(map0)", "dotnet": "g.MergeV((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(xx1)", "groovy": "g.mergeV(xx1)", "java": "g.mergeV(xx1)", @@ -30158,6 +32097,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\")", "go": "g.V().Has(\"person\", \"name\", \"marko\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\")", "java": "g.V().has(\"person\", \"name\", \"marko\")", @@ -30175,6 +32115,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30187,6 +32128,7 @@ "canonical": "g.mergeV(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeV(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.mergeV(xx1).option(Merge.onCreate, xx2)", "java": "g.mergeV(xx1).option(Merge.onCreate, xx2)", @@ -30199,6 +32141,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\").has(\"age\", 19)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\").Has(\"age\", 19)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\").Has(\"age\", 19)", "go": "g.V().Has(\"person\", \"name\", \"stephen\").Has(\"age\", 19)", "groovy": "g.V().has(\"person\", \"name\", \"stephen\").has(\"age\", 19)", "java": "g.V().has(\"person\", \"name\", \"stephen\").has(\"age\", 19)", @@ -30216,6 +32159,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30228,6 +32172,7 @@ "canonical": "g.mergeV(xx1).option(Merge.onMatch, xx2)", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.MergeV((IDictionary) xx1).Option(Merge.OnMatch, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnMatch, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeV(xx1).Option(gremlingo.Merge.OnMatch, xx2)", "groovy": "g.mergeV(xx1).option(Merge.onMatch, xx2)", "java": "g.mergeV(xx1).option(Merge.onMatch, xx2)", @@ -30240,6 +32185,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", @@ -30257,6 +32203,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30269,6 +32216,7 @@ "canonical": "g.mergeV(__.select(\"c\")).option(Merge.onCreate, __.select(\"m\"))", "anonymized": "g.mergeV(__.select(string0)).option(Merge.onCreate, __.select(string1))", "dotnet": "g.MergeV((ITraversal) __.Select(\"c\")).Option(Merge.OnCreate, (ITraversal) __.Select(\"m\"))", + "dotnet_parameterize": "g.MergeV((ITraversal) __.Select(\"c\")).Option(Merge.OnCreate, (ITraversal) __.Select(\"m\"))", "go": "g.MergeV(gremlingo.T__.Select(\"c\")).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"m\"))", "groovy": "g.mergeV(__.select(\"c\")).option(Merge.onCreate, __.select(\"m\"))", "java": "g.mergeV(__.select(\"c\")).option(Merge.onCreate, __.select(\"m\"))", @@ -30281,6 +32229,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\").has(\"age\", 19)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\").Has(\"age\", 19)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\").Has(\"age\", 19)", "go": "g.V().Has(\"person\", \"name\", \"stephen\").Has(\"age\", 19)", "groovy": "g.V().has(\"person\", \"name\", \"stephen\").has(\"age\", 19)", "java": "g.V().has(\"person\", \"name\", \"stephen\").has(\"age\", 19)", @@ -30298,6 +32247,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30310,6 +32260,7 @@ "canonical": "g.mergeV(__.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", "anonymized": "g.mergeV(__.select(string0)).option(Merge.onMatch, __.select(string1))", "dotnet": "g.MergeV((ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\"))", + "dotnet_parameterize": "g.MergeV((ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\"))", "go": "g.MergeV(gremlingo.T__.Select(\"c\")).Option(gremlingo.Merge.OnMatch, gremlingo.T__.Select(\"m\"))", "groovy": "g.mergeV(__.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", "java": "g.mergeV(__.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", @@ -30322,6 +32273,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", @@ -30339,6 +32291,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30351,6 +32304,7 @@ "canonical": "g.mergeV(xx1).property(\"name\", \"vadas\", \"acl\", \"public\")", "anonymized": "g.mergeV(map0).property(string0, string1, string2, string3)", "dotnet": "g.MergeV((IDictionary) xx1).Property(\"name\", \"vadas\", \"acl\", \"public\")", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Property(\"name\", \"vadas\", \"acl\", \"public\")", "go": "g.MergeV(xx1).Property(\"name\", \"vadas\", \"acl\", \"public\")", "groovy": "g.mergeV(xx1).property(\"name\", \"vadas\", \"acl\", \"public\")", "java": "g.mergeV(xx1).property(\"name\", \"vadas\", \"acl\", \"public\")", @@ -30363,6 +32317,7 @@ "canonical": "g.V().properties(\"name\").hasValue(\"vadas\").has(\"acl\", \"public\")", "anonymized": "g.V().properties(string0).hasValue(string1).has(string2, string3)", "dotnet": "g.V().Properties(\"name\").HasValue(\"vadas\").Has(\"acl\", \"public\")", + "dotnet_parameterize": "g.V().Properties(\"name\").HasValue(\"vadas\").Has(\"acl\", \"public\")", "go": "g.V().Properties(\"name\").HasValue(\"vadas\").Has(\"acl\", \"public\")", "groovy": "g.V().properties(\"name\").hasValue(\"vadas\").has(\"acl\", \"public\")", "java": "g.V().properties(\"name\").hasValue(\"vadas\").has(\"acl\", \"public\")", @@ -30380,6 +32335,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30392,6 +32348,7 @@ "canonical": "g.inject(0).mergeV(xx1)", "anonymized": "g.inject(number0).mergeV(map0)", "dotnet": "g.Inject(0).MergeV((IDictionary) xx1)", + "dotnet_parameterize": "g.Inject(0).MergeV(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.Inject(0).MergeV(xx1)", "groovy": "g.inject(0).mergeV(xx1)", "java": "g.inject(0).mergeV(xx1)", @@ -30404,6 +32361,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\")", "go": "g.V().Has(\"person\", \"name\", \"stephen\")", "groovy": "g.V().has(\"person\", \"name\", \"stephen\")", "java": "g.V().has(\"person\", \"name\", \"stephen\")", @@ -30421,6 +32379,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30433,6 +32392,7 @@ "canonical": "g.inject(0).mergeV(xx1)", "anonymized": "g.inject(number0).mergeV(map0)", "dotnet": "g.Inject(0).MergeV((IDictionary) xx1)", + "dotnet_parameterize": "g.Inject(0).MergeV(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.Inject(0).MergeV(xx1)", "groovy": "g.inject(0).mergeV(xx1)", "java": "g.inject(0).mergeV(xx1)", @@ -30445,6 +32405,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\")", "go": "g.V().Has(\"person\", \"name\", \"marko\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\")", "java": "g.V().has(\"person\", \"name\", \"marko\")", @@ -30462,6 +32423,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30474,6 +32436,7 @@ "canonical": "g.inject(0).mergeV(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.inject(number0).mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.Inject(0).MergeV((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.Inject(0).MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.Inject(0).MergeV(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.inject(0).mergeV(xx1).option(Merge.onCreate, xx2)", "java": "g.inject(0).mergeV(xx1).option(Merge.onCreate, xx2)", @@ -30486,6 +32449,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\").has(\"age\", 19)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\").Has(\"age\", 19)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\").Has(\"age\", 19)", "go": "g.V().Has(\"person\", \"name\", \"stephen\").Has(\"age\", 19)", "groovy": "g.V().has(\"person\", \"name\", \"stephen\").has(\"age\", 19)", "java": "g.V().has(\"person\", \"name\", \"stephen\").has(\"age\", 19)", @@ -30503,6 +32467,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30515,6 +32480,7 @@ "canonical": "g.inject(0).mergeV(xx1).option(Merge.onMatch, xx2)", "anonymized": "g.inject(number0).mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.Inject(0).MergeV((IDictionary) xx1).Option(Merge.OnMatch, (IDictionary) xx2)", + "dotnet_parameterize": "g.Inject(0).MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnMatch, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.Inject(0).MergeV(xx1).Option(gremlingo.Merge.OnMatch, xx2)", "groovy": "g.inject(0).mergeV(xx1).option(Merge.onMatch, xx2)", "java": "g.inject(0).mergeV(xx1).option(Merge.onMatch, xx2)", @@ -30527,6 +32493,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", @@ -30544,6 +32511,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30556,6 +32524,7 @@ "canonical": "g.inject(0).mergeV(__.select(\"c\")).option(Merge.onCreate, __.select(\"m\"))", "anonymized": "g.inject(number0).mergeV(__.select(string0)).option(Merge.onCreate, __.select(string1))", "dotnet": "g.Inject(0).MergeV((ITraversal) __.Select(\"c\")).Option(Merge.OnCreate, (ITraversal) __.Select(\"m\"))", + "dotnet_parameterize": "g.Inject(0).MergeV((ITraversal) __.Select(\"c\")).Option(Merge.OnCreate, (ITraversal) __.Select(\"m\"))", "go": "g.Inject(0).MergeV(gremlingo.T__.Select(\"c\")).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"m\"))", "groovy": "g.inject(0).mergeV(__.select(\"c\")).option(Merge.onCreate, __.select(\"m\"))", "java": "g.inject(0).mergeV(__.select(\"c\")).option(Merge.onCreate, __.select(\"m\"))", @@ -30568,6 +32537,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\").has(\"age\", 19)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\").Has(\"age\", 19)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\").Has(\"age\", 19)", "go": "g.V().Has(\"person\", \"name\", \"stephen\").Has(\"age\", 19)", "groovy": "g.V().has(\"person\", \"name\", \"stephen\").has(\"age\", 19)", "java": "g.V().has(\"person\", \"name\", \"stephen\").has(\"age\", 19)", @@ -30585,6 +32555,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30597,6 +32568,7 @@ "canonical": "g.inject(0).mergeV(__.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", "anonymized": "g.inject(number0).mergeV(__.select(string0)).option(Merge.onMatch, __.select(string1))", "dotnet": "g.Inject(0).MergeV((ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\"))", + "dotnet_parameterize": "g.Inject(0).MergeV((ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\"))", "go": "g.Inject(0).MergeV(gremlingo.T__.Select(\"c\")).Option(gremlingo.Merge.OnMatch, gremlingo.T__.Select(\"m\"))", "groovy": "g.inject(0).mergeV(__.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", "java": "g.inject(0).mergeV(__.select(\"c\")).option(Merge.onMatch, __.select(\"m\"))", @@ -30609,6 +32581,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", @@ -30626,6 +32599,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30638,6 +32612,7 @@ "canonical": "g.inject(0).mergeV(xx1).property(\"name\", \"vadas\", \"acl\", \"public\")", "anonymized": "g.inject(number0).mergeV(map0).property(string0, string1, string2, string3)", "dotnet": "g.Inject(0).MergeV((IDictionary) xx1).Property(\"name\", \"vadas\", \"acl\", \"public\")", + "dotnet_parameterize": "g.Inject(0).MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Property(\"name\", \"vadas\", \"acl\", \"public\")", "go": "g.Inject(0).MergeV(xx1).Property(\"name\", \"vadas\", \"acl\", \"public\")", "groovy": "g.inject(0).mergeV(xx1).property(\"name\", \"vadas\", \"acl\", \"public\")", "java": "g.inject(0).mergeV(xx1).property(\"name\", \"vadas\", \"acl\", \"public\")", @@ -30650,6 +32625,7 @@ "canonical": "g.V().properties(\"name\").hasValue(\"vadas\").has(\"acl\", \"public\")", "anonymized": "g.V().properties(string0).hasValue(string1).has(string2, string3)", "dotnet": "g.V().Properties(\"name\").HasValue(\"vadas\").Has(\"acl\", \"public\")", + "dotnet_parameterize": "g.V().Properties(\"name\").HasValue(\"vadas\").Has(\"acl\", \"public\")", "go": "g.V().Properties(\"name\").HasValue(\"vadas\").Has(\"acl\", \"public\")", "groovy": "g.V().properties(\"name\").hasValue(\"vadas\").has(\"acl\", \"public\")", "java": "g.V().properties(\"name\").hasValue(\"vadas\").has(\"acl\", \"public\")", @@ -30667,6 +32643,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30679,6 +32656,7 @@ "canonical": "g.inject([T.label:\"person\", name:\"marko\"], [T.label:\"person\", name:\"stephen\"]).mergeV(__.identity())", "anonymized": "g.inject(map0, map1).mergeV(__.identity())", "dotnet": "g.Inject(new Dictionary {{ T.Label, \"person\" }, { \"name\", \"marko\" }}, new Dictionary {{ T.Label, \"person\" }, { \"name\", \"stephen\" }}).MergeV((ITraversal) __.Identity())", + "dotnet_parameterize": "g.Inject(new Dictionary {{ T.Label, \"person\" }, { \"name\", \"marko\" }}, new Dictionary {{ T.Label, \"person\" }, { \"name\", \"stephen\" }}).MergeV((ITraversal) __.Identity())", "go": "g.Inject(map[interface{}]interface{}{gremlingo.T.Label: \"person\", \"name\": \"marko\" }, map[interface{}]interface{}{gremlingo.T.Label: \"person\", \"name\": \"stephen\" }).MergeV(gremlingo.T__.Identity())", "groovy": "g.inject([T.label:\"person\", name:\"marko\"], [T.label:\"person\", name:\"stephen\"]).mergeV(__.identity())", "java": "g.inject(new LinkedHashMap() {{ put(T.label, \"person\"); put(\"name\", \"marko\"); }}, new LinkedHashMap() {{ put(T.label, \"person\"); put(\"name\", \"stephen\"); }}).mergeV(__.identity())", @@ -30691,6 +32669,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\")", "go": "g.V().Has(\"person\", \"name\", \"stephen\")", "groovy": "g.V().has(\"person\", \"name\", \"stephen\")", "java": "g.V().has(\"person\", \"name\", \"stephen\")", @@ -30703,6 +32682,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\")", "go": "g.V().Has(\"person\", \"name\", \"marko\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\")", "java": "g.V().has(\"person\", \"name\", \"marko\")", @@ -30715,6 +32695,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -30732,6 +32713,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -30744,6 +32726,7 @@ "canonical": "g.inject([T.label:\"person\", name:\"marko\"], [T.label:\"person\", name:\"stephen\"]).mergeV()", "anonymized": "g.inject(map0, map1).mergeV()", "dotnet": "g.Inject(new Dictionary {{ T.Label, \"person\" }, { \"name\", \"marko\" }}, new Dictionary {{ T.Label, \"person\" }, { \"name\", \"stephen\" }}).MergeV()", + "dotnet_parameterize": "g.Inject(new Dictionary {{ T.Label, \"person\" }, { \"name\", \"marko\" }}, new Dictionary {{ T.Label, \"person\" }, { \"name\", \"stephen\" }}).MergeV()", "go": "g.Inject(map[interface{}]interface{}{gremlingo.T.Label: \"person\", \"name\": \"marko\" }, map[interface{}]interface{}{gremlingo.T.Label: \"person\", \"name\": \"stephen\" }).MergeV()", "groovy": "g.inject([T.label:\"person\", name:\"marko\"], [T.label:\"person\", name:\"stephen\"]).mergeV()", "java": "g.inject(new LinkedHashMap() {{ put(T.label, \"person\"); put(\"name\", \"marko\"); }}, new LinkedHashMap() {{ put(T.label, \"person\"); put(\"name\", \"stephen\"); }}).mergeV()", @@ -30756,6 +32739,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\")", "go": "g.V().Has(\"person\", \"name\", \"stephen\")", "groovy": "g.V().has(\"person\", \"name\", \"stephen\")", "java": "g.V().has(\"person\", \"name\", \"stephen\")", @@ -30768,6 +32752,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\")", "go": "g.V().Has(\"person\", \"name\", \"marko\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\")", "java": "g.V().has(\"person\", \"name\", \"marko\")", @@ -30780,6 +32765,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -30797,6 +32783,7 @@ "canonical": "g.addV(\"person\").property(Cardinality.list, \"name\", \"stephen\")", "anonymized": "g.addV(string0).property(Cardinality.list, string1, string2)", "dotnet": "g.AddV((string) \"person\").Property(Cardinality.List, \"name\", \"stephen\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(Cardinality.List, \"name\", \"stephen\")", "go": "g.AddV(\"person\").Property(gremlingo.Cardinality.List, \"name\", \"stephen\")", "groovy": "g.addV(\"person\").property(Cardinality.list, \"name\", \"stephen\")", "java": "g.addV(\"person\").property(Cardinality.list, \"name\", \"stephen\")", @@ -30809,6 +32796,7 @@ "canonical": "g.mergeV(xx1).property(Cardinality.list, \"name\", \"steve\")", "anonymized": "g.mergeV(map0).property(Cardinality.list, string0, string1)", "dotnet": "g.MergeV((IDictionary) xx1).Property(Cardinality.List, \"name\", \"steve\")", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Property(Cardinality.List, \"name\", \"steve\")", "go": "g.MergeV(xx1).Property(gremlingo.Cardinality.List, \"name\", \"steve\")", "groovy": "g.mergeV(xx1).property(Cardinality.list, \"name\", \"steve\")", "java": "g.mergeV(xx1).property(Cardinality.list, \"name\", \"steve\")", @@ -30821,6 +32809,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -30833,6 +32822,7 @@ "canonical": "g.V().properties(\"name\").hasValue(\"steve\")", "anonymized": "g.V().properties(string0).hasValue(string1)", "dotnet": "g.V().Properties(\"name\").HasValue(\"steve\")", + "dotnet_parameterize": "g.V().Properties(\"name\").HasValue(\"steve\")", "go": "g.V().Properties(\"name\").HasValue(\"steve\")", "groovy": "g.V().properties(\"name\").hasValue(\"steve\")", "java": "g.V().properties(\"name\").hasValue(\"steve\")", @@ -30845,6 +32835,7 @@ "canonical": "g.V().properties(\"name\").hasValue(\"stephen\")", "anonymized": "g.V().properties(string0).hasValue(string1)", "dotnet": "g.V().Properties(\"name\").HasValue(\"stephen\")", + "dotnet_parameterize": "g.V().Properties(\"name\").HasValue(\"stephen\")", "go": "g.V().Properties(\"name\").HasValue(\"stephen\")", "groovy": "g.V().properties(\"name\").hasValue(\"stephen\")", "java": "g.V().properties(\"name\").hasValue(\"stephen\")", @@ -30857,6 +32848,7 @@ "canonical": "g.V().properties(\"name\")", "anonymized": "g.V().properties(string0)", "dotnet": "g.V().Properties(\"name\")", + "dotnet_parameterize": "g.V().Properties(\"name\")", "go": "g.V().Properties(\"name\")", "groovy": "g.V().properties(\"name\")", "java": "g.V().properties(\"name\")", @@ -30874,6 +32866,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addV(string0).property(string1, string2).property(string3, number1)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "go": "g.AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 29).AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27)", "groovy": "g.addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", "java": "g.addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 29).addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27)", @@ -30886,6 +32879,7 @@ "canonical": "g.mergeV(xx1).option(Merge.onMatch, xx2)", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.MergeV((IDictionary) xx1).Option(Merge.OnMatch, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnMatch, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeV(xx1).Option(gremlingo.Merge.OnMatch, xx2)", "groovy": "g.mergeV(xx1).option(Merge.onMatch, xx2)", "java": "g.mergeV(xx1).option(Merge.onMatch, xx2)", @@ -30898,6 +32892,7 @@ "canonical": "g.V().has(\"age\", 35)", "anonymized": "g.V().has(string0, number0)", "dotnet": "g.V().Has(\"age\", 35)", + "dotnet_parameterize": "g.V().Has(\"age\", 35)", "go": "g.V().Has(\"age\", 35)", "groovy": "g.V().has(\"age\", 35)", "java": "g.V().has(\"age\", 35)", @@ -30910,6 +32905,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -30927,6 +32923,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 29).addV(\"person\").property(\"name\", \"stephen\").property(\"age\", 27)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).addV(string0).property(string1, string4).property(string3, number1)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"stephen\").Property(\"age\", 27)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 29).AddV((string) \"person\").Property(\"name\", \"stephen\").Property(\"age\", 27)", "go": "g.AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 29).AddV(\"person\").Property(\"name\", \"stephen\").Property(\"age\", 27)", "groovy": "g.addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 29).addV(\"person\").property(\"name\", \"stephen\").property(\"age\", 27)", "java": "g.addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 29).addV(\"person\").property(\"name\", \"stephen\").property(\"age\", 27)", @@ -30939,6 +32936,7 @@ "canonical": "g.V().map(__.mergeV(xx1))", "anonymized": "g.V().map(__.mergeV(map0))", "dotnet": "g.V().Map(__.MergeV((IDictionary) xx1))", + "dotnet_parameterize": "g.V().Map(__.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)))", "go": "g.V().Map(gremlingo.T__.MergeV(xx1))", "groovy": "g.V().map(__.mergeV(xx1))", "java": "g.V().map(__.mergeV(xx1))", @@ -30951,6 +32949,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"josh\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"josh\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"josh\")", "go": "g.V().Has(\"person\", \"name\", \"josh\")", "groovy": "g.V().has(\"person\", \"name\", \"josh\")", "java": "g.V().has(\"person\", \"name\", \"josh\")", @@ -30963,6 +32962,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -30980,6 +32980,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "anonymized": "g.addV(string0).property(string1, string2).property(Cardinality.list, string3, number0).property(Cardinality.list, string3, number1).property(Cardinality.list, string3, number2)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(gremlingo.Cardinality.List, \"age\", 29).Property(gremlingo.Cardinality.List, \"age\", 31).Property(gremlingo.Cardinality.List, \"age\", 32)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", @@ -30992,6 +32993,7 @@ "canonical": "g.mergeV(__.select(\"c\")).option(Merge.onMatch, __.sideEffect(__.properties(\"age\").drop()).select(\"m\"))", "anonymized": "g.mergeV(__.select(string0)).option(Merge.onMatch, __.sideEffect(__.properties(string1).drop()).select(string2))", "dotnet": "g.MergeV((ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Properties(\"age\").Drop()).Select(\"m\"))", + "dotnet_parameterize": "g.MergeV((ITraversal) __.Select(\"c\")).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Properties(\"age\").Drop()).Select(\"m\"))", "go": "g.MergeV(gremlingo.T__.Select(\"c\")).Option(gremlingo.Merge.OnMatch, gremlingo.T__.SideEffect(gremlingo.T__.Properties(\"age\").Drop()).Select(\"m\"))", "groovy": "g.mergeV(__.select(\"c\")).option(Merge.onMatch, __.sideEffect(__.properties(\"age\").drop()).select(\"m\"))", "java": "g.mergeV(__.select(\"c\")).option(Merge.onMatch, __.sideEffect(__.properties(\"age\").drop()).select(\"m\"))", @@ -31004,6 +33006,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", @@ -31016,6 +33019,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", "anonymized": "g.V().has(string0, string1, string2).has(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", @@ -31033,6 +33037,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "anonymized": "g.addV(string0).property(string1, string2).property(Cardinality.list, string3, number0).property(Cardinality.list, string3, number1).property(Cardinality.list, string3, number2)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(gremlingo.Cardinality.List, \"age\", 29).Property(gremlingo.Cardinality.List, \"age\", 31).Property(gremlingo.Cardinality.List, \"age\", 32)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", @@ -31045,6 +33050,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").mergeV([:]).option(Merge.onMatch, __.sideEffect(__.properties(\"age\").drop()).select(\"m\"))", "anonymized": "g.V().has(string0, string1, string2).mergeV(map0).option(Merge.onMatch, __.sideEffect(__.properties(string3).drop()).select(string4))", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Properties(\"age\").Drop()).Select(\"m\"))", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, (ITraversal) __.SideEffect(__.Properties(\"age\").Drop()).Select(\"m\"))", "go": "g.V().Has(\"person\", \"name\", \"marko\").MergeV(map[interface{}]interface{}{ }).Option(gremlingo.Merge.OnMatch, gremlingo.T__.SideEffect(gremlingo.T__.Properties(\"age\").Drop()).Select(\"m\"))", "groovy": "g.V().has(\"person\", \"name\", \"marko\").mergeV([:]).option(Merge.onMatch, __.sideEffect(__.properties(\"age\").drop()).select(\"m\"))", "java": "g.V().has(\"person\", \"name\", \"marko\").mergeV(new LinkedHashMap() {{ }}).option(Merge.onMatch, __.sideEffect(__.properties(\"age\").drop()).select(\"m\"))", @@ -31057,6 +33063,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 19)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 19)", @@ -31069,6 +33076,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", @@ -31086,6 +33094,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"mike\").property(T.id, \"1\")", "anonymized": "g.addV(string0).property(string1, string2).property(T.id, string3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"mike\").Property(T.Id, \"1\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"mike\").Property(T.Id, \"1\")", "go": "g.AddV(\"person\").Property(\"name\", \"mike\").Property(gremlingo.T.Id, \"1\")", "groovy": "g.addV(\"person\").property(\"name\", \"mike\").property(T.id, \"1\")", "java": "g.addV(\"person\").property(\"name\", \"mike\").property(T.id, \"1\")", @@ -31098,6 +33107,7 @@ "canonical": "g.mergeV(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeV(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.mergeV(xx1).option(Merge.onCreate, xx2)", "java": "g.mergeV(xx1).option(Merge.onCreate, xx2)", @@ -31110,6 +33120,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -31122,6 +33133,7 @@ "canonical": "g.V(\"1\").has(\"person\", \"name\", \"mike\")", "anonymized": "g.V(string0).has(string1, string2, string3)", "dotnet": "g.V(\"1\").Has(\"person\", \"name\", \"mike\")", + "dotnet_parameterize": "g.V(\"1\").Has(\"person\", \"name\", \"mike\")", "go": "g.V(\"1\").Has(\"person\", \"name\", \"mike\")", "groovy": "g.V(\"1\").has(\"person\", \"name\", \"mike\")", "java": "g.V(\"1\").has(\"person\", \"name\", \"mike\")", @@ -31139,6 +33151,7 @@ "canonical": "g.mergeV(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeV(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.mergeV(xx1).option(Merge.onCreate, xx2)", "java": "g.mergeV(xx1).option(Merge.onCreate, xx2)", @@ -31151,6 +33164,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -31163,6 +33177,7 @@ "canonical": "g.V(\"1\").has(\"person\", \"name\", \"mike\")", "anonymized": "g.V(string0).has(string1, string2, string3)", "dotnet": "g.V(\"1\").Has(\"person\", \"name\", \"mike\")", + "dotnet_parameterize": "g.V(\"1\").Has(\"person\", \"name\", \"mike\")", "go": "g.V(\"1\").Has(\"person\", \"name\", \"mike\")", "groovy": "g.V(\"1\").has(\"person\", \"name\", \"mike\")", "java": "g.V(\"1\").has(\"person\", \"name\", \"mike\")", @@ -31180,6 +33195,7 @@ "canonical": "g.mergeV(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeV(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.mergeV(xx1).option(Merge.onCreate, xx2)", "java": "g.mergeV(xx1).option(Merge.onCreate, xx2)", @@ -31192,6 +33208,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -31204,6 +33221,7 @@ "canonical": "g.V(\"1\").has(\"person\", \"name\", \"mike\")", "anonymized": "g.V(string0).has(string1, string2, string3)", "dotnet": "g.V(\"1\").Has(\"person\", \"name\", \"mike\")", + "dotnet_parameterize": "g.V(\"1\").Has(\"person\", \"name\", \"mike\")", "go": "g.V(\"1\").Has(\"person\", \"name\", \"mike\")", "groovy": "g.V(\"1\").has(\"person\", \"name\", \"mike\")", "java": "g.V(\"1\").has(\"person\", \"name\", \"mike\")", @@ -31221,6 +33239,7 @@ "canonical": "g.mergeV(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeV(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.mergeV(xx1).option(Merge.onCreate, xx2)", "java": "g.mergeV(xx1).option(Merge.onCreate, xx2)", @@ -31238,6 +33257,7 @@ "canonical": "g.mergeV(xx1).option(Merge.onCreate, __.select('sideEffect1'))", "anonymized": "g.mergeV(map0).option(Merge.onCreate, __.select(string0))", "dotnet": "g.MergeV((IDictionary) xx1).Option(Merge.OnCreate, (ITraversal) __.Select(\"sideEffect1\"))", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, (ITraversal) __.Select(\"sideEffect1\"))", "go": "g.MergeV(xx1).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"sideEffect1\"))", "groovy": "g.mergeV(xx1).option(Merge.onCreate, __.select('sideEffect1'))", "java": "g.mergeV(xx1).option(Merge.onCreate, __.select(\"sideEffect1\"))", @@ -31255,6 +33275,7 @@ "canonical": "g.mergeV(xx1).option(Merge.onCreate, xx2)", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) xx1).Option(Merge.OnCreate, (IDictionary) xx2)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1)).Option(Merge.OnCreate, new GValue>(\"xx2\", (IDictionary) xx2))", "go": "g.MergeV(xx1).Option(gremlingo.Merge.OnCreate, xx2)", "groovy": "g.mergeV(xx1).option(Merge.onCreate, xx2)", "java": "g.mergeV(xx1).option(Merge.onCreate, xx2)", @@ -31272,6 +33293,7 @@ "canonical": "g.mergeV(xx1)", "anonymized": "g.mergeV(map0)", "dotnet": "g.MergeV((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(xx1)", "groovy": "g.mergeV(xx1)", "java": "g.mergeV(xx1)", @@ -31289,6 +33311,7 @@ "canonical": "g.mergeV(xx1)", "anonymized": "g.mergeV(map0)", "dotnet": "g.MergeV((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(xx1)", "groovy": "g.mergeV(xx1)", "java": "g.mergeV(xx1)", @@ -31306,6 +33329,7 @@ "canonical": "g.mergeV(xx1)", "anonymized": "g.mergeV(map0)", "dotnet": "g.MergeV((IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV(new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(xx1)", "groovy": "g.mergeV(xx1)", "java": "g.mergeV(xx1)", @@ -31323,6 +33347,7 @@ "canonical": "g.mergeV([:]).option(Merge.onCreate, xx1)", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnCreate, (IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnCreate, new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(map[interface{}]interface{}{ }).Option(gremlingo.Merge.OnCreate, xx1)", "groovy": "g.mergeV([:]).option(Merge.onCreate, xx1)", "java": "g.mergeV(new LinkedHashMap() {{ }}).option(Merge.onCreate, xx1)", @@ -31340,6 +33365,7 @@ "canonical": "g.mergeV([:]).option(Merge.onCreate, xx1)", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnCreate, (IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnCreate, new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(map[interface{}]interface{}{ }).Option(gremlingo.Merge.OnCreate, xx1)", "groovy": "g.mergeV([:]).option(Merge.onCreate, xx1)", "java": "g.mergeV(new LinkedHashMap() {{ }}).option(Merge.onCreate, xx1)", @@ -31357,6 +33383,7 @@ "canonical": "g.mergeV([:]).option(Merge.onCreate, xx1)", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnCreate, (IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnCreate, new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(map[interface{}]interface{}{ }).Option(gremlingo.Merge.OnCreate, xx1)", "groovy": "g.mergeV([:]).option(Merge.onCreate, xx1)", "java": "g.mergeV(new LinkedHashMap() {{ }}).option(Merge.onCreate, xx1)", @@ -31374,6 +33401,7 @@ "canonical": "g.addV(\"vertex\")", "anonymized": "g.addV(string0)", "dotnet": "g.AddV((string) \"vertex\")", + "dotnet_parameterize": "g.AddV((string) \"vertex\")", "go": "g.AddV(\"vertex\")", "groovy": "g.addV(\"vertex\")", "java": "g.addV(\"vertex\")", @@ -31386,6 +33414,7 @@ "canonical": "g.mergeV([:]).option(Merge.onMatch, xx1)", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, (IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(map[interface{}]interface{}{ }).Option(gremlingo.Merge.OnMatch, xx1)", "groovy": "g.mergeV([:]).option(Merge.onMatch, xx1)", "java": "g.mergeV(new LinkedHashMap() {{ }}).option(Merge.onMatch, xx1)", @@ -31403,6 +33432,7 @@ "canonical": "g.addV(\"vertex\")", "anonymized": "g.addV(string0)", "dotnet": "g.AddV((string) \"vertex\")", + "dotnet_parameterize": "g.AddV((string) \"vertex\")", "go": "g.AddV(\"vertex\")", "groovy": "g.addV(\"vertex\")", "java": "g.addV(\"vertex\")", @@ -31415,6 +33445,7 @@ "canonical": "g.mergeV([:]).option(Merge.onMatch, xx1)", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, (IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(map[interface{}]interface{}{ }).Option(gremlingo.Merge.OnMatch, xx1)", "groovy": "g.mergeV([:]).option(Merge.onMatch, xx1)", "java": "g.mergeV(new LinkedHashMap() {{ }}).option(Merge.onMatch, xx1)", @@ -31432,6 +33463,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "anonymized": "g.addV(string0).property(string1, string2).property(Cardinality.list, string3, number0).property(Cardinality.list, string3, number1).property(Cardinality.list, string3, number2)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(gremlingo.Cardinality.List, \"age\", 29).Property(gremlingo.Cardinality.List, \"age\", 31).Property(gremlingo.Cardinality.List, \"age\", 32)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", @@ -31444,6 +33476,7 @@ "canonical": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [age:Cardinality.list(33)])", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, (IDictionary) new Dictionary {{ \"age\", CardinalityValue.List(33) }})", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, (IDictionary) new Dictionary {{ \"age\", CardinalityValue.List(33) }})", "go": "g.MergeV(map[interface{}]interface{}{\"name\": \"marko\" }).Option(gremlingo.Merge.OnMatch, map[interface{}]interface{}{\"age\": gremlingo.CardinalityValue.List(33) })", "groovy": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [age:Cardinality.list(33)])", "java": "g.mergeV(new LinkedHashMap() {{ put(\"name\", \"marko\"); }}).option(Merge.onMatch, new LinkedHashMap() {{ put(\"age\", Cardinality.list(33)); }})", @@ -31456,6 +33489,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 33)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 33)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 33)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 33)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 33)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 33)", @@ -31468,6 +33502,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", "anonymized": "g.V().has(string0, string1, string2).has(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", @@ -31480,6 +33515,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", @@ -31497,6 +33533,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "anonymized": "g.addV(string0).property(string1, string2).property(Cardinality.list, string3, number0).property(Cardinality.list, string3, number1).property(Cardinality.list, string3, number2)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(gremlingo.Cardinality.List, \"age\", 29).Property(gremlingo.Cardinality.List, \"age\", 31).Property(gremlingo.Cardinality.List, \"age\", 32)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", @@ -31509,6 +33546,7 @@ "canonical": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [age:Cardinality.set(33)])", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, (IDictionary) new Dictionary {{ \"age\", CardinalityValue.Set(33) }})", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, (IDictionary) new Dictionary {{ \"age\", CardinalityValue.Set(33) }})", "go": "g.MergeV(map[interface{}]interface{}{\"name\": \"marko\" }).Option(gremlingo.Merge.OnMatch, map[interface{}]interface{}{\"age\": gremlingo.CardinalityValue.Set(33) })", "groovy": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [age:Cardinality.set(33)])", "java": "g.mergeV(new LinkedHashMap() {{ put(\"name\", \"marko\"); }}).option(Merge.onMatch, new LinkedHashMap() {{ put(\"age\", Cardinality.set(33)); }})", @@ -31521,6 +33559,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 33)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 33)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 33)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 33)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 33)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 33)", @@ -31533,6 +33572,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", "anonymized": "g.V().has(string0, string1, string2).has(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", @@ -31545,6 +33585,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", @@ -31562,6 +33603,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "anonymized": "g.addV(string0).property(string1, string2).property(Cardinality.list, string3, number0).property(Cardinality.list, string3, number1).property(Cardinality.list, string3, number2)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(gremlingo.Cardinality.List, \"age\", 29).Property(gremlingo.Cardinality.List, \"age\", 31).Property(gremlingo.Cardinality.List, \"age\", 32)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", @@ -31574,6 +33616,7 @@ "canonical": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [age:Cardinality.set(31)])", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, (IDictionary) new Dictionary {{ \"age\", CardinalityValue.Set(31) }})", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, (IDictionary) new Dictionary {{ \"age\", CardinalityValue.Set(31) }})", "go": "g.MergeV(map[interface{}]interface{}{\"name\": \"marko\" }).Option(gremlingo.Merge.OnMatch, map[interface{}]interface{}{\"age\": gremlingo.CardinalityValue.Set(31) })", "groovy": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [age:Cardinality.set(31)])", "java": "g.mergeV(new LinkedHashMap() {{ put(\"name\", \"marko\"); }}).option(Merge.onMatch, new LinkedHashMap() {{ put(\"age\", Cardinality.set(31)); }})", @@ -31586,6 +33629,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 31)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 31)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 31)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 31)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 31)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 31)", @@ -31598,6 +33642,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", "anonymized": "g.V().has(string0, string1, string2).has(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", @@ -31610,6 +33655,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", @@ -31627,6 +33673,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "anonymized": "g.addV(string0).property(string1, string2).property(Cardinality.list, string3, number0).property(Cardinality.list, string3, number1).property(Cardinality.list, string3, number2)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(gremlingo.Cardinality.List, \"age\", 29).Property(gremlingo.Cardinality.List, \"age\", 31).Property(gremlingo.Cardinality.List, \"age\", 32)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", @@ -31639,6 +33686,7 @@ "canonical": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [age:Cardinality.single(33)])", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, (IDictionary) new Dictionary {{ \"age\", CardinalityValue.Single(33) }})", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, (IDictionary) new Dictionary {{ \"age\", CardinalityValue.Single(33) }})", "go": "g.MergeV(map[interface{}]interface{}{\"name\": \"marko\" }).Option(gremlingo.Merge.OnMatch, map[interface{}]interface{}{\"age\": gremlingo.CardinalityValue.Single(33) })", "groovy": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [age:Cardinality.single(33)])", "java": "g.mergeV(new LinkedHashMap() {{ put(\"name\", \"marko\"); }}).option(Merge.onMatch, new LinkedHashMap() {{ put(\"age\", Cardinality.single(33)); }})", @@ -31651,6 +33699,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 33)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 33)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 33)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 33)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 33)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 33)", @@ -31663,6 +33712,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", "anonymized": "g.V().has(string0, string1, string2).has(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", @@ -31675,6 +33725,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", @@ -31692,6 +33743,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "anonymized": "g.addV(string0).property(string1, string2).property(Cardinality.list, string3, number0).property(Cardinality.list, string3, number1).property(Cardinality.list, string3, number2)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(gremlingo.Cardinality.List, \"age\", 29).Property(gremlingo.Cardinality.List, \"age\", 31).Property(gremlingo.Cardinality.List, \"age\", 32)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", @@ -31704,6 +33756,7 @@ "canonical": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [age:33], Cardinality.single)", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1, Cardinality.single)", "dotnet": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, new Dictionary {{ \"age\", 33 }}, Cardinality.Single)", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, new Dictionary {{ \"age\", 33 }}, Cardinality.Single)", "go": "g.MergeV(map[interface{}]interface{}{\"name\": \"marko\" }).Option(gremlingo.Merge.OnMatch, map[interface{}]interface{}{\"age\": 33 }, gremlingo.Cardinality.Single)", "groovy": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [age:33], Cardinality.single)", "java": "g.mergeV(new LinkedHashMap() {{ put(\"name\", \"marko\"); }}).option(Merge.onMatch, new LinkedHashMap() {{ put(\"age\", 33); }}, Cardinality.single)", @@ -31716,6 +33769,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 33)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 33)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 33)", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\", 33)", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 33)", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\", 33)", @@ -31728,6 +33782,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", "anonymized": "g.V().has(string0, string1, string2).has(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"age\")", @@ -31740,6 +33795,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Properties(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", "java": "g.V().has(\"person\", \"name\", \"marko\").properties(\"age\")", @@ -31757,6 +33813,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "anonymized": "g.addV(string0).property(string1, string2).property(Cardinality.list, string3, number0).property(Cardinality.list, string3, number1).property(Cardinality.list, string3, number2)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(gremlingo.Cardinality.List, \"age\", 29).Property(gremlingo.Cardinality.List, \"age\", 31).Property(gremlingo.Cardinality.List, \"age\", 32)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", @@ -31769,6 +33826,7 @@ "canonical": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [name:\"allen\", age:Cardinality.set(31)], Cardinality.single)", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1, Cardinality.single)", "dotnet": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, new Dictionary {{ \"name\", \"allen\" }, { \"age\", CardinalityValue.Set(31) }}, Cardinality.Single)", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, new Dictionary {{ \"name\", \"allen\" }, { \"age\", CardinalityValue.Set(31) }}, Cardinality.Single)", "go": "g.MergeV(map[interface{}]interface{}{\"name\": \"marko\" }).Option(gremlingo.Merge.OnMatch, map[interface{}]interface{}{\"name\": \"allen\", \"age\": gremlingo.CardinalityValue.Set(31) }, gremlingo.Cardinality.Single)", "groovy": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [name:\"allen\", age:Cardinality.set(31)], Cardinality.single)", "java": "g.mergeV(new LinkedHashMap() {{ put(\"name\", \"marko\"); }}).option(Merge.onMatch, new LinkedHashMap() {{ put(\"name\", \"allen\"); put(\"age\", Cardinality.set(31)); }}, Cardinality.single)", @@ -31781,6 +33839,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\")", "go": "g.V().Has(\"person\", \"name\", \"marko\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\")", "java": "g.V().has(\"person\", \"name\", \"marko\")", @@ -31793,6 +33852,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\", 31)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\", 31)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\", 31)", "go": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\", 31)", "groovy": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\", 31)", "java": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\", 31)", @@ -31805,6 +33865,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\")", "anonymized": "g.V().has(string0, string1, string2).has(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\")", "java": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\")", @@ -31817,6 +33878,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"allen\").properties(\"age\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"allen\").Properties(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"allen\").Properties(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"allen\").Properties(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"allen\").properties(\"age\")", "java": "g.V().has(\"person\", \"name\", \"allen\").properties(\"age\")", @@ -31834,6 +33896,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "anonymized": "g.addV(string0).property(string1, string2).property(Cardinality.list, string3, number0).property(Cardinality.list, string3, number1).property(Cardinality.list, string3, number2)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(Cardinality.List, \"age\", 29).Property(Cardinality.List, \"age\", 31).Property(Cardinality.List, \"age\", 32)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(gremlingo.Cardinality.List, \"age\", 29).Property(gremlingo.Cardinality.List, \"age\", 31).Property(gremlingo.Cardinality.List, \"age\", 32)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(Cardinality.list, \"age\", 29).property(Cardinality.list, \"age\", 31).property(Cardinality.list, \"age\", 32)", @@ -31846,6 +33909,7 @@ "canonical": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [name:\"allen\", age:Cardinality.single(31)], Cardinality.single)", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1, Cardinality.single)", "dotnet": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, new Dictionary {{ \"name\", \"allen\" }, { \"age\", CardinalityValue.Single(31) }}, Cardinality.Single)", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"marko\" }}).Option(Merge.OnMatch, new Dictionary {{ \"name\", \"allen\" }, { \"age\", CardinalityValue.Single(31) }}, Cardinality.Single)", "go": "g.MergeV(map[interface{}]interface{}{\"name\": \"marko\" }).Option(gremlingo.Merge.OnMatch, map[interface{}]interface{}{\"name\": \"allen\", \"age\": gremlingo.CardinalityValue.Single(31) }, gremlingo.Cardinality.Single)", "groovy": "g.mergeV([name:\"marko\"]).option(Merge.onMatch, [name:\"allen\", age:Cardinality.single(31)], Cardinality.single)", "java": "g.mergeV(new LinkedHashMap() {{ put(\"name\", \"marko\"); }}).option(Merge.onMatch, new LinkedHashMap() {{ put(\"name\", \"allen\"); put(\"age\", Cardinality.single(31)); }}, Cardinality.single)", @@ -31858,6 +33922,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\")", "anonymized": "g.V().has(string0, string1, string2)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\")", "go": "g.V().Has(\"person\", \"name\", \"marko\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\")", "java": "g.V().has(\"person\", \"name\", \"marko\")", @@ -31870,6 +33935,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\", 33)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\", 33)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\", 33)", "go": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\", 33)", "groovy": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\", 33)", "java": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\", 33)", @@ -31882,6 +33948,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\", 31)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\", 31)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\", 31)", "go": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\", 31)", "groovy": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\", 31)", "java": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\", 31)", @@ -31894,6 +33961,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\")", "anonymized": "g.V().has(string0, string1, string2).has(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"allen\").Has(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\")", "java": "g.V().has(\"person\", \"name\", \"allen\").has(\"age\")", @@ -31906,6 +33974,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"allen\").properties(\"age\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"allen\").Properties(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"allen\").Properties(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"allen\").Properties(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"allen\").properties(\"age\")", "java": "g.V().has(\"person\", \"name\", \"allen\").properties(\"age\")", @@ -31923,6 +33992,7 @@ "canonical": "g.mergeV([name:\"alice\", (T.label):\"person\"]).option(Merge.onCreate, [age:Cardinality.single(81)])", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"alice\" }, { T.Label, \"person\" }}).Option(Merge.OnCreate, (IDictionary) new Dictionary {{ \"age\", CardinalityValue.Single(81) }})", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"alice\" }, { T.Label, \"person\" }}).Option(Merge.OnCreate, (IDictionary) new Dictionary {{ \"age\", CardinalityValue.Single(81) }})", "go": "g.MergeV(map[interface{}]interface{}{\"name\": \"alice\", gremlingo.T.Label: \"person\" }).Option(gremlingo.Merge.OnCreate, map[interface{}]interface{}{\"age\": gremlingo.CardinalityValue.Single(81) })", "groovy": "g.mergeV([name:\"alice\", (T.label):\"person\"]).option(Merge.onCreate, [age:Cardinality.single(81)])", "java": "g.mergeV(new LinkedHashMap() {{ put(\"name\", \"alice\"); put(T.label, \"person\"); }}).option(Merge.onCreate, new LinkedHashMap() {{ put(\"age\", Cardinality.single(81)); }})", @@ -31935,6 +34005,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\", 81)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\", 81)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\", 81)", "go": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\", 81)", "groovy": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\", 81)", "java": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\", 81)", @@ -31947,6 +34018,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\")", "anonymized": "g.V().has(string0, string1, string2).has(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\")", "java": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\")", @@ -31959,6 +34031,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").properties(\"age\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Properties(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Properties(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"alice\").Properties(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"alice\").properties(\"age\")", "java": "g.V().has(\"person\", \"name\", \"alice\").properties(\"age\")", @@ -31976,6 +34049,7 @@ "canonical": "g.mergeV([name:\"alice\", (T.label):\"person\"]).option(Merge.onCreate, [age:Cardinality.set(81)])", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"alice\" }, { T.Label, \"person\" }}).Option(Merge.OnCreate, (IDictionary) new Dictionary {{ \"age\", CardinalityValue.Set(81) }})", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"alice\" }, { T.Label, \"person\" }}).Option(Merge.OnCreate, (IDictionary) new Dictionary {{ \"age\", CardinalityValue.Set(81) }})", "go": "g.MergeV(map[interface{}]interface{}{\"name\": \"alice\", gremlingo.T.Label: \"person\" }).Option(gremlingo.Merge.OnCreate, map[interface{}]interface{}{\"age\": gremlingo.CardinalityValue.Set(81) })", "groovy": "g.mergeV([name:\"alice\", (T.label):\"person\"]).option(Merge.onCreate, [age:Cardinality.set(81)])", "java": "g.mergeV(new LinkedHashMap() {{ put(\"name\", \"alice\"); put(T.label, \"person\"); }}).option(Merge.onCreate, new LinkedHashMap() {{ put(\"age\", Cardinality.set(81)); }})", @@ -31988,6 +34062,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\", 81)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\", 81)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\", 81)", "go": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\", 81)", "groovy": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\", 81)", "java": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\", 81)", @@ -32000,6 +34075,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\")", "anonymized": "g.V().has(string0, string1, string2).has(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\")", "java": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\")", @@ -32012,6 +34088,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").properties(\"age\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Properties(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Properties(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"alice\").Properties(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"alice\").properties(\"age\")", "java": "g.V().has(\"person\", \"name\", \"alice\").properties(\"age\")", @@ -32029,6 +34106,7 @@ "canonical": "g.mergeV([name:\"alice\", (T.label):\"person\"]).option(Merge.onCreate, [age:81], Cardinality.set)", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1, Cardinality.set)", "dotnet": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"alice\" }, { T.Label, \"person\" }}).Option(Merge.OnCreate, new Dictionary {{ \"age\", 81 }}, Cardinality.Set)", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"alice\" }, { T.Label, \"person\" }}).Option(Merge.OnCreate, new Dictionary {{ \"age\", 81 }}, Cardinality.Set)", "go": "g.MergeV(map[interface{}]interface{}{\"name\": \"alice\", gremlingo.T.Label: \"person\" }).Option(gremlingo.Merge.OnCreate, map[interface{}]interface{}{\"age\": 81 }, gremlingo.Cardinality.Set)", "groovy": "g.mergeV([name:\"alice\", (T.label):\"person\"]).option(Merge.onCreate, [age:81], Cardinality.set)", "java": "g.mergeV(new LinkedHashMap() {{ put(\"name\", \"alice\"); put(T.label, \"person\"); }}).option(Merge.onCreate, new LinkedHashMap() {{ put(\"age\", 81); }}, Cardinality.set)", @@ -32041,6 +34119,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\", 81)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\", 81)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\", 81)", "go": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\", 81)", "groovy": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\", 81)", "java": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\", 81)", @@ -32053,6 +34132,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\")", "anonymized": "g.V().has(string0, string1, string2).has(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\")", "java": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\")", @@ -32065,6 +34145,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").properties(\"age\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Properties(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Properties(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"alice\").Properties(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"alice\").properties(\"age\")", "java": "g.V().has(\"person\", \"name\", \"alice\").properties(\"age\")", @@ -32082,6 +34163,7 @@ "canonical": "g.mergeV([name:\"alice\"]).option(Merge.onCreate, [age:81, (T.label):\"person\"], Cardinality.set)", "anonymized": "g.mergeV(map0).option(Merge.onCreate, map1, Cardinality.set)", "dotnet": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"alice\" }}).Option(Merge.OnCreate, new Dictionary {{ \"age\", 81 }, { T.Label, \"person\" }}, Cardinality.Set)", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {{ \"name\", \"alice\" }}).Option(Merge.OnCreate, new Dictionary {{ \"age\", 81 }, { T.Label, \"person\" }}, Cardinality.Set)", "go": "g.MergeV(map[interface{}]interface{}{\"name\": \"alice\" }).Option(gremlingo.Merge.OnCreate, map[interface{}]interface{}{\"age\": 81, gremlingo.T.Label: \"person\" }, gremlingo.Cardinality.Set)", "groovy": "g.mergeV([name:\"alice\"]).option(Merge.onCreate, [age:81, (T.label):\"person\"], Cardinality.set)", "java": "g.mergeV(new LinkedHashMap() {{ put(\"name\", \"alice\"); }}).option(Merge.onCreate, new LinkedHashMap() {{ put(\"age\", 81); put(T.label, \"person\"); }}, Cardinality.set)", @@ -32094,6 +34176,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\", 81)", "anonymized": "g.V().has(string0, string1, string2).has(string3, number0)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\", 81)", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\", 81)", "go": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\", 81)", "groovy": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\", 81)", "java": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\", 81)", @@ -32106,6 +34189,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\")", "anonymized": "g.V().has(string0, string1, string2).has(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"alice\").Has(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\")", "java": "g.V().has(\"person\", \"name\", \"alice\").has(\"age\")", @@ -32118,6 +34202,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"alice\").properties(\"age\")", "anonymized": "g.V().has(string0, string1, string2).properties(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"alice\").Properties(\"age\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"alice\").Properties(\"age\")", "go": "g.V().Has(\"person\", \"name\", \"alice\").Properties(\"age\")", "groovy": "g.V().has(\"person\", \"name\", \"alice\").properties(\"age\")", "java": "g.V().has(\"person\", \"name\", \"alice\").properties(\"age\")", @@ -32135,6 +34220,7 @@ "canonical": "g.mergeV([:]).option(Merge.onMatch, xx1)", "anonymized": "g.mergeV(map0).option(Merge.onMatch, map1)", "dotnet": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, (IDictionary) xx1)", + "dotnet_parameterize": "g.MergeV((IDictionary) new Dictionary {}).Option(Merge.OnMatch, new GValue>(\"xx1\", (IDictionary) xx1))", "go": "g.MergeV(map[interface{}]interface{}{ }).Option(gremlingo.Merge.OnMatch, xx1)", "groovy": "g.mergeV([:]).option(Merge.onMatch, xx1)", "java": "g.mergeV(new LinkedHashMap() {{ }}).option(Merge.onMatch, xx1)", @@ -32152,6 +34238,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -32164,6 +34251,7 @@ "canonical": "g.inject([T.label:\"person\", name:\"marko\"], [T.label:\"person\", name:\"marko\"], [created:\"N\"]).fold().as(\"m\").mergeV(__.select(\"m\").limit(Scope.local, 1).unfold()).option(Merge.onCreate, __.select(\"m\").range(Scope.local, 1, 2).unfold()).option(Merge.onMatch, __.select(\"m\").tail(Scope.local).unfold())", "anonymized": "g.inject(map0, map0, map1).fold().as(string0).mergeV(__.select(string0).limit(Scope.local, number0).unfold()).option(Merge.onCreate, __.select(string0).range(Scope.local, number0, number1).unfold()).option(Merge.onMatch, __.select(string0).tail(Scope.local).unfold())", "dotnet": "g.Inject(new Dictionary {{ T.Label, \"person\" }, { \"name\", \"marko\" }}, new Dictionary {{ T.Label, \"person\" }, { \"name\", \"marko\" }}, new Dictionary {{ \"created\", \"N\" }}).Fold().As(\"m\").MergeV((ITraversal) __.Select(\"m\").Limit(Scope.Local, 1).Unfold()).Option(Merge.OnCreate, (ITraversal) __.Select(\"m\").Range(Scope.Local, 1, 2).Unfold()).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\").Tail(Scope.Local).Unfold())", + "dotnet_parameterize": "g.Inject(new Dictionary {{ T.Label, \"person\" }, { \"name\", \"marko\" }}, new Dictionary {{ T.Label, \"person\" }, { \"name\", \"marko\" }}, new Dictionary {{ \"created\", \"N\" }}).Fold().As(\"m\").MergeV((ITraversal) __.Select(\"m\").Limit(Scope.Local, 1).Unfold()).Option(Merge.OnCreate, (ITraversal) __.Select(\"m\").Range(Scope.Local, 1, 2).Unfold()).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\").Tail(Scope.Local).Unfold())", "go": "g.Inject(map[interface{}]interface{}{gremlingo.T.Label: \"person\", \"name\": \"marko\" }, map[interface{}]interface{}{gremlingo.T.Label: \"person\", \"name\": \"marko\" }, map[interface{}]interface{}{\"created\": \"N\" }).Fold().As(\"m\").MergeV(gremlingo.T__.Select(\"m\").Limit(gremlingo.Scope.Local, 1).Unfold()).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"m\").Range(gremlingo.Scope.Local, 1, 2).Unfold()).Option(gremlingo.Merge.OnMatch, gremlingo.T__.Select(\"m\").Tail(gremlingo.Scope.Local).Unfold())", "groovy": "g.inject([T.label:\"person\", name:\"marko\"], [T.label:\"person\", name:\"marko\"], [created:\"N\"]).fold().as(\"m\").mergeV(__.select(\"m\").limit(Scope.local, 1).unfold()).option(Merge.onCreate, __.select(\"m\").range(Scope.local, 1, 2).unfold()).option(Merge.onMatch, __.select(\"m\").tail(Scope.local).unfold())", "java": "g.inject(new LinkedHashMap() {{ put(T.label, \"person\"); put(\"name\", \"marko\"); }}, new LinkedHashMap() {{ put(T.label, \"person\"); put(\"name\", \"marko\"); }}, new LinkedHashMap() {{ put(\"created\", \"N\"); }}).fold().as(\"m\").mergeV(__.select(\"m\").limit(Scope.local, 1).unfold()).option(Merge.onCreate, __.select(\"m\").range(Scope.local, 1, 2).unfold()).option(Merge.onMatch, __.select(\"m\").tail(Scope.local).unfold())", @@ -32176,6 +34264,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").has(\"created\", \"N\")", "anonymized": "g.V().has(string0, string1, string2).has(string3, string4)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"created\", \"N\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"created\", \"N\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Has(\"created\", \"N\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").has(\"created\", \"N\")", "java": "g.V().has(\"person\", \"name\", \"marko\").has(\"created\", \"N\")", @@ -32188,6 +34277,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -32205,6 +34295,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29)", @@ -32217,6 +34308,7 @@ "canonical": "g.inject([T.label:\"person\", name:\"stephen\"], [T.label:\"person\", name:\"stephen\"], [created:\"N\"]).fold().as(\"m\").mergeV(__.select(\"m\").limit(Scope.local, 1).unfold()).option(Merge.onCreate, __.select(\"m\").range(Scope.local, 1, 2).unfold()).option(Merge.onMatch, __.select(\"m\").tail(Scope.local).unfold())", "anonymized": "g.inject(map0, map0, map1).fold().as(string0).mergeV(__.select(string0).limit(Scope.local, number0).unfold()).option(Merge.onCreate, __.select(string0).range(Scope.local, number0, number1).unfold()).option(Merge.onMatch, __.select(string0).tail(Scope.local).unfold())", "dotnet": "g.Inject(new Dictionary {{ T.Label, \"person\" }, { \"name\", \"stephen\" }}, new Dictionary {{ T.Label, \"person\" }, { \"name\", \"stephen\" }}, new Dictionary {{ \"created\", \"N\" }}).Fold().As(\"m\").MergeV((ITraversal) __.Select(\"m\").Limit(Scope.Local, 1).Unfold()).Option(Merge.OnCreate, (ITraversal) __.Select(\"m\").Range(Scope.Local, 1, 2).Unfold()).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\").Tail(Scope.Local).Unfold())", + "dotnet_parameterize": "g.Inject(new Dictionary {{ T.Label, \"person\" }, { \"name\", \"stephen\" }}, new Dictionary {{ T.Label, \"person\" }, { \"name\", \"stephen\" }}, new Dictionary {{ \"created\", \"N\" }}).Fold().As(\"m\").MergeV((ITraversal) __.Select(\"m\").Limit(Scope.Local, 1).Unfold()).Option(Merge.OnCreate, (ITraversal) __.Select(\"m\").Range(Scope.Local, 1, 2).Unfold()).Option(Merge.OnMatch, (ITraversal) __.Select(\"m\").Tail(Scope.Local).Unfold())", "go": "g.Inject(map[interface{}]interface{}{gremlingo.T.Label: \"person\", \"name\": \"stephen\" }, map[interface{}]interface{}{gremlingo.T.Label: \"person\", \"name\": \"stephen\" }, map[interface{}]interface{}{\"created\": \"N\" }).Fold().As(\"m\").MergeV(gremlingo.T__.Select(\"m\").Limit(gremlingo.Scope.Local, 1).Unfold()).Option(gremlingo.Merge.OnCreate, gremlingo.T__.Select(\"m\").Range(gremlingo.Scope.Local, 1, 2).Unfold()).Option(gremlingo.Merge.OnMatch, gremlingo.T__.Select(\"m\").Tail(gremlingo.Scope.Local).Unfold())", "groovy": "g.inject([T.label:\"person\", name:\"stephen\"], [T.label:\"person\", name:\"stephen\"], [created:\"N\"]).fold().as(\"m\").mergeV(__.select(\"m\").limit(Scope.local, 1).unfold()).option(Merge.onCreate, __.select(\"m\").range(Scope.local, 1, 2).unfold()).option(Merge.onMatch, __.select(\"m\").tail(Scope.local).unfold())", "java": "g.inject(new LinkedHashMap() {{ put(T.label, \"person\"); put(\"name\", \"stephen\"); }}, new LinkedHashMap() {{ put(T.label, \"person\"); put(\"name\", \"stephen\"); }}, new LinkedHashMap() {{ put(\"created\", \"N\"); }}).fold().as(\"m\").mergeV(__.select(\"m\").limit(Scope.local, 1).unfold()).option(Merge.onCreate, __.select(\"m\").range(Scope.local, 1, 2).unfold()).option(Merge.onMatch, __.select(\"m\").tail(Scope.local).unfold())", @@ -32229,6 +34321,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"stephen\").hasNot(\"created\")", "anonymized": "g.V().has(string0, string1, string2).hasNot(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"stephen\").HasNot(\"created\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"stephen\").HasNot(\"created\")", "go": "g.V().Has(\"person\", \"name\", \"stephen\").HasNot(\"created\")", "groovy": "g.V().has(\"person\", \"name\", \"stephen\").hasNot(\"created\")", "java": "g.V().has(\"person\", \"name\", \"stephen\").hasNot(\"created\")", @@ -32241,6 +34334,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -32258,6 +34352,7 @@ "canonical": "g.V().values(\"age\").min()", "anonymized": "g.V().values(string0).min()", "dotnet": "g.V().Values(\"age\").Min()", + "dotnet_parameterize": "g.V().Values(\"age\").Min()", "go": "g.V().Values(\"age\").Min()", "groovy": "g.V().values(\"age\").min()", "java": "g.V().values(\"age\").min()", @@ -32275,6 +34370,7 @@ "canonical": "g.V().values(\"foo\").min()", "anonymized": "g.V().values(string0).min()", "dotnet": "g.V().Values(\"foo\").Min()", + "dotnet_parameterize": "g.V().Values(\"foo\").Min()", "go": "g.V().Values(\"foo\").Min()", "groovy": "g.V().values(\"foo\").min()", "java": "g.V().values(\"foo\").min()", @@ -32292,6 +34388,7 @@ "canonical": "g.V().values(\"name\").min()", "anonymized": "g.V().values(string0).min()", "dotnet": "g.V().Values(\"name\").Min()", + "dotnet_parameterize": "g.V().Values(\"name\").Min()", "go": "g.V().Values(\"name\").Min()", "groovy": "g.V().values(\"name\").min()", "java": "g.V().values(\"name\").min()", @@ -32309,6 +34406,7 @@ "canonical": "g.V().values(\"age\").fold().min(Scope.local)", "anonymized": "g.V().values(string0).fold().min(Scope.local)", "dotnet": "g.V().Values(\"age\").Fold().Min(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"age\").Fold().Min(Scope.Local)", "go": "g.V().Values(\"age\").Fold().Min(gremlingo.Scope.Local)", "groovy": "g.V().values(\"age\").fold().min(Scope.local)", "java": "g.V().values(\"age\").fold().min(Scope.local)", @@ -32326,6 +34424,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").min(Scope.local)", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).min(Scope.local)", "dotnet": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Min(Scope.Local)", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Min(Scope.Local)", "go": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Min(gremlingo.Scope.Local)", "groovy": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").min(Scope.local)", "java": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").min(Scope.local)", @@ -32343,6 +34442,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").min(Scope.local)", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).min(Scope.local)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Min(Scope.Local)", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Min(Scope.Local)", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Min(gremlingo.Scope.Local)", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").min(Scope.local)", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"age\").cap(\"a\").min(Scope.local)", @@ -32360,6 +34460,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().min()", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).unfold().min()", "dotnet": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Min()", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Min()", "go": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Min()", "groovy": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().min()", "java": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().min()", @@ -32377,6 +34478,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().min()", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).unfold().min()", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Min()", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Min()", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Min()", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().min()", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().min()", @@ -32394,6 +34496,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").min(Scope.local)", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).min(Scope.local)", "dotnet": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Min(Scope.Local)", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Min(Scope.Local)", "go": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Min(gremlingo.Scope.Local)", "groovy": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").min(Scope.local)", "java": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").min(Scope.local)", @@ -32411,6 +34514,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").min(Scope.local)", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).min(Scope.local)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Min(Scope.Local)", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Min(Scope.Local)", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Min(gremlingo.Scope.Local)", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").min(Scope.local)", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"foo\").cap(\"a\").min(Scope.local)", @@ -32428,6 +34532,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().min()", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).unfold().min()", "dotnet": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Min()", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Min()", "go": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Min()", "groovy": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().min()", "java": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().min()", @@ -32445,6 +34550,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().min()", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).unfold().min()", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Min()", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Min()", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Min()", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().min()", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().min()", @@ -32462,6 +34568,7 @@ "canonical": "g.V().values(\"foo\").fold().min(Scope.local)", "anonymized": "g.V().values(string0).fold().min(Scope.local)", "dotnet": "g.V().Values(\"foo\").Fold().Min(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"foo\").Fold().Min(Scope.Local)", "go": "g.V().Values(\"foo\").Fold().Min(gremlingo.Scope.Local)", "groovy": "g.V().values(\"foo\").fold().min(Scope.local)", "java": "g.V().values(\"foo\").fold().min(Scope.local)", @@ -32479,6 +34586,7 @@ "canonical": "g.V().values(\"name\").fold().min(Scope.local)", "anonymized": "g.V().values(string0).fold().min(Scope.local)", "dotnet": "g.V().Values(\"name\").Fold().Min(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Min(Scope.Local)", "go": "g.V().Values(\"name\").Fold().Min(gremlingo.Scope.Local)", "groovy": "g.V().values(\"name\").fold().min(Scope.local)", "java": "g.V().values(\"name\").fold().min(Scope.local)", @@ -32496,6 +34604,7 @@ "canonical": "g.V().repeat(__.both()).times(5).values(\"age\").min()", "anonymized": "g.V().repeat(__.both()).times(number0).values(string0).min()", "dotnet": "g.V().Repeat(__.Both()).Times(5).Values(\"age\").Min()", + "dotnet_parameterize": "g.V().Repeat(__.Both()).Times(5).Values(\"age\").Min()", "go": "g.V().Repeat(gremlingo.T__.Both()).Times(5).Values(\"age\").Min()", "groovy": "g.V().repeat(__.both()).times(5).values(\"age\").min()", "java": "g.V().repeat(__.both()).times(5).values(\"age\").min()", @@ -32513,6 +34622,7 @@ "canonical": "g.V().hasLabel(\"software\").group().by(\"name\").by(__.bothE().values(\"weight\").min())", "anonymized": "g.V().hasLabel(string0).group().by(string1).by(__.bothE().values(string2).min())", "dotnet": "g.V().HasLabel(\"software\").Group().By(\"name\").By(__.BothE().Values(\"weight\").Min())", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Group().By(\"name\").By(__.BothE().Values(\"weight\").Min())", "go": "g.V().HasLabel(\"software\").Group().By(\"name\").By(gremlingo.T__.BothE().Values(\"weight\").Min())", "groovy": "g.V().hasLabel(\"software\").group().by(\"name\").by(__.bothE().values(\"weight\").min())", "java": "g.V().hasLabel(\"software\").group().by(\"name\").by(__.bothE().values(\"weight\").min())", @@ -32530,6 +34640,7 @@ "canonical": "g.V().values(\"foo\").inject(9999999999l).min()", "anonymized": "g.V().values(string0).inject(long0).min()", "dotnet": "g.V().Values(\"foo\").Inject(9999999999l).Min()", + "dotnet_parameterize": "g.V().Values(\"foo\").Inject(9999999999l).Min()", "go": "g.V().Values(\"foo\").Inject(int64(9999999999)).Min()", "groovy": "g.V().values(\"foo\").inject(9999999999l).min()", "java": "g.V().values(\"foo\").inject(9999999999l).min()", @@ -32547,6 +34658,7 @@ "canonical": "g.V(vid1).values(\"age\").min(Scope.local)", "anonymized": "g.V(vid1).values(string0).min(Scope.local)", "dotnet": "g.V(vid1).Values(\"age\").Min(Scope.Local)", + "dotnet_parameterize": "g.V(vid1).Values(\"age\").Min(Scope.Local)", "go": "g.V(vid1).Values(\"age\").Min(gremlingo.Scope.Local)", "groovy": "g.V(vid1).values(\"age\").min(Scope.local)", "java": "g.V(vid1).values(\"age\").min(Scope.local)", @@ -32564,6 +34676,7 @@ "canonical": "g.V().local(__.union(__.values(\"age\"), __.outE().values(\"weight\")).fold()).min(Scope.local)", "anonymized": "g.V().local(__.union(__.values(string0), __.outE().values(string1)).fold()).min(Scope.local)", "dotnet": "g.V().Local(__.Union(__.Values(\"age\"), __.OutE().Values(\"weight\")).Fold()).Min(Scope.Local)", + "dotnet_parameterize": "g.V().Local(__.Union(__.Values(\"age\"), __.OutE().Values(\"weight\")).Fold()).Min(Scope.Local)", "go": "g.V().Local(gremlingo.T__.Union(gremlingo.T__.Values(\"age\"), gremlingo.T__.OutE().Values(\"weight\")).Fold()).Min(gremlingo.Scope.Local)", "groovy": "g.V().local(__.union(__.values(\"age\"), __.outE().values(\"weight\")).fold()).min(Scope.local)", "java": "g.V().local(__.union(__.values(\"age\"), __.outE().values(\"weight\")).fold()).min(Scope.local)", @@ -32581,6 +34694,7 @@ "canonical": "g.V().values(\"name\").order()", "anonymized": "g.V().values(string0).order()", "dotnet": "g.V().Values(\"name\").Order()", + "dotnet_parameterize": "g.V().Values(\"name\").Order()", "go": "g.V().Values(\"name\").Order()", "groovy": "g.V().values(\"name\").order()", "java": "g.V().values(\"name\").order()", @@ -32598,6 +34712,7 @@ "canonical": "g.V().order().by(\"name\", Order.asc).values(\"name\")", "anonymized": "g.V().order().by(string0, Order.asc).values(string0)", "dotnet": "g.V().Order().By(\"name\", Order.Asc).Values(\"name\")", + "dotnet_parameterize": "g.V().Order().By(\"name\", Order.Asc).Values(\"name\")", "go": "g.V().Order().By(\"name\", gremlingo.Order.Asc).Values(\"name\")", "groovy": "g.V().order().by(\"name\", Order.asc).values(\"name\")", "java": "g.V().order().by(\"name\", Order.asc).values(\"name\")", @@ -32615,6 +34730,7 @@ "canonical": "g.V().order().by(\"name\").values(\"name\")", "anonymized": "g.V().order().by(string0).values(string0)", "dotnet": "g.V().Order().By(\"name\").Values(\"name\")", + "dotnet_parameterize": "g.V().Order().By(\"name\").Values(\"name\")", "go": "g.V().Order().By(\"name\").Values(\"name\")", "groovy": "g.V().order().by(\"name\").values(\"name\")", "java": "g.V().order().by(\"name\").values(\"name\")", @@ -32632,6 +34748,7 @@ "canonical": "g.V().outE().order().by(\"weight\", Order.desc).values(\"weight\")", "anonymized": "g.V().outE().order().by(string0, Order.desc).values(string0)", "dotnet": "g.V().OutE().Order().By(\"weight\", Order.Desc).Values(\"weight\")", + "dotnet_parameterize": "g.V().OutE().Order().By(\"weight\", Order.Desc).Values(\"weight\")", "go": "g.V().OutE().Order().By(\"weight\", gremlingo.Order.Desc).Values(\"weight\")", "groovy": "g.V().outE().order().by(\"weight\", Order.desc).values(\"weight\")", "java": "g.V().outE().order().by(\"weight\", Order.desc).values(\"weight\")", @@ -32649,6 +34766,7 @@ "canonical": "g.V().as(\"a\").out(\"created\").as(\"b\").order().by(Order.shuffle).select(\"a\", \"b\")", "anonymized": "g.V().as(string0).out(string1).as(string2).order().by(Order.shuffle).select(string0, string2)", "dotnet": "g.V().As(\"a\").Out(\"created\").As(\"b\").Order().By(Order.Shuffle).Select(\"a\", \"b\")", + "dotnet_parameterize": "g.V().As(\"a\").Out(\"created\").As(\"b\").Order().By(Order.Shuffle).Select(\"a\", \"b\")", "go": "g.V().As(\"a\").Out(\"created\").As(\"b\").Order().By(gremlingo.Order.Shuffle).Select(\"a\", \"b\")", "groovy": "g.V().as(\"a\").out(\"created\").as(\"b\").order().by(Order.shuffle).select(\"a\", \"b\")", "java": "g.V().as(\"a\").out(\"created\").as(\"b\").order().by(Order.shuffle).select(\"a\", \"b\")", @@ -32666,6 +34784,7 @@ "canonical": "g.V().both().hasLabel(\"person\").order().by(\"age\", Order.desc).limit(5).values(\"name\")", "anonymized": "g.V().both().hasLabel(string0).order().by(string1, Order.desc).limit(number0).values(string2)", "dotnet": "g.V().Both().HasLabel(\"person\").Order().By(\"age\", Order.Desc).Limit(5).Values(\"name\")", + "dotnet_parameterize": "g.V().Both().HasLabel(\"person\").Order().By(\"age\", Order.Desc).Limit(5).Values(\"name\")", "go": "g.V().Both().HasLabel(\"person\").Order().By(\"age\", gremlingo.Order.Desc).Limit(5).Values(\"name\")", "groovy": "g.V().both().hasLabel(\"person\").order().by(\"age\", Order.desc).limit(5).values(\"name\")", "java": "g.V().both().hasLabel(\"person\").order().by(\"age\", Order.desc).limit(5).values(\"name\")", @@ -32683,6 +34802,7 @@ "canonical": "g.V().properties().order().by(T.key, Order.desc).key()", "anonymized": "g.V().properties().order().by(T.key, Order.desc).key()", "dotnet": "g.V().Properties().Order().By(T.Key, Order.Desc).Key()", + "dotnet_parameterize": "g.V().Properties().Order().By(T.Key, Order.Desc).Key()", "go": "g.V().Properties().Order().By(gremlingo.T.Key, gremlingo.Order.Desc).Key()", "groovy": "g.V().properties().order().by(T.key, Order.desc).key()", "java": "g.V().properties().order().by(T.key, Order.desc).key()", @@ -32700,6 +34820,7 @@ "canonical": "g.V().hasLabel(\"person\").group().by(\"name\").by(__.outE().values(\"weight\").sum()).order(Scope.local).by(Column.values)", "anonymized": "g.V().hasLabel(string0).group().by(string1).by(__.outE().values(string2).sum()).order(Scope.local).by(Column.values)", "dotnet": "g.V().HasLabel(\"person\").Group().By(\"name\").By(__.OutE().Values(\"weight\").Sum()).Order(Scope.Local).By(Column.Values)", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Group().By(\"name\").By(__.OutE().Values(\"weight\").Sum()).Order(Scope.Local).By(Column.Values)", "go": "g.V().HasLabel(\"person\").Group().By(\"name\").By(gremlingo.T__.OutE().Values(\"weight\").Sum()).Order(gremlingo.Scope.Local).By(gremlingo.Column.Values)", "groovy": "g.V().hasLabel(\"person\").group().by(\"name\").by(__.outE().values(\"weight\").sum()).order(Scope.local).by(Column.values)", "java": "g.V().hasLabel(\"person\").group().by(\"name\").by(__.outE().values(\"weight\").sum()).order(Scope.local).by(Column.values)", @@ -32717,6 +34838,7 @@ "canonical": "g.V().map(__.bothE().values(\"weight\").order().by(Order.asc).fold()).order().by(__.sum(Scope.local), Order.desc).by(__.count(Scope.local), Order.desc)", "anonymized": "g.V().map(__.bothE().values(string0).order().by(Order.asc).fold()).order().by(__.sum(Scope.local), Order.desc).by(__.count(Scope.local), Order.desc)", "dotnet": "g.V().Map(__.BothE().Values(\"weight\").Order().By(Order.Asc).Fold()).Order().By(__.Sum(Scope.Local), Order.Desc).By(__.Count(Scope.Local), Order.Desc)", + "dotnet_parameterize": "g.V().Map(__.BothE().Values(\"weight\").Order().By(Order.Asc).Fold()).Order().By(__.Sum(Scope.Local), Order.Desc).By(__.Count(Scope.Local), Order.Desc)", "go": "g.V().Map(gremlingo.T__.BothE().Values(\"weight\").Order().By(gremlingo.Order.Asc).Fold()).Order().By(gremlingo.T__.Sum(gremlingo.Scope.Local), gremlingo.Order.Desc).By(gremlingo.T__.Count(gremlingo.Scope.Local), gremlingo.Order.Desc)", "groovy": "g.V().map(__.bothE().values(\"weight\").order().by(Order.asc).fold()).order().by(__.sum(Scope.local), Order.desc).by(__.count(Scope.local), Order.desc)", "java": "g.V().map(__.bothE().values(\"weight\").order().by(Order.asc).fold()).order().by(__.sum(Scope.local), Order.desc).by(__.count(Scope.local), Order.desc)", @@ -32734,6 +34856,7 @@ "canonical": "g.V().group().by(T.label).by(__.values(\"name\").order().by(Order.desc).fold())", "anonymized": "g.V().group().by(T.label).by(__.values(string0).order().by(Order.desc).fold())", "dotnet": "g.V().Group().By(T.Label).By(__.Values(\"name\").Order().By(Order.Desc).Fold())", + "dotnet_parameterize": "g.V().Group().By(T.Label).By(__.Values(\"name\").Order().By(Order.Desc).Fold())", "go": "g.V().Group().By(gremlingo.T.Label).By(gremlingo.T__.Values(\"name\").Order().By(gremlingo.Order.Desc).Fold())", "groovy": "g.V().group().by(T.label).by(__.values(\"name\").order().by(Order.desc).fold())", "java": "g.V().group().by(T.label).by(__.values(\"name\").order().by(Order.desc).fold())", @@ -32751,6 +34874,7 @@ "canonical": "g.V().hasLabel(\"person\").group().by(\"name\").by(__.outE().values(\"weight\").sum()).unfold().order().by(Column.values, Order.desc)", "anonymized": "g.V().hasLabel(string0).group().by(string1).by(__.outE().values(string2).sum()).unfold().order().by(Column.values, Order.desc)", "dotnet": "g.V().HasLabel(\"person\").Group().By(\"name\").By(__.OutE().Values(\"weight\").Sum()).Unfold().Order().By(Column.Values, Order.Desc)", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Group().By(\"name\").By(__.OutE().Values(\"weight\").Sum()).Unfold().Order().By(Column.Values, Order.Desc)", "go": "g.V().HasLabel(\"person\").Group().By(\"name\").By(gremlingo.T__.OutE().Values(\"weight\").Sum()).Unfold().Order().By(gremlingo.Column.Values, gremlingo.Order.Desc)", "groovy": "g.V().hasLabel(\"person\").group().by(\"name\").by(__.outE().values(\"weight\").sum()).unfold().order().by(Column.values, Order.desc)", "java": "g.V().hasLabel(\"person\").group().by(\"name\").by(__.outE().values(\"weight\").sum()).unfold().order().by(Column.values, Order.desc)", @@ -32768,6 +34892,7 @@ "canonical": "g.V().as(\"v\").map(__.bothE().values(\"weight\").fold()).sum(Scope.local).as(\"s\").select(\"v\", \"s\").order().by(__.select(\"s\"), Order.desc).by(__.select(\"v\").values(\"name\"))", "anonymized": "g.V().as(string0).map(__.bothE().values(string1).fold()).sum(Scope.local).as(string2).select(string0, string2).order().by(__.select(string2), Order.desc).by(__.select(string0).values(string3))", "dotnet": "g.V().As(\"v\").Map(__.BothE().Values(\"weight\").Fold()).Sum(Scope.Local).As(\"s\").Select(\"v\", \"s\").Order().By(__.Select(\"s\"), Order.Desc).By(__.Select(\"v\").Values(\"name\"))", + "dotnet_parameterize": "g.V().As(\"v\").Map(__.BothE().Values(\"weight\").Fold()).Sum(Scope.Local).As(\"s\").Select(\"v\", \"s\").Order().By(__.Select(\"s\"), Order.Desc).By(__.Select(\"v\").Values(\"name\"))", "go": "g.V().As(\"v\").Map(gremlingo.T__.BothE().Values(\"weight\").Fold()).Sum(gremlingo.Scope.Local).As(\"s\").Select(\"v\", \"s\").Order().By(gremlingo.T__.Select(\"s\"), gremlingo.Order.Desc).By(gremlingo.T__.Select(\"v\").Values(\"name\"))", "groovy": "g.V().as(\"v\").map(__.bothE().values(\"weight\").fold()).sum(Scope.local).as(\"s\").select(\"v\", \"s\").order().by(__.select(\"s\"), Order.desc).by(__.select(\"v\").values(\"name\"))", "java": "g.V().as(\"v\").map(__.bothE().values(\"weight\").fold()).sum(Scope.local).as(\"s\").select(\"v\", \"s\").order().by(__.select(\"s\"), Order.desc).by(__.select(\"v\").values(\"name\"))", @@ -32785,6 +34910,7 @@ "canonical": "g.V().hasLabel(\"person\").fold().order(Scope.local).by(\"age\")", "anonymized": "g.V().hasLabel(string0).fold().order(Scope.local).by(string1)", "dotnet": "g.V().HasLabel(\"person\").Fold().Order(Scope.Local).By(\"age\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Fold().Order(Scope.Local).By(\"age\")", "go": "g.V().HasLabel(\"person\").Fold().Order(gremlingo.Scope.Local).By(\"age\")", "groovy": "g.V().hasLabel(\"person\").fold().order(Scope.local).by(\"age\")", "java": "g.V().hasLabel(\"person\").fold().order(Scope.local).by(\"age\")", @@ -32802,6 +34928,7 @@ "canonical": "g.V().both().hasLabel(\"person\").order().by(\"age\", Order.desc).values(\"name\")", "anonymized": "g.V().both().hasLabel(string0).order().by(string1, Order.desc).values(string2)", "dotnet": "g.V().Both().HasLabel(\"person\").Order().By(\"age\", Order.Desc).Values(\"name\")", + "dotnet_parameterize": "g.V().Both().HasLabel(\"person\").Order().By(\"age\", Order.Desc).Values(\"name\")", "go": "g.V().Both().HasLabel(\"person\").Order().By(\"age\", gremlingo.Order.Desc).Values(\"name\")", "groovy": "g.V().both().hasLabel(\"person\").order().by(\"age\", Order.desc).values(\"name\")", "java": "g.V().both().hasLabel(\"person\").order().by(\"age\", Order.desc).values(\"name\")", @@ -32819,6 +34946,7 @@ "canonical": "g.V().order().by(__.outE().count(), Order.desc).by(\"name\")", "anonymized": "g.V().order().by(__.outE().count(), Order.desc).by(string0)", "dotnet": "g.V().Order().By(__.OutE().Count(), Order.Desc).By(\"name\")", + "dotnet_parameterize": "g.V().Order().By(__.OutE().Count(), Order.Desc).By(\"name\")", "go": "g.V().Order().By(gremlingo.T__.OutE().Count(), gremlingo.Order.Desc).By(\"name\")", "groovy": "g.V().order().by(__.outE().count(), Order.desc).by(\"name\")", "java": "g.V().order().by(__.outE().count(), Order.desc).by(\"name\")", @@ -32836,6 +34964,7 @@ "canonical": "g.V().hasLabel(\"person\").order().by(\"age\")", "anonymized": "g.V().hasLabel(string0).order().by(string1)", "dotnet": "g.V().HasLabel(\"person\").Order().By(\"age\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Order().By(\"age\")", "go": "g.V().HasLabel(\"person\").Order().By(\"age\")", "groovy": "g.V().hasLabel(\"person\").order().by(\"age\")", "java": "g.V().hasLabel(\"person\").order().by(\"age\")", @@ -32853,6 +34982,7 @@ "canonical": "g.V().order().by(\"age\")", "anonymized": "g.V().order().by(string0)", "dotnet": "g.V().Order().By(\"age\")", + "dotnet_parameterize": "g.V().Order().By(\"age\")", "go": "g.V().Order().By(\"age\")", "groovy": "g.V().order().by(\"age\")", "java": "g.V().order().by(\"age\")", @@ -32870,6 +35000,7 @@ "canonical": "g.V().fold().order(Scope.local).by(\"age\")", "anonymized": "g.V().fold().order(Scope.local).by(string0)", "dotnet": "g.V().Fold().Order(Scope.Local).By(\"age\")", + "dotnet_parameterize": "g.V().Fold().Order(Scope.Local).By(\"age\")", "go": "g.V().Fold().Order(gremlingo.Scope.Local).By(\"age\")", "groovy": "g.V().fold().order(Scope.local).by(\"age\")", "java": "g.V().fold().order(Scope.local).by(\"age\")", @@ -32887,6 +35018,7 @@ "canonical": "g.V().fold().order(Scope.local).by(\"age\", Order.desc)", "anonymized": "g.V().fold().order(Scope.local).by(string0, Order.desc)", "dotnet": "g.V().Fold().Order(Scope.Local).By(\"age\", Order.Desc)", + "dotnet_parameterize": "g.V().Fold().Order(Scope.Local).By(\"age\", Order.Desc)", "go": "g.V().Fold().Order(gremlingo.Scope.Local).By(\"age\", gremlingo.Order.Desc)", "groovy": "g.V().fold().order(Scope.local).by(\"age\", Order.desc)", "java": "g.V().fold().order(Scope.local).by(\"age\", Order.desc)", @@ -32904,6 +35036,7 @@ "canonical": "g.V().or(__.hasLabel(\"person\"), __.has(\"software\", \"name\", \"lop\")).order().by(\"age\")", "anonymized": "g.V().or(__.hasLabel(string0), __.has(string1, string2, string3)).order().by(string4)", "dotnet": "g.V().Or(__.HasLabel(\"person\"), __.Has(\"software\", \"name\", \"lop\")).Order().By(\"age\")", + "dotnet_parameterize": "g.V().Or(__.HasLabel(\"person\"), __.Has(\"software\", \"name\", \"lop\")).Order().By(\"age\")", "go": "g.V().Or(gremlingo.T__.HasLabel(\"person\"), gremlingo.T__.Has(\"software\", \"name\", \"lop\")).Order().By(\"age\")", "groovy": "g.V().or(__.hasLabel(\"person\"), __.has(\"software\", \"name\", \"lop\")).order().by(\"age\")", "java": "g.V().or(__.hasLabel(\"person\"), __.has(\"software\", \"name\", \"lop\")).order().by(\"age\")", @@ -32921,6 +35054,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().or(__.hasLabel(\"person\"), __.has(\"software\", \"name\", \"lop\")).order().by(\"age\")", "anonymized": "g.withStrategies(ProductiveByStrategy).V().or(__.hasLabel(string0), __.has(string1, string2, string3)).order().by(string4)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Or(__.HasLabel(\"person\"), __.Has(\"software\", \"name\", \"lop\")).Order().By(\"age\")", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Or(__.HasLabel(\"person\"), __.Has(\"software\", \"name\", \"lop\")).Order().By(\"age\")", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Or(gremlingo.T__.HasLabel(\"person\"), gremlingo.T__.Has(\"software\", \"name\", \"lop\")).Order().By(\"age\")", "groovy": "g.withStrategies(ProductiveByStrategy).V().or(__.hasLabel(\"person\"), __.has(\"software\", \"name\", \"lop\")).order().by(\"age\")", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().or(__.hasLabel(\"person\"), __.has(\"software\", \"name\", \"lop\")).order().by(\"age\")", @@ -32938,6 +35072,7 @@ "canonical": "g.V().has(\"song\", \"name\", \"OH BOY\").out(\"followedBy\").out(\"followedBy\").order().by(\"performances\").by(\"songType\", Order.desc).by(\"name\")", "anonymized": "g.V().has(string0, string1, string2).out(string3).out(string3).order().by(string4).by(string5, Order.desc).by(string1)", "dotnet": "g.V().Has(\"song\", \"name\", \"OH BOY\").Out(\"followedBy\").Out(\"followedBy\").Order().By(\"performances\").By(\"songType\", Order.Desc).By(\"name\")", + "dotnet_parameterize": "g.V().Has(\"song\", \"name\", \"OH BOY\").Out(\"followedBy\").Out(\"followedBy\").Order().By(\"performances\").By(\"songType\", Order.Desc).By(\"name\")", "go": "g.V().Has(\"song\", \"name\", \"OH BOY\").Out(\"followedBy\").Out(\"followedBy\").Order().By(\"performances\").By(\"songType\", gremlingo.Order.Desc).By(\"name\")", "groovy": "g.V().has(\"song\", \"name\", \"OH BOY\").out(\"followedBy\").out(\"followedBy\").order().by(\"performances\").by(\"songType\", Order.desc).by(\"name\")", "java": "g.V().has(\"song\", \"name\", \"OH BOY\").out(\"followedBy\").out(\"followedBy\").order().by(\"performances\").by(\"songType\", Order.desc).by(\"name\")", @@ -32955,6 +35090,7 @@ "canonical": "g.V().hasLabel(\"song\").order().by(\"performances\", Order.desc).by(\"name\").range(110, 120).values(\"name\")", "anonymized": "g.V().hasLabel(string0).order().by(string1, Order.desc).by(string2).range(number0, number1).values(string2)", "dotnet": "g.V().HasLabel(\"song\").Order().By(\"performances\", Order.Desc).By(\"name\").Range(110, 120).Values(\"name\")", + "dotnet_parameterize": "g.V().HasLabel(\"song\").Order().By(\"performances\", Order.Desc).By(\"name\").Range(110, 120).Values(\"name\")", "go": "g.V().HasLabel(\"song\").Order().By(\"performances\", gremlingo.Order.Desc).By(\"name\").Range(110, 120).Values(\"name\")", "groovy": "g.V().hasLabel(\"song\").order().by(\"performances\", Order.desc).by(\"name\").range(110, 120).values(\"name\")", "java": "g.V().hasLabel(\"song\").order().by(\"performances\", Order.desc).by(\"name\").range(110, 120).values(\"name\")", @@ -32972,6 +35108,7 @@ "canonical": "g.V(vid1).elementMap().order(Scope.local).by(Column.keys, Order.desc).unfold()", "anonymized": "g.V(vid1).elementMap().order(Scope.local).by(Column.keys, Order.desc).unfold()", "dotnet": "g.V(vid1).ElementMap().Order(Scope.Local).By(Column.Keys, Order.Desc).Unfold()", + "dotnet_parameterize": "g.V(vid1).ElementMap().Order(Scope.Local).By(Column.Keys, Order.Desc).Unfold()", "go": "g.V(vid1).ElementMap().Order(gremlingo.Scope.Local).By(gremlingo.Column.Keys, gremlingo.Order.Desc).Unfold()", "groovy": "g.V(vid1).elementMap().order(Scope.local).by(Column.keys, Order.desc).unfold()", "java": "g.V(vid1).elementMap().order(Scope.local).by(Column.keys, Order.desc).unfold()", @@ -32989,6 +35126,7 @@ "canonical": "g.V(vid1).elementMap().order(Scope.local).by(Column.keys, Order.asc).unfold()", "anonymized": "g.V(vid1).elementMap().order(Scope.local).by(Column.keys, Order.asc).unfold()", "dotnet": "g.V(vid1).ElementMap().Order(Scope.Local).By(Column.Keys, Order.Asc).Unfold()", + "dotnet_parameterize": "g.V(vid1).ElementMap().Order(Scope.Local).By(Column.Keys, Order.Asc).Unfold()", "go": "g.V(vid1).ElementMap().Order(gremlingo.Scope.Local).By(gremlingo.Column.Keys, gremlingo.Order.Asc).Unfold()", "groovy": "g.V(vid1).elementMap().order(Scope.local).by(Column.keys, Order.asc).unfold()", "java": "g.V(vid1).elementMap().order(Scope.local).by(Column.keys, Order.asc).unfold()", @@ -33006,6 +35144,7 @@ "canonical": "g.V(vid1).values(\"age\").order(Scope.local)", "anonymized": "g.V(vid1).values(string0).order(Scope.local)", "dotnet": "g.V(vid1).Values(\"age\").Order(Scope.Local)", + "dotnet_parameterize": "g.V(vid1).Values(\"age\").Order(Scope.Local)", "go": "g.V(vid1).Values(\"age\").Order(gremlingo.Scope.Local)", "groovy": "g.V(vid1).values(\"age\").order(Scope.local)", "java": "g.V(vid1).values(\"age\").order(Scope.local)", @@ -33023,6 +35162,7 @@ "canonical": "g.V().pageRank().has(\"gremlin.pageRankVertexProgram.pageRank\")", "anonymized": "g.V().pageRank().has(string0)", "dotnet": "g.V().PageRank().Has(\"gremlin.pageRankVertexProgram.pageRank\")", + "dotnet_parameterize": "g.V().PageRank().Has(\"gremlin.pageRankVertexProgram.pageRank\")", "go": "g.V().PageRank().Has(\"gremlin.pageRankVertexProgram.pageRank\")", "groovy": "g.V().pageRank().has(\"gremlin.pageRankVertexProgram.pageRank\")", "java": "g.V().pageRank().has(\"gremlin.pageRankVertexProgram.pageRank\")", @@ -33040,6 +35180,7 @@ "canonical": "g.V().out(\"created\").pageRank().with(\"~tinkerpop.pageRank.edges\", __.bothE()).with(\"~tinkerpop.pageRank.propertyName\", \"projectRank\").with(\"~tinkerpop.pageRank.times\", 0).valueMap(\"name\", \"projectRank\")", "anonymized": "g.V().out(string0).pageRank().with(string1, __.bothE()).with(string2, string3).with(string4, number0).valueMap(string5, string3)", "dotnet": "g.V().Out(\"created\").PageRank().With(\"~tinkerpop.pageRank.edges\", __.BothE()).With(\"~tinkerpop.pageRank.propertyName\", \"projectRank\").With(\"~tinkerpop.pageRank.times\", 0).ValueMap(\"name\", \"projectRank\")", + "dotnet_parameterize": "g.V().Out(\"created\").PageRank().With(\"~tinkerpop.pageRank.edges\", __.BothE()).With(\"~tinkerpop.pageRank.propertyName\", \"projectRank\").With(\"~tinkerpop.pageRank.times\", 0).ValueMap(\"name\", \"projectRank\")", "go": "g.V().Out(\"created\").PageRank().With(\"~tinkerpop.pageRank.edges\", gremlingo.T__.BothE()).With(\"~tinkerpop.pageRank.propertyName\", \"projectRank\").With(\"~tinkerpop.pageRank.times\", 0).ValueMap(\"name\", \"projectRank\")", "groovy": "g.V().out(\"created\").pageRank().with(\"~tinkerpop.pageRank.edges\", __.bothE()).with(\"~tinkerpop.pageRank.propertyName\", \"projectRank\").with(\"~tinkerpop.pageRank.times\", 0).valueMap(\"name\", \"projectRank\")", "java": "g.V().out(\"created\").pageRank().with(\"~tinkerpop.pageRank.edges\", __.bothE()).with(\"~tinkerpop.pageRank.propertyName\", \"projectRank\").with(\"~tinkerpop.pageRank.times\", 0).valueMap(\"name\", \"projectRank\")", @@ -33057,6 +35198,7 @@ "canonical": "g.V().pageRank().order().by(\"gremlin.pageRankVertexProgram.pageRank\", Order.desc).by(\"name\").values(\"name\")", "anonymized": "g.V().pageRank().order().by(string0, Order.desc).by(string1).values(string1)", "dotnet": "g.V().PageRank().Order().By(\"gremlin.pageRankVertexProgram.pageRank\", Order.Desc).By(\"name\").Values(\"name\")", + "dotnet_parameterize": "g.V().PageRank().Order().By(\"gremlin.pageRankVertexProgram.pageRank\", Order.Desc).By(\"name\").Values(\"name\")", "go": "g.V().PageRank().Order().By(\"gremlin.pageRankVertexProgram.pageRank\", gremlingo.Order.Desc).By(\"name\").Values(\"name\")", "groovy": "g.V().pageRank().order().by(\"gremlin.pageRankVertexProgram.pageRank\", Order.desc).by(\"name\").values(\"name\")", "java": "g.V().pageRank().order().by(\"gremlin.pageRankVertexProgram.pageRank\", Order.desc).by(\"name\").values(\"name\")", @@ -33074,6 +35216,7 @@ "canonical": "g.V().pageRank().order().by(\"gremlin.pageRankVertexProgram.pageRank\", Order.desc).values(\"name\").limit(2)", "anonymized": "g.V().pageRank().order().by(string0, Order.desc).values(string1).limit(number0)", "dotnet": "g.V().PageRank().Order().By(\"gremlin.pageRankVertexProgram.pageRank\", Order.Desc).Values(\"name\").Limit(2)", + "dotnet_parameterize": "g.V().PageRank().Order().By(\"gremlin.pageRankVertexProgram.pageRank\", Order.Desc).Values(\"name\").Limit(2)", "go": "g.V().PageRank().Order().By(\"gremlin.pageRankVertexProgram.pageRank\", gremlingo.Order.Desc).Values(\"name\").Limit(2)", "groovy": "g.V().pageRank().order().by(\"gremlin.pageRankVertexProgram.pageRank\", Order.desc).values(\"name\").limit(2)", "java": "g.V().pageRank().order().by(\"gremlin.pageRankVertexProgram.pageRank\", Order.desc).values(\"name\").limit(2)", @@ -33091,6 +35234,7 @@ "canonical": "g.V().pageRank().with(\"~tinkerpop.pageRank.edges\", __.outE(\"knows\")).with(\"~tinkerpop.pageRank.propertyName\", \"friendRank\").project(\"name\", \"friendRank\").by(\"name\").by(__.values(\"friendRank\").math(\"ceil(_ * 100)\"))", "anonymized": "g.V().pageRank().with(string0, __.outE(string1)).with(string2, string3).project(string4, string3).by(string4).by(__.values(string3).math(string5))", "dotnet": "g.V().PageRank().With(\"~tinkerpop.pageRank.edges\", __.OutE(\"knows\")).With(\"~tinkerpop.pageRank.propertyName\", \"friendRank\").Project(\"name\", \"friendRank\").By(\"name\").By(__.Values(\"friendRank\").Math(\"ceil(_ * 100)\"))", + "dotnet_parameterize": "g.V().PageRank().With(\"~tinkerpop.pageRank.edges\", __.OutE(\"knows\")).With(\"~tinkerpop.pageRank.propertyName\", \"friendRank\").Project(\"name\", \"friendRank\").By(\"name\").By(__.Values(\"friendRank\").Math(\"ceil(_ * 100)\"))", "go": "g.V().PageRank().With(\"~tinkerpop.pageRank.edges\", gremlingo.T__.OutE(\"knows\")).With(\"~tinkerpop.pageRank.propertyName\", \"friendRank\").Project(\"name\", \"friendRank\").By(\"name\").By(gremlingo.T__.Values(\"friendRank\").Math(\"ceil(_ * 100)\"))", "groovy": "g.V().pageRank().with(\"~tinkerpop.pageRank.edges\", __.outE(\"knows\")).with(\"~tinkerpop.pageRank.propertyName\", \"friendRank\").project(\"name\", \"friendRank\").by(\"name\").by(__.values(\"friendRank\").math(\"ceil(_ * 100)\"))", "java": "g.V().pageRank().with(\"~tinkerpop.pageRank.edges\", __.outE(\"knows\")).with(\"~tinkerpop.pageRank.propertyName\", \"friendRank\").project(\"name\", \"friendRank\").by(\"name\").by(__.values(\"friendRank\").math(\"ceil(_ * 100)\"))", @@ -33108,6 +35252,7 @@ "canonical": "g.V().hasLabel(\"person\").pageRank().with(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").project(\"name\", \"pageRank\").by(\"name\").by(__.values(\"pageRank\").math(\"ceil(_ * 100)\"))", "anonymized": "g.V().hasLabel(string0).pageRank().with(string1, string2).project(string3, string2).by(string3).by(__.values(string2).math(string4))", "dotnet": "g.V().HasLabel(\"person\").PageRank().With(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").Project(\"name\", \"pageRank\").By(\"name\").By(__.Values(\"pageRank\").Math(\"ceil(_ * 100)\"))", + "dotnet_parameterize": "g.V().HasLabel(\"person\").PageRank().With(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").Project(\"name\", \"pageRank\").By(\"name\").By(__.Values(\"pageRank\").Math(\"ceil(_ * 100)\"))", "go": "g.V().HasLabel(\"person\").PageRank().With(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").Project(\"name\", \"pageRank\").By(\"name\").By(gremlingo.T__.Values(\"pageRank\").Math(\"ceil(_ * 100)\"))", "groovy": "g.V().hasLabel(\"person\").pageRank().with(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").project(\"name\", \"pageRank\").by(\"name\").by(__.values(\"pageRank\").math(\"ceil(_ * 100)\"))", "java": "g.V().hasLabel(\"person\").pageRank().with(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").project(\"name\", \"pageRank\").by(\"name\").by(__.values(\"pageRank\").math(\"ceil(_ * 100)\"))", @@ -33125,6 +35270,7 @@ "canonical": "g.V().pageRank().with(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").as(\"a\").out(\"knows\").values(\"pageRank\").as(\"b\").select(\"a\", \"b\").by().by(__.math(\"ceil(_ * 100)\"))", "anonymized": "g.V().pageRank().with(string0, string1).as(string2).out(string3).values(string1).as(string4).select(string2, string4).by().by(__.math(string5))", "dotnet": "g.V().PageRank().With(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").As(\"a\").Out(\"knows\").Values(\"pageRank\").As(\"b\").Select(\"a\", \"b\").By().By(__.Math(\"ceil(_ * 100)\"))", + "dotnet_parameterize": "g.V().PageRank().With(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").As(\"a\").Out(\"knows\").Values(\"pageRank\").As(\"b\").Select(\"a\", \"b\").By().By(__.Math(\"ceil(_ * 100)\"))", "go": "g.V().PageRank().With(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").As(\"a\").Out(\"knows\").Values(\"pageRank\").As(\"b\").Select(\"a\", \"b\").By().By(gremlingo.T__.Math(\"ceil(_ * 100)\"))", "groovy": "g.V().pageRank().with(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").as(\"a\").out(\"knows\").values(\"pageRank\").as(\"b\").select(\"a\", \"b\").by().by(__.math(\"ceil(_ * 100)\"))", "java": "g.V().pageRank().with(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").as(\"a\").out(\"knows\").values(\"pageRank\").as(\"b\").select(\"a\", \"b\").by().by(__.math(\"ceil(_ * 100)\"))", @@ -33142,6 +35288,7 @@ "canonical": "g.V().hasLabel(\"software\").has(\"name\", \"ripple\").pageRank(1.0).with(\"~tinkerpop.pageRank.edges\", __.inE(\"created\")).with(\"~tinkerpop.pageRank.times\", 1).with(\"~tinkerpop.pageRank.propertyName\", \"priors\").in(\"created\").union(__.both(), __.identity()).valueMap(\"name\", \"priors\")", "anonymized": "g.V().hasLabel(string0).has(string1, string2).pageRank(number0).with(string3, __.inE(string4)).with(string5, number1).with(string6, string7).in(string4).union(__.both(), __.identity()).valueMap(string1, string7)", "dotnet": "g.V().HasLabel(\"software\").Has(\"name\", \"ripple\").PageRank(1.0).With(\"~tinkerpop.pageRank.edges\", __.InE(\"created\")).With(\"~tinkerpop.pageRank.times\", 1).With(\"~tinkerpop.pageRank.propertyName\", \"priors\").In(\"created\").Union(__.Both(), __.Identity()).ValueMap(\"name\", \"priors\")", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Has(\"name\", \"ripple\").PageRank(1.0).With(\"~tinkerpop.pageRank.edges\", __.InE(\"created\")).With(\"~tinkerpop.pageRank.times\", 1).With(\"~tinkerpop.pageRank.propertyName\", \"priors\").In(\"created\").Union(__.Both(), __.Identity()).ValueMap(\"name\", \"priors\")", "go": "g.V().HasLabel(\"software\").Has(\"name\", \"ripple\").PageRank(1.0).With(\"~tinkerpop.pageRank.edges\", gremlingo.T__.InE(\"created\")).With(\"~tinkerpop.pageRank.times\", 1).With(\"~tinkerpop.pageRank.propertyName\", \"priors\").In(\"created\").Union(gremlingo.T__.Both(), gremlingo.T__.Identity()).ValueMap(\"name\", \"priors\")", "groovy": "g.V().hasLabel(\"software\").has(\"name\", \"ripple\").pageRank(1.0).with(\"~tinkerpop.pageRank.edges\", __.inE(\"created\")).with(\"~tinkerpop.pageRank.times\", 1).with(\"~tinkerpop.pageRank.propertyName\", \"priors\").in(\"created\").union(__.both(), __.identity()).valueMap(\"name\", \"priors\")", "java": "g.V().hasLabel(\"software\").has(\"name\", \"ripple\").pageRank(1.0).with(\"~tinkerpop.pageRank.edges\", __.inE(\"created\")).with(\"~tinkerpop.pageRank.times\", 1).with(\"~tinkerpop.pageRank.propertyName\", \"priors\").in(\"created\").union(__.both(), __.identity()).valueMap(\"name\", \"priors\")", @@ -33159,6 +35306,7 @@ "canonical": "g.V().out(\"created\").group(\"m\").by(T.label).pageRank(1.0).with(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").with(\"~tinkerpop.pageRank.edges\", __.inE()).with(\"~tinkerpop.pageRank.times\", 1).in(\"created\").group(\"m\").by(\"pageRank\").cap(\"m\")", "anonymized": "g.V().out(string0).group(string1).by(T.label).pageRank(number0).with(string2, string3).with(string4, __.inE()).with(string5, number1).in(string0).group(string1).by(string3).cap(string1)", "dotnet": "g.V().Out(\"created\").Group(\"m\").By(T.Label).PageRank(1.0).With(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").With(\"~tinkerpop.pageRank.edges\", __.InE()).With(\"~tinkerpop.pageRank.times\", 1).In(\"created\").Group(\"m\").By(\"pageRank\").Cap(\"m\")", + "dotnet_parameterize": "g.V().Out(\"created\").Group(\"m\").By(T.Label).PageRank(1.0).With(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").With(\"~tinkerpop.pageRank.edges\", __.InE()).With(\"~tinkerpop.pageRank.times\", 1).In(\"created\").Group(\"m\").By(\"pageRank\").Cap(\"m\")", "go": "g.V().Out(\"created\").Group(\"m\").By(gremlingo.T.Label).PageRank(1.0).With(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").With(\"~tinkerpop.pageRank.edges\", gremlingo.T__.InE()).With(\"~tinkerpop.pageRank.times\", 1).In(\"created\").Group(\"m\").By(\"pageRank\").Cap(\"m\")", "groovy": "g.V().out(\"created\").group(\"m\").by(T.label).pageRank(1.0).with(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").with(\"~tinkerpop.pageRank.edges\", __.inE()).with(\"~tinkerpop.pageRank.times\", 1).in(\"created\").group(\"m\").by(\"pageRank\").cap(\"m\")", "java": "g.V().out(\"created\").group(\"m\").by(T.label).pageRank(1.0).with(\"~tinkerpop.pageRank.propertyName\", \"pageRank\").with(\"~tinkerpop.pageRank.edges\", __.inE()).with(\"~tinkerpop.pageRank.times\", 1).in(\"created\").group(\"m\").by(\"pageRank\").cap(\"m\")", @@ -33176,6 +35324,7 @@ "canonical": "g.V(vid1).values(\"name\").path()", "anonymized": "g.V(vid1).values(string0).path()", "dotnet": "g.V(vid1).Values(\"name\").Path()", + "dotnet_parameterize": "g.V(vid1).Values(\"name\").Path()", "go": "g.V(vid1).Values(\"name\").Path()", "groovy": "g.V(vid1).values(\"name\").path()", "java": "g.V(vid1).values(\"name\").path()", @@ -33193,6 +35342,7 @@ "canonical": "g.V(vid1).out().path().by(\"age\").by(\"name\")", "anonymized": "g.V(vid1).out().path().by(string0).by(string1)", "dotnet": "g.V(vid1).Out().Path().By(\"age\").By(\"name\")", + "dotnet_parameterize": "g.V(vid1).Out().Path().By(\"age\").By(\"name\")", "go": "g.V(vid1).Out().Path().By(\"age\").By(\"name\")", "groovy": "g.V(vid1).out().path().by(\"age\").by(\"name\")", "java": "g.V(vid1).out().path().by(\"age\").by(\"name\")", @@ -33210,6 +35360,7 @@ "canonical": "g.V().repeat(__.out()).times(2).path().by().by(\"name\").by(\"lang\")", "anonymized": "g.V().repeat(__.out()).times(number0).path().by().by(string0).by(string1)", "dotnet": "g.V().Repeat(__.Out()).Times(2).Path().By().By(\"name\").By(\"lang\")", + "dotnet_parameterize": "g.V().Repeat(__.Out()).Times(2).Path().By().By(\"name\").By(\"lang\")", "go": "g.V().Repeat(gremlingo.T__.Out()).Times(2).Path().By().By(\"name\").By(\"lang\")", "groovy": "g.V().repeat(__.out()).times(2).path().by().by(\"name\").by(\"lang\")", "java": "g.V().repeat(__.out()).times(2).path().by().by(\"name\").by(\"lang\")", @@ -33227,6 +35378,7 @@ "canonical": "g.V().out().out().path().by(\"name\").by(\"age\")", "anonymized": "g.V().out().out().path().by(string0).by(string1)", "dotnet": "g.V().Out().Out().Path().By(\"name\").By(\"age\")", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").By(\"age\")", "go": "g.V().Out().Out().Path().By(\"name\").By(\"age\")", "groovy": "g.V().out().out().path().by(\"name\").by(\"age\")", "java": "g.V().out().out().path().by(\"name\").by(\"age\")", @@ -33244,6 +35396,7 @@ "canonical": "g.V().as(\"a\").has(\"name\", \"marko\").as(\"b\").has(\"age\", 29).as(\"c\").path()", "anonymized": "g.V().as(string0).has(string1, string2).as(string3).has(string4, number0).as(string5).path()", "dotnet": "g.V().As(\"a\").Has(\"name\", \"marko\").As(\"b\").Has(\"age\", 29).As(\"c\").Path()", + "dotnet_parameterize": "g.V().As(\"a\").Has(\"name\", \"marko\").As(\"b\").Has(\"age\", 29).As(\"c\").Path()", "go": "g.V().As(\"a\").Has(\"name\", \"marko\").As(\"b\").Has(\"age\", 29).As(\"c\").Path()", "groovy": "g.V().as(\"a\").has(\"name\", \"marko\").as(\"b\").has(\"age\", 29).as(\"c\").path()", "java": "g.V().as(\"a\").has(\"name\", \"marko\").as(\"b\").has(\"age\", 29).as(\"c\").path()", @@ -33261,6 +35414,7 @@ "canonical": "g.V(vid1).outE(\"created\").inV().inE().outV().path()", "anonymized": "g.V(vid1).outE(string0).inV().inE().outV().path()", "dotnet": "g.V(vid1).OutE(\"created\").InV().InE().OutV().Path()", + "dotnet_parameterize": "g.V(vid1).OutE(\"created\").InV().InE().OutV().Path()", "go": "g.V(vid1).OutE(\"created\").InV().InE().OutV().Path()", "groovy": "g.V(vid1).outE(\"created\").inV().inE().outV().path()", "java": "g.V(vid1).outE(\"created\").inV().inE().outV().path()", @@ -33278,6 +35432,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").path().from(\"b\").to(\"c\").by(\"name\")", "anonymized": "g.V().as(string0).out().as(string1).out().as(string2).path().from(string1).to(string2).by(string3)", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Path().From(\"b\").To(\"c\").By(\"name\")", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Path().From(\"b\").To(\"c\").By(\"name\")", "go": "g.V().As(\"a\").Out().As(\"b\").Out().As(\"c\").Path().From(\"b\").To(\"c\").By(\"name\")", "groovy": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").path().from(\"b\").to(\"c\").by(\"name\")", "java": "g.V().as(\"a\").out().as(\"b\").out().as(\"c\").path().from(\"b\").to(\"c\").by(\"name\")", @@ -33295,6 +35450,7 @@ "canonical": "g.V(vid1).out().path().by(\"age\")", "anonymized": "g.V(vid1).out().path().by(string0)", "dotnet": "g.V(vid1).Out().Path().By(\"age\")", + "dotnet_parameterize": "g.V(vid1).Out().Path().By(\"age\")", "go": "g.V(vid1).Out().Path().By(\"age\")", "groovy": "g.V(vid1).out().path().by(\"age\")", "java": "g.V(vid1).out().path().by(\"age\")", @@ -33312,6 +35468,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V(vid1).out().path().by(\"age\")", "anonymized": "g.withStrategies(ProductiveByStrategy).V(vid1).out().path().by(string0)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V(vid1).Out().Path().By(\"age\")", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V(vid1).Out().Path().By(\"age\")", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V(vid1).Out().Path().By(\"age\")", "groovy": "g.withStrategies(ProductiveByStrategy).V(vid1).out().path().by(\"age\")", "java": "g.withStrategies(ProductiveByStrategy.instance()).V(vid1).out().path().by(\"age\")", @@ -33329,6 +35486,7 @@ "canonical": "g.inject(1, null, null).path()", "anonymized": "g.inject(number0, object0, object0).path()", "dotnet": "g.Inject(1, null, null).Path()", + "dotnet_parameterize": "g.Inject(1, null, null).Path()", "go": "g.Inject(1, nil, nil).Path()", "groovy": "g.inject(1, (Object) null, null).path()", "java": "g.inject(1, null, null).path()", @@ -33346,6 +35504,7 @@ "canonical": "g.inject(1, null, null).path().dedup()", "anonymized": "g.inject(number0, object0, object0).path().dedup()", "dotnet": "g.Inject(1, null, null).Path().Dedup()", + "dotnet_parameterize": "g.Inject(1, null, null).Path().Dedup()", "go": "g.Inject(1, nil, nil).Path().Dedup()", "groovy": "g.inject(1, (Object) null, null).path().dedup()", "java": "g.inject(1, null, null).path().dedup()", @@ -33363,6 +35522,7 @@ "canonical": "g.V().peerPressure().has(\"gremlin.peerPressureVertexProgram.cluster\")", "anonymized": "g.V().peerPressure().has(string0)", "dotnet": "g.V().PeerPressure().Has(\"gremlin.peerPressureVertexProgram.cluster\")", + "dotnet_parameterize": "g.V().PeerPressure().Has(\"gremlin.peerPressureVertexProgram.cluster\")", "go": "g.V().PeerPressure().Has(\"gremlin.peerPressureVertexProgram.cluster\")", "groovy": "g.V().peerPressure().has(\"gremlin.peerPressureVertexProgram.cluster\")", "java": "g.V().peerPressure().has(\"gremlin.peerPressureVertexProgram.cluster\")", @@ -33380,6 +35540,7 @@ "canonical": "g.V().peerPressure().with(\"~tinkerpop.peerPressure.propertyName\", \"cluster\").with(\"~tinkerpop.peerPressure.edges\", __.outE(\"knows\")).pageRank(1.0).with(\"~tinkerpop.pageRank.propertyName\", \"rank\").with(\"~tinkerpop.pageRank.edges\", __.outE(\"knows\")).with(\"~tinkerpop.pageRank.times\", 1).group().by(\"cluster\").by(__.values(\"rank\").sum()).limit(100)", "anonymized": "g.V().peerPressure().with(string0, string1).with(string2, __.outE(string3)).pageRank(number0).with(string4, string5).with(string6, __.outE(string3)).with(string7, number1).group().by(string1).by(__.values(string5).sum()).limit(number2)", "dotnet": "g.V().PeerPressure().With(\"~tinkerpop.peerPressure.propertyName\", \"cluster\").With(\"~tinkerpop.peerPressure.edges\", __.OutE(\"knows\")).PageRank(1.0).With(\"~tinkerpop.pageRank.propertyName\", \"rank\").With(\"~tinkerpop.pageRank.edges\", __.OutE(\"knows\")).With(\"~tinkerpop.pageRank.times\", 1).Group().By(\"cluster\").By(__.Values(\"rank\").Sum()).Limit(100)", + "dotnet_parameterize": "g.V().PeerPressure().With(\"~tinkerpop.peerPressure.propertyName\", \"cluster\").With(\"~tinkerpop.peerPressure.edges\", __.OutE(\"knows\")).PageRank(1.0).With(\"~tinkerpop.pageRank.propertyName\", \"rank\").With(\"~tinkerpop.pageRank.edges\", __.OutE(\"knows\")).With(\"~tinkerpop.pageRank.times\", 1).Group().By(\"cluster\").By(__.Values(\"rank\").Sum()).Limit(100)", "go": "g.V().PeerPressure().With(\"~tinkerpop.peerPressure.propertyName\", \"cluster\").With(\"~tinkerpop.peerPressure.edges\", gremlingo.T__.OutE(\"knows\")).PageRank(1.0).With(\"~tinkerpop.pageRank.propertyName\", \"rank\").With(\"~tinkerpop.pageRank.edges\", gremlingo.T__.OutE(\"knows\")).With(\"~tinkerpop.pageRank.times\", 1).Group().By(\"cluster\").By(gremlingo.T__.Values(\"rank\").Sum()).Limit(100)", "groovy": "g.V().peerPressure().with(\"~tinkerpop.peerPressure.propertyName\", \"cluster\").with(\"~tinkerpop.peerPressure.edges\", __.outE(\"knows\")).pageRank(1.0).with(\"~tinkerpop.pageRank.propertyName\", \"rank\").with(\"~tinkerpop.pageRank.edges\", __.outE(\"knows\")).with(\"~tinkerpop.pageRank.times\", 1).group().by(\"cluster\").by(__.values(\"rank\").sum()).limit(100)", "java": "g.V().peerPressure().with(\"~tinkerpop.peerPressure.propertyName\", \"cluster\").with(\"~tinkerpop.peerPressure.edges\", __.outE(\"knows\")).pageRank(1.0).with(\"~tinkerpop.pageRank.propertyName\", \"rank\").with(\"~tinkerpop.pageRank.edges\", __.outE(\"knows\")).with(\"~tinkerpop.pageRank.times\", 1).group().by(\"cluster\").by(__.values(\"rank\").sum()).limit(100)", @@ -33397,6 +35558,7 @@ "canonical": "g.V().has(\"name\", \"ripple\").in(\"created\").peerPressure().with(\"~tinkerpop.peerPressure.edges\", __.outE()).with(\"~tinkerpop.peerPressure.propertyName\", \"cluster\").repeat(__.union(__.identity(), __.both())).times(2).dedup().valueMap(\"name\", \"cluster\")", "anonymized": "g.V().has(string0, string1).in(string2).peerPressure().with(string3, __.outE()).with(string4, string5).repeat(__.union(__.identity(), __.both())).times(number0).dedup().valueMap(string0, string5)", "dotnet": "g.V().Has(\"name\", \"ripple\").In(\"created\").PeerPressure().With(\"~tinkerpop.peerPressure.edges\", __.OutE()).With(\"~tinkerpop.peerPressure.propertyName\", \"cluster\").Repeat(__.Union(__.Identity(), __.Both())).Times(2).Dedup().ValueMap(\"name\", \"cluster\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"ripple\").In(\"created\").PeerPressure().With(\"~tinkerpop.peerPressure.edges\", __.OutE()).With(\"~tinkerpop.peerPressure.propertyName\", \"cluster\").Repeat(__.Union(__.Identity(), __.Both())).Times(2).Dedup().ValueMap(\"name\", \"cluster\")", "go": "g.V().Has(\"name\", \"ripple\").In(\"created\").PeerPressure().With(\"~tinkerpop.peerPressure.edges\", gremlingo.T__.OutE()).With(\"~tinkerpop.peerPressure.propertyName\", \"cluster\").Repeat(gremlingo.T__.Union(gremlingo.T__.Identity(), gremlingo.T__.Both())).Times(2).Dedup().ValueMap(\"name\", \"cluster\")", "groovy": "g.V().has(\"name\", \"ripple\").in(\"created\").peerPressure().with(\"~tinkerpop.peerPressure.edges\", __.outE()).with(\"~tinkerpop.peerPressure.propertyName\", \"cluster\").repeat(__.union(__.identity(), __.both())).times(2).dedup().valueMap(\"name\", \"cluster\")", "java": "g.V().has(\"name\", \"ripple\").in(\"created\").peerPressure().with(\"~tinkerpop.peerPressure.edges\", __.outE()).with(\"~tinkerpop.peerPressure.propertyName\", \"cluster\").repeat(__.union(__.identity(), __.both())).times(2).dedup().valueMap(\"name\", \"cluster\")", @@ -33414,6 +35576,7 @@ "canonical": "g.inject(null).product(__.inject(1))", "anonymized": "g.inject(object0).product(__.inject(number0))", "dotnet": "g.Inject(null).Product(__.Inject(1))", + "dotnet_parameterize": "g.Inject(null).Product(__.Inject(1))", "go": "g.Inject(nil).Product(gremlingo.T__.Inject(1))", "groovy": "g.inject(null).product(__.inject(1))", "java": "g.inject(null).product(__.inject(1))", @@ -33431,6 +35594,7 @@ "canonical": "g.V().values(\"name\").product(__.V().fold())", "anonymized": "g.V().values(string0).product(__.V().fold())", "dotnet": "g.V().Values(\"name\").Product(__.V().Fold())", + "dotnet_parameterize": "g.V().Values(\"name\").Product(__.V().Fold())", "go": "g.V().Values(\"name\").Product(gremlingo.T__.V().Fold())", "groovy": "g.V().values(\"name\").product(__.V().fold())", "java": "g.V().values(\"name\").product(__.V().fold())", @@ -33448,6 +35612,7 @@ "canonical": "g.V().fold().product(__.constant(null))", "anonymized": "g.V().fold().product(__.constant(object0))", "dotnet": "g.V().Fold().Product(__.Constant(null))", + "dotnet_parameterize": "g.V().Fold().Product(__.Constant(null))", "go": "g.V().Fold().Product(gremlingo.T__.Constant(nil))", "groovy": "g.V().fold().product(__.constant(null))", "java": "g.V().fold().product(__.constant(null))", @@ -33465,6 +35630,7 @@ "canonical": "g.V().fold().product(__.V())", "anonymized": "g.V().fold().product(__.V())", "dotnet": "g.V().Fold().Product(__.V())", + "dotnet_parameterize": "g.V().Fold().Product(__.V())", "go": "g.V().Fold().Product(gremlingo.T__.V())", "groovy": "g.V().fold().product(__.V())", "java": "g.V().fold().product(__.V())", @@ -33482,6 +35648,7 @@ "canonical": "g.V().values(\"name\").fold().product(2)", "anonymized": "g.V().values(string0).fold().product(number0)", "dotnet": "g.V().Values(\"name\").Fold().Product(2)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Product(2)", "go": "g.V().Values(\"name\").Fold().Product(2)", "groovy": "g.V().values(\"name\").fold().product(2)", "java": "g.V().values(\"name\").fold().product(2)", @@ -33499,6 +35666,7 @@ "canonical": "g.V().values(\"name\").fold().product(null)", "anonymized": "g.V().values(string0).fold().product(object0)", "dotnet": "g.V().Values(\"name\").Fold().Product(null)", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Product(null)", "go": "g.V().Values(\"name\").Fold().Product(nil)", "groovy": "g.V().values(\"name\").fold().product(null)", "java": "g.V().values(\"name\").fold().product(null)", @@ -33516,6 +35684,7 @@ "canonical": "g.V().values(\"nonexistant\").fold().product(__.V().values(\"name\").fold())", "anonymized": "g.V().values(string0).fold().product(__.V().values(string1).fold())", "dotnet": "g.V().Values(\"nonexistant\").Fold().Product(__.V().Values(\"name\").Fold())", + "dotnet_parameterize": "g.V().Values(\"nonexistant\").Fold().Product(__.V().Values(\"name\").Fold())", "go": "g.V().Values(\"nonexistant\").Fold().Product(gremlingo.T__.V().Values(\"name\").Fold())", "groovy": "g.V().values(\"nonexistant\").fold().product(__.V().values(\"name\").fold())", "java": "g.V().values(\"nonexistant\").fold().product(__.V().values(\"name\").fold())", @@ -33533,6 +35702,7 @@ "canonical": "g.V().values(\"name\").fold().product(__.V().values(\"nonexistant\").fold())", "anonymized": "g.V().values(string0).fold().product(__.V().values(string1).fold())", "dotnet": "g.V().Values(\"name\").Fold().Product(__.V().Values(\"nonexistant\").Fold())", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Product(__.V().Values(\"nonexistant\").Fold())", "go": "g.V().Values(\"name\").Fold().Product(gremlingo.T__.V().Values(\"nonexistant\").Fold())", "groovy": "g.V().values(\"name\").fold().product(__.V().values(\"nonexistant\").fold())", "java": "g.V().values(\"name\").fold().product(__.V().values(\"nonexistant\").fold())", @@ -33550,6 +35720,7 @@ "canonical": "g.V().values(\"age\").order().by(Order.desc).limit(3).fold().product(__.V().values(\"age\").order().by(Order.asc).limit(2).fold()).unfold()", "anonymized": "g.V().values(string0).order().by(Order.desc).limit(number0).fold().product(__.V().values(string0).order().by(Order.asc).limit(number1).fold()).unfold()", "dotnet": "g.V().Values(\"age\").Order().By(Order.Desc).Limit(3).Fold().Product(__.V().Values(\"age\").Order().By(Order.Asc).Limit(2).Fold()).Unfold()", + "dotnet_parameterize": "g.V().Values(\"age\").Order().By(Order.Desc).Limit(3).Fold().Product(__.V().Values(\"age\").Order().By(Order.Asc).Limit(2).Fold()).Unfold()", "go": "g.V().Values(\"age\").Order().By(gremlingo.Order.Desc).Limit(3).Fold().Product(gremlingo.T__.V().Values(\"age\").Order().By(gremlingo.Order.Asc).Limit(2).Fold()).Unfold()", "groovy": "g.V().values(\"age\").order().by(Order.desc).limit(3).fold().product(__.V().values(\"age\").order().by(Order.asc).limit(2).fold()).unfold()", "java": "g.V().values(\"age\").order().by(Order.desc).limit(3).fold().product(__.V().values(\"age\").order().by(Order.asc).limit(2).fold()).unfold()", @@ -33567,6 +35738,7 @@ "canonical": "g.V().out().path().by(__.values(\"name\").toUpper()).product([\"MARKO\"]).unfold()", "anonymized": "g.V().out().path().by(__.values(string0).toUpper()).product(list0).unfold()", "dotnet": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Product(new List { \"MARKO\" }).Unfold()", + "dotnet_parameterize": "g.V().Out().Path().By(__.Values(\"name\").ToUpper()).Product(new List { \"MARKO\" }).Unfold()", "go": "g.V().Out().Path().By(gremlingo.T__.Values(\"name\").ToUpper()).Product([]interface{}{\"MARKO\"}).Unfold()", "groovy": "g.V().out().path().by(__.values(\"name\").toUpper()).product([\"MARKO\"]).unfold()", "java": "g.V().out().path().by(__.values(\"name\").toUpper()).product(new ArrayList() {{ add(\"MARKO\"); }}).unfold()", @@ -33584,6 +35756,7 @@ "canonical": "g.inject([\"marko\"]).product(__.V().values(\"name\").order().fold()).unfold()", "anonymized": "g.inject(list0).product(__.V().values(string0).order().fold()).unfold()", "dotnet": "g.Inject(new List { \"marko\" }).Product(__.V().Values(\"name\").Order().Fold()).Unfold()", + "dotnet_parameterize": "g.Inject(new List { \"marko\" }).Product(__.V().Values(\"name\").Order().Fold()).Unfold()", "go": "g.Inject([]interface{}{\"marko\"}).Product(gremlingo.T__.V().Values(\"name\").Order().Fold()).Unfold()", "groovy": "g.inject([\"marko\"]).product(__.V().values(\"name\").order().fold()).unfold()", "java": "g.inject(new ArrayList() {{ add(\"marko\"); }}).product(__.V().values(\"name\").order().fold()).unfold()", @@ -33601,6 +35774,7 @@ "canonical": "g.V().valueMap(\"location\").select(Column.values).unfold().product([\"dulles\", \"seattle\", \"vancouver\"]).unfold()", "anonymized": "g.V().valueMap(string0).select(Column.values).unfold().product(list0).unfold()", "dotnet": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Product(new List { \"dulles\", \"seattle\", \"vancouver\" }).Unfold()", + "dotnet_parameterize": "g.V().ValueMap(\"location\").Select(Column.Values).Unfold().Product(new List { \"dulles\", \"seattle\", \"vancouver\" }).Unfold()", "go": "g.V().ValueMap(\"location\").Select(gremlingo.Column.Values).Unfold().Product([]interface{}{\"dulles\", \"seattle\", \"vancouver\"}).Unfold()", "groovy": "g.V().valueMap(\"location\").select(Column.values).unfold().product([\"dulles\", \"seattle\", \"vancouver\"]).unfold()", "java": "g.V().valueMap(\"location\").select(Column.values).unfold().product(new ArrayList() {{ add(\"dulles\"); add(\"seattle\"); add(\"vancouver\"); }}).unfold()", @@ -33618,6 +35792,7 @@ "canonical": "g.V().values(\"age\").order().by(Order.asc).fold().product(__.constant(27).fold()).unfold()", "anonymized": "g.V().values(string0).order().by(Order.asc).fold().product(__.constant(number0).fold()).unfold()", "dotnet": "g.V().Values(\"age\").Order().By(Order.Asc).Fold().Product(__.Constant(27).Fold()).Unfold()", + "dotnet_parameterize": "g.V().Values(\"age\").Order().By(Order.Asc).Fold().Product(__.Constant(27).Fold()).Unfold()", "go": "g.V().Values(\"age\").Order().By(gremlingo.Order.Asc).Fold().Product(gremlingo.T__.Constant(27).Fold()).Unfold()", "groovy": "g.V().values(\"age\").order().by(Order.asc).fold().product(__.constant(27).fold()).unfold()", "java": "g.V().values(\"age\").order().by(Order.asc).fold().product(__.constant(27).fold()).unfold()", @@ -33635,6 +35810,7 @@ "canonical": "g.V().out().out().path().by(\"name\").product([\"dave\", \"kelvin\"]).unfold()", "anonymized": "g.V().out().out().path().by(string0).product(list0).unfold()", "dotnet": "g.V().Out().Out().Path().By(\"name\").Product(new List { \"dave\", \"kelvin\" }).Unfold()", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Product(new List { \"dave\", \"kelvin\" }).Unfold()", "go": "g.V().Out().Out().Path().By(\"name\").Product([]interface{}{\"dave\", \"kelvin\"}).Unfold()", "groovy": "g.V().out().out().path().by(\"name\").product([\"dave\", \"kelvin\"]).unfold()", "java": "g.V().out().out().path().by(\"name\").product(new ArrayList() {{ add(\"dave\"); add(\"kelvin\"); }}).unfold()", @@ -33652,6 +35828,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).product([\"a\", \"c\"]).unfold()", "anonymized": "g.inject(list0).product(list1).unfold()", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Product(new List { \"a\", \"c\" }).Unfold()", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Product(new List { \"a\", \"c\" }).Unfold()", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Product([]interface{}{\"a\", \"c\"}).Unfold()", "groovy": "g.inject([\"a\", null, \"b\"]).product([\"a\", \"c\"]).unfold()", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).product(new ArrayList() {{ add(\"a\"); add(\"c\"); }}).unfold()", @@ -33669,6 +35846,7 @@ "canonical": "g.inject([\"a\", null, \"b\"]).product([\"a\", null, \"c\"]).unfold()", "anonymized": "g.inject(list0).product(list1).unfold()", "dotnet": "g.Inject(new List { \"a\", null, \"b\" }).Product(new List { \"a\", null, \"c\" }).Unfold()", + "dotnet_parameterize": "g.Inject(new List { \"a\", null, \"b\" }).Product(new List { \"a\", null, \"c\" }).Unfold()", "go": "g.Inject([]interface{}{\"a\", nil, \"b\"}).Product([]interface{}{\"a\", nil, \"c\"}).Unfold()", "groovy": "g.inject([\"a\", null, \"b\"]).product([\"a\", null, \"c\"]).unfold()", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(null); add(\"b\"); }}).product(new ArrayList() {{ add(\"a\"); add(null); add(\"c\"); }}).unfold()", @@ -33686,6 +35864,7 @@ "canonical": "g.inject([3i, \"three\"]).product([\"five\", \"three\", 7i]).unfold()", "anonymized": "g.inject(list0).product(list1).unfold()", "dotnet": "g.Inject(new List { 3, \"three\" }).Product(new List { \"five\", \"three\", 7 }).Unfold()", + "dotnet_parameterize": "g.Inject(new List { 3, \"three\" }).Product(new List { \"five\", \"three\", 7 }).Unfold()", "go": "g.Inject([]interface{}{int32(3), \"three\"}).Product([]interface{}{\"five\", \"three\", int32(7)}).Unfold()", "groovy": "g.inject([3i, \"three\"]).product([\"five\", \"three\", 7i]).unfold()", "java": "g.inject(new ArrayList() {{ add(3); add(\"three\"); }}).product(new ArrayList() {{ add(\"five\"); add(\"three\"); add(7); }}).unfold()", @@ -33703,6 +35882,7 @@ "canonical": "g.V().hasLabel(\"person\").project(\"a\", \"b\").by(__.outE().count()).by(\"age\")", "anonymized": "g.V().hasLabel(string0).project(string1, string2).by(__.outE().count()).by(string3)", "dotnet": "g.V().HasLabel(\"person\").Project(\"a\", \"b\").By(__.OutE().Count()).By(\"age\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Project(\"a\", \"b\").By(__.OutE().Count()).By(\"age\")", "go": "g.V().HasLabel(\"person\").Project(\"a\", \"b\").By(gremlingo.T__.OutE().Count()).By(\"age\")", "groovy": "g.V().hasLabel(\"person\").project(\"a\", \"b\").by(__.outE().count()).by(\"age\")", "java": "g.V().hasLabel(\"person\").project(\"a\", \"b\").by(__.outE().count()).by(\"age\")", @@ -33720,6 +35900,7 @@ "canonical": "g.V().out(\"created\").project(\"a\", \"b\").by(\"name\").by(__.in(\"created\").count()).order().by(__.select(\"b\"), Order.desc).select(\"a\")", "anonymized": "g.V().out(string0).project(string1, string2).by(string3).by(__.in(string0).count()).order().by(__.select(string2), Order.desc).select(string1)", "dotnet": "g.V().Out(\"created\").Project(\"a\", \"b\").By(\"name\").By(__.In(\"created\").Count()).Order().By(__.Select(\"b\"), Order.Desc).Select(\"a\")", + "dotnet_parameterize": "g.V().Out(\"created\").Project(\"a\", \"b\").By(\"name\").By(__.In(\"created\").Count()).Order().By(__.Select(\"b\"), Order.Desc).Select(\"a\")", "go": "g.V().Out(\"created\").Project(\"a\", \"b\").By(\"name\").By(gremlingo.T__.In(\"created\").Count()).Order().By(gremlingo.T__.Select(\"b\"), gremlingo.Order.Desc).Select(\"a\")", "groovy": "g.V().out(\"created\").project(\"a\", \"b\").by(\"name\").by(__.in(\"created\").count()).order().by(__.select(\"b\"), Order.desc).select(\"a\")", "java": "g.V().out(\"created\").project(\"a\", \"b\").by(\"name\").by(__.in(\"created\").count()).order().by(__.select(\"b\"), Order.desc).select(\"a\")", @@ -33737,6 +35918,7 @@ "canonical": "g.V().valueMap().project(\"x\").by(__.select(\"name\"))", "anonymized": "g.V().valueMap().project(string0).by(__.select(string1))", "dotnet": "g.V().ValueMap().Project(\"x\").By(__.Select(\"name\"))", + "dotnet_parameterize": "g.V().ValueMap().Project(\"x\").By(__.Select(\"name\"))", "go": "g.V().ValueMap().Project(\"x\").By(gremlingo.T__.Select(\"name\"))", "groovy": "g.V().valueMap().project(\"x\").by(__.select(\"name\"))", "java": "g.V().valueMap().project(\"x\").by(__.select(\"name\"))", @@ -33754,6 +35936,7 @@ "canonical": "g.V().project(\"a\", \"b\").by(__.inE().count()).by(\"age\")", "anonymized": "g.V().project(string0, string1).by(__.inE().count()).by(string2)", "dotnet": "g.V().Project(\"a\", \"b\").By(__.InE().Count()).By(\"age\")", + "dotnet_parameterize": "g.V().Project(\"a\", \"b\").By(__.InE().Count()).By(\"age\")", "go": "g.V().Project(\"a\", \"b\").By(gremlingo.T__.InE().Count()).By(\"age\")", "groovy": "g.V().project(\"a\", \"b\").by(__.inE().count()).by(\"age\")", "java": "g.V().project(\"a\", \"b\").by(__.inE().count()).by(\"age\")", @@ -33771,6 +35954,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().project(\"a\", \"b\").by(__.inE().count()).by(\"age\")", "anonymized": "g.withStrategies(ProductiveByStrategy).V().project(string0, string1).by(__.inE().count()).by(string2)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Project(\"a\", \"b\").By(__.InE().Count()).By(\"age\")", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Project(\"a\", \"b\").By(__.InE().Count()).By(\"age\")", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Project(\"a\", \"b\").By(gremlingo.T__.InE().Count()).By(\"age\")", "groovy": "g.withStrategies(ProductiveByStrategy).V().project(\"a\", \"b\").by(__.inE().count()).by(\"age\")", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().project(\"a\", \"b\").by(__.inE().count()).by(\"age\")", @@ -33788,6 +35972,7 @@ "canonical": "g.V().has(\"age\").properties(\"name\").value()", "anonymized": "g.V().has(string0).properties(string1).value()", "dotnet": "g.V().Has(\"age\").Properties(\"name\").Value()", + "dotnet_parameterize": "g.V().Has(\"age\").Properties(\"name\").Value()", "go": "g.V().Has(\"age\").Properties(\"name\").Value()", "groovy": "g.V().has(\"age\").properties(\"name\").value()", "java": "g.V().has(\"age\").properties(\"name\").value()", @@ -33805,6 +35990,7 @@ "canonical": "g.V().has(\"age\").properties(\"name\", \"age\").value()", "anonymized": "g.V().has(string0).properties(string1, string0).value()", "dotnet": "g.V().Has(\"age\").Properties(\"name\", \"age\").Value()", + "dotnet_parameterize": "g.V().Has(\"age\").Properties(\"name\", \"age\").Value()", "go": "g.V().Has(\"age\").Properties(\"name\", \"age\").Value()", "groovy": "g.V().has(\"age\").properties(\"name\", \"age\").value()", "java": "g.V().has(\"age\").properties(\"name\", \"age\").value()", @@ -33822,6 +36008,7 @@ "canonical": "g.V().has(\"age\").properties(\"age\", \"name\").value()", "anonymized": "g.V().has(string0).properties(string0, string1).value()", "dotnet": "g.V().Has(\"age\").Properties(\"age\", \"name\").Value()", + "dotnet_parameterize": "g.V().Has(\"age\").Properties(\"age\", \"name\").Value()", "go": "g.V().Has(\"age\").Properties(\"age\", \"name\").Value()", "groovy": "g.V().has(\"age\").properties(\"age\", \"name\").value()", "java": "g.V().has(\"age\").properties(\"age\", \"name\").value()", @@ -33839,6 +36026,7 @@ "canonical": "g.V().properties(\"name\", \"age\", null).value()", "anonymized": "g.V().properties(string0, string1, string2).value()", "dotnet": "g.V().Properties(\"name\", \"age\", null).Value()", + "dotnet_parameterize": "g.V().Properties(\"name\", \"age\", null).Value()", "go": "g.V().Properties(\"name\", \"age\", nil).Value()", "groovy": "g.V().properties(\"name\", \"age\", null).value()", "java": "g.V().properties(\"name\", \"age\", null).value()", @@ -33856,6 +36044,7 @@ "canonical": "g.V().values(\"name\", \"age\", null)", "anonymized": "g.V().values(string0, string1, string2)", "dotnet": "g.V().Values(\"name\", \"age\", null)", + "dotnet_parameterize": "g.V().Values(\"name\", \"age\", null)", "go": "g.V().Values(\"name\", \"age\", nil)", "groovy": "g.V().values(\"name\", \"age\", null)", "java": "g.V().values(\"name\", \"age\", null)", @@ -33873,6 +36062,7 @@ "canonical": "g.E().properties(\"weight\")", "anonymized": "g.E().properties(string0)", "dotnet": "g.E().Properties(\"weight\")", + "dotnet_parameterize": "g.E().Properties(\"weight\")", "go": "g.E().Properties(\"weight\")", "groovy": "g.E().properties(\"weight\")", "java": "g.E().properties(\"weight\")", @@ -33890,6 +36080,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 0.5d).property(\"since\", 2020i)", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, double0).property(string8, integer0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"weight\", 0.5d).Property(\"since\", 2020)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"weight\", 0.5d).Property(\"since\", 2020)", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"weight\", 0.5).Property(\"since\", int32(2020))", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 0.5d).property(\"since\", 2020i)", "java": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 0.5d).property(\"since\", 2020)", @@ -33902,6 +36093,7 @@ "canonical": "g.E().properties()", "anonymized": "g.E().properties()", "dotnet": "g.E().Properties()", + "dotnet_parameterize": "g.E().Properties()", "go": "g.E().Properties()", "groovy": "g.E().properties()", "java": "g.E().properties()", @@ -33919,6 +36111,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 0.5d).property(\"since\", 2020i)", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, double0).property(string8, integer0)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"weight\", 0.5d).Property(\"since\", 2020)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"weight\", 0.5d).Property(\"since\", 2020)", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"weight\", 0.5).Property(\"since\", int32(2020))", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 0.5d).property(\"since\", 2020i)", "java": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 0.5d).property(\"since\", 2020)", @@ -33931,6 +36124,7 @@ "canonical": "g.E().properties(\"since\")", "anonymized": "g.E().properties(string0)", "dotnet": "g.E().Properties(\"since\")", + "dotnet_parameterize": "g.E().Properties(\"since\")", "go": "g.E().Properties(\"since\")", "groovy": "g.E().properties(\"since\")", "java": "g.E().properties(\"since\")", @@ -33948,6 +36142,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 0.5d).property(\"since\", 2020i).addE(\"likes\").from(\"a\").to(\"b\").property(\"weight\", 1.0d).property(\"tag\", \"friend\")", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addV(string0).property(string1, string4).as(string5).addE(string6).from(string3).to(string5).property(string7, double0).property(string8, integer0).addE(string9).from(string3).to(string5).property(string7, double1).property(string10, string11)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"weight\", 0.5d).Property(\"since\", 2020).AddE((string) \"likes\").From(\"a\").To(\"b\").Property(\"weight\", 1.0d).Property(\"tag\", \"friend\")", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddV((string) \"person\").Property(\"name\", \"bob\").As(\"b\").AddE((string) \"knows\").From(\"a\").To(\"b\").Property(\"weight\", 0.5d).Property(\"since\", 2020).AddE((string) \"likes\").From(\"a\").To(\"b\").Property(\"weight\", 1.0d).Property(\"tag\", \"friend\")", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").As(\"a\").AddV(\"person\").Property(\"name\", \"bob\").As(\"b\").AddE(\"knows\").From(\"a\").To(\"b\").Property(\"weight\", 0.5).Property(\"since\", int32(2020)).AddE(\"likes\").From(\"a\").To(\"b\").Property(\"weight\", 1.0).Property(\"tag\", \"friend\")", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 0.5d).property(\"since\", 2020i).addE(\"likes\").from(\"a\").to(\"b\").property(\"weight\", 1.0d).property(\"tag\", \"friend\")", "java": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addV(\"person\").property(\"name\", \"bob\").as(\"b\").addE(\"knows\").from(\"a\").to(\"b\").property(\"weight\", 0.5d).property(\"since\", 2020).addE(\"likes\").from(\"a\").to(\"b\").property(\"weight\", 1.0d).property(\"tag\", \"friend\")", @@ -33960,6 +36155,7 @@ "canonical": "g.E().properties()", "anonymized": "g.E().properties()", "dotnet": "g.E().Properties()", + "dotnet_parameterize": "g.E().Properties()", "go": "g.E().Properties()", "groovy": "g.E().properties()", "java": "g.E().properties()", @@ -33977,6 +36173,7 @@ "canonical": "g.inject(\"feature \", \"one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").rTrim()", "anonymized": "g.inject(string0, string1, object0, string2, string3, string4, string5, string6, string7).rTrim()", "dotnet": "g.Inject(\"feature \", \"one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").RTrim()", + "dotnet_parameterize": "g.Inject(\"feature \", \"one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").RTrim()", "go": "g.Inject(\"feature \", \"one test \", nil, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").RTrim()", "groovy": "g.inject(\"feature \", \"one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").rTrim()", "java": "g.inject(\"feature \", \"one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").rTrim()", @@ -33994,6 +36191,7 @@ "canonical": "g.inject([\" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\"]).rTrim(Scope.local)", "anonymized": "g.inject(list0).rTrim(Scope.local)", "dotnet": "g.Inject(new List { \" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\" }).RTrim(Scope.Local)", + "dotnet_parameterize": "g.Inject(new List { \" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\" }).RTrim(Scope.Local)", "go": "g.Inject([]interface{}{\" feature \", \" one test \", nil, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\"}).RTrim(gremlingo.Scope.Local)", "groovy": "g.inject([\" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\"]).rTrim(Scope.local)", "java": "g.inject(new ArrayList() {{ add(\" feature \"); add(\" one test \"); add(null); add(\"\"); add(\" \"); add(\"\u3000abc\"); add(\"abc\u3000\"); add(\"\u3000abc\u3000\"); add(\"\u3000\u3000\"); }}).rTrim(Scope.local)", @@ -34011,6 +36209,7 @@ "canonical": "g.inject(\" feature \").rTrim()", "anonymized": "g.inject(string0).rTrim()", "dotnet": "g.Inject(\" feature \").RTrim()", + "dotnet_parameterize": "g.Inject(\" feature \").RTrim()", "go": "g.Inject(\" feature \").RTrim()", "groovy": "g.inject(\" feature \").rTrim()", "java": "g.inject(\" feature \").rTrim()", @@ -34028,6 +36227,7 @@ "canonical": "g.inject([\"a\", \"b\"]).rTrim()", "anonymized": "g.inject(list0).rTrim()", "dotnet": "g.Inject(new List { \"a\", \"b\" }).RTrim()", + "dotnet_parameterize": "g.Inject(new List { \"a\", \"b\" }).RTrim()", "go": "g.Inject([]interface{}{\"a\", \"b\"}).RTrim()", "groovy": "g.inject([\"a\", \"b\"]).rTrim()", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(\"b\"); }}).rTrim()", @@ -34045,6 +36245,7 @@ "canonical": "g.inject([1, 2]).rTrim(Scope.local)", "anonymized": "g.inject(list0).rTrim(Scope.local)", "dotnet": "g.Inject(new List { 1, 2 }).RTrim(Scope.Local)", + "dotnet_parameterize": "g.Inject(new List { 1, 2 }).RTrim(Scope.Local)", "go": "g.Inject([]interface{}{1, 2}).RTrim(gremlingo.Scope.Local)", "groovy": "g.inject([1, 2]).rTrim(Scope.local)", "java": "g.inject(new ArrayList() {{ add(1); add(2); }}).rTrim(Scope.local)", @@ -34062,6 +36263,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string4).addV(string0).property(string1, string5).property(string3, number1).as(string6).addV(string7).property(string1, string8).property(string9, string10).as(string11).addV(string0).property(string1, string12).property(string3, number2).as(string13).addV(string7).property(string1, string14).property(string9, string10).as(string15).addV(string0).property(string1, string16).property(string3, number3).as(string17).addE(string18).from(string4).to(string6).property(string19, double0).addE(string18).from(string4).to(string13).property(string19, double1).addE(string20).from(string4).to(string11).property(string19, double2).addE(string20).from(string13).to(string15).property(string19, double1).addE(string20).from(string13).to(string11).property(string19, double2).addE(string20).from(string16).to(string11).property(string19, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -34074,6 +36276,7 @@ "canonical": "g.V().values(\"name\").rTrim()", "anonymized": "g.V().values(string0).rTrim()", "dotnet": "g.V().Values(\"name\").RTrim()", + "dotnet_parameterize": "g.V().Values(\"name\").RTrim()", "go": "g.V().Values(\"name\").RTrim()", "groovy": "g.V().values(\"name\").rTrim()", "java": "g.V().values(\"name\").rTrim()", @@ -34091,6 +36294,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string4).addV(string0).property(string1, string5).property(string3, number1).as(string6).addV(string7).property(string1, string8).property(string9, string10).as(string11).addV(string0).property(string1, string12).property(string3, number2).as(string13).addV(string7).property(string1, string14).property(string9, string10).as(string15).addV(string0).property(string1, string16).property(string3, number3).as(string17).addE(string18).from(string4).to(string6).property(string19, double0).addE(string18).from(string4).to(string13).property(string19, double1).addE(string20).from(string4).to(string11).property(string19, double2).addE(string20).from(string13).to(string15).property(string19, double1).addE(string20).from(string13).to(string11).property(string19, double2).addE(string20).from(string16).to(string11).property(string19, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -34103,6 +36307,7 @@ "canonical": "g.V().values(\"name\").order().fold().rTrim(Scope.local)", "anonymized": "g.V().values(string0).order().fold().rTrim(Scope.local)", "dotnet": "g.V().Values(\"name\").Order().Fold().RTrim(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"name\").Order().Fold().RTrim(Scope.Local)", "go": "g.V().Values(\"name\").Order().Fold().RTrim(gremlingo.Scope.Local)", "groovy": "g.V().values(\"name\").order().fold().rTrim(Scope.local)", "java": "g.V().values(\"name\").order().fold().rTrim(Scope.local)", @@ -34120,6 +36325,7 @@ "canonical": "g.inject(\"that\", \"this\", \"test\", null).replace(\"h\", \"j\")", "anonymized": "g.inject(string0, string1, string2, object0).replace(string3, string4)", "dotnet": "g.Inject(\"that\", \"this\", \"test\", null).Replace(\"h\", \"j\")", + "dotnet_parameterize": "g.Inject(\"that\", \"this\", \"test\", null).Replace(\"h\", \"j\")", "go": "g.Inject(\"that\", \"this\", \"test\", nil).Replace(\"h\", \"j\")", "groovy": "g.inject(\"that\", \"this\", \"test\", null).replace(\"h\", \"j\")", "java": "g.inject(\"that\", \"this\", \"test\", null).replace(\"h\", \"j\")", @@ -34137,6 +36343,7 @@ "canonical": "g.inject(\"that\", \"this\", \"test\", null).fold().replace(Scope.local, \"h\", \"j\")", "anonymized": "g.inject(string0, string1, string2, object0).fold().replace(Scope.local, string3, string4)", "dotnet": "g.Inject(\"that\", \"this\", \"test\", null).Fold().Replace(Scope.Local, \"h\", \"j\")", + "dotnet_parameterize": "g.Inject(\"that\", \"this\", \"test\", null).Fold().Replace(Scope.Local, \"h\", \"j\")", "go": "g.Inject(\"that\", \"this\", \"test\", nil).Fold().Replace(gremlingo.Scope.Local, \"h\", \"j\")", "groovy": "g.inject(\"that\", \"this\", \"test\", null).fold().replace(Scope.local, \"h\", \"j\")", "java": "g.inject(\"that\", \"this\", \"test\", null).fold().replace(Scope.local, \"h\", \"j\")", @@ -34154,6 +36361,7 @@ "canonical": "g.inject([\"a\", \"b\"]).replace(\"a\", \"b\")", "anonymized": "g.inject(list0).replace(string0, string1)", "dotnet": "g.Inject(new List { \"a\", \"b\" }).Replace(\"a\", \"b\")", + "dotnet_parameterize": "g.Inject(new List { \"a\", \"b\" }).Replace(\"a\", \"b\")", "go": "g.Inject([]interface{}{\"a\", \"b\"}).Replace(\"a\", \"b\")", "groovy": "g.inject([\"a\", \"b\"]).replace(\"a\", \"b\")", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(\"b\"); }}).replace(\"a\", \"b\")", @@ -34171,6 +36379,7 @@ "canonical": "g.V().hasLabel(\"software\").values(\"name\").replace(null, \"g\")", "anonymized": "g.V().hasLabel(string0).values(string1).replace(string2, string3)", "dotnet": "g.V().HasLabel(\"software\").Values(\"name\").Replace(null, \"g\")", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Values(\"name\").Replace(null, \"g\")", "go": "g.V().HasLabel(\"software\").Values(\"name\").Replace(nil, \"g\")", "groovy": "g.V().hasLabel(\"software\").values(\"name\").replace(null, \"g\")", "java": "g.V().hasLabel(\"software\").values(\"name\").replace(null, \"g\")", @@ -34188,6 +36397,7 @@ "canonical": "g.V().hasLabel(\"software\").values(\"name\").replace(\"p\", \"g\")", "anonymized": "g.V().hasLabel(string0).values(string1).replace(string2, string3)", "dotnet": "g.V().HasLabel(\"software\").Values(\"name\").Replace(\"p\", \"g\")", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Values(\"name\").Replace(\"p\", \"g\")", "go": "g.V().HasLabel(\"software\").Values(\"name\").Replace(\"p\", \"g\")", "groovy": "g.V().hasLabel(\"software\").values(\"name\").replace(\"p\", \"g\")", "java": "g.V().hasLabel(\"software\").values(\"name\").replace(\"p\", \"g\")", @@ -34205,6 +36415,7 @@ "canonical": "g.V().hasLabel(\"software\").values(\"name\").order().fold().replace(Scope.local, \"p\", \"g\")", "anonymized": "g.V().hasLabel(string0).values(string1).order().fold().replace(Scope.local, string2, string3)", "dotnet": "g.V().HasLabel(\"software\").Values(\"name\").Order().Fold().Replace(Scope.Local, \"p\", \"g\")", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Values(\"name\").Order().Fold().Replace(Scope.Local, \"p\", \"g\")", "go": "g.V().HasLabel(\"software\").Values(\"name\").Order().Fold().Replace(gremlingo.Scope.Local, \"p\", \"g\")", "groovy": "g.V().hasLabel(\"software\").values(\"name\").order().fold().replace(Scope.local, \"p\", \"g\")", "java": "g.V().hasLabel(\"software\").values(\"name\").order().fold().replace(Scope.local, \"p\", \"g\")", @@ -34222,6 +36433,7 @@ "canonical": "g.inject(\"feature\", \"test one\", null).reverse()", "anonymized": "g.inject(string0, string1, object0).reverse()", "dotnet": "g.Inject(\"feature\", \"test one\", null).Reverse()", + "dotnet_parameterize": "g.Inject(\"feature\", \"test one\", null).Reverse()", "go": "g.Inject(\"feature\", \"test one\", nil).Reverse()", "groovy": "g.inject(\"feature\", \"test one\", null).reverse()", "java": "g.inject(\"feature\", \"test one\", null).reverse()", @@ -34239,6 +36451,7 @@ "canonical": "g.V().values(\"name\").reverse()", "anonymized": "g.V().values(string0).reverse()", "dotnet": "g.V().Values(\"name\").Reverse()", + "dotnet_parameterize": "g.V().Values(\"name\").Reverse()", "go": "g.V().Values(\"name\").Reverse()", "groovy": "g.V().values(\"name\").reverse()", "java": "g.V().values(\"name\").reverse()", @@ -34256,6 +36469,7 @@ "canonical": "g.V().values(\"age\").reverse()", "anonymized": "g.V().values(string0).reverse()", "dotnet": "g.V().Values(\"age\").Reverse()", + "dotnet_parameterize": "g.V().Values(\"age\").Reverse()", "go": "g.V().Values(\"age\").Reverse()", "groovy": "g.V().values(\"age\").reverse()", "java": "g.V().values(\"age\").reverse()", @@ -34273,6 +36487,7 @@ "canonical": "g.V().out().path().by(\"name\").reverse()", "anonymized": "g.V().out().path().by(string0).reverse()", "dotnet": "g.V().Out().Path().By(\"name\").Reverse()", + "dotnet_parameterize": "g.V().Out().Path().By(\"name\").Reverse()", "go": "g.V().Out().Path().By(\"name\").Reverse()", "groovy": "g.V().out().path().by(\"name\").reverse()", "java": "g.V().out().path().by(\"name\").reverse()", @@ -34290,6 +36505,7 @@ "canonical": "g.V().out().out().path().by(\"name\").reverse()", "anonymized": "g.V().out().out().path().by(string0).reverse()", "dotnet": "g.V().Out().Out().Path().By(\"name\").Reverse()", + "dotnet_parameterize": "g.V().Out().Out().Path().By(\"name\").Reverse()", "go": "g.V().Out().Out().Path().By(\"name\").Reverse()", "groovy": "g.V().out().out().path().by(\"name\").reverse()", "java": "g.V().out().out().path().by(\"name\").reverse()", @@ -34307,6 +36523,7 @@ "canonical": "g.V().values(\"age\").fold().order(Scope.local).by(Order.desc).reverse()", "anonymized": "g.V().values(string0).fold().order(Scope.local).by(Order.desc).reverse()", "dotnet": "g.V().Values(\"age\").Fold().Order(Scope.Local).By(Order.Desc).Reverse()", + "dotnet_parameterize": "g.V().Values(\"age\").Fold().Order(Scope.Local).By(Order.Desc).Reverse()", "go": "g.V().Values(\"age\").Fold().Order(gremlingo.Scope.Local).By(gremlingo.Order.Desc).Reverse()", "groovy": "g.V().values(\"age\").fold().order(Scope.local).by(Order.desc).reverse()", "java": "g.V().values(\"age\").fold().order(Scope.local).by(Order.desc).reverse()", @@ -34324,6 +36541,7 @@ "canonical": "g.V().values(\"name\").fold().order(Scope.local).by().reverse()", "anonymized": "g.V().values(string0).fold().order(Scope.local).by().reverse()", "dotnet": "g.V().Values(\"name\").Fold().Order(Scope.Local).By().Reverse()", + "dotnet_parameterize": "g.V().Values(\"name\").Fold().Order(Scope.Local).By().Reverse()", "go": "g.V().Values(\"name\").Fold().Order(gremlingo.Scope.Local).By().Reverse()", "groovy": "g.V().values(\"name\").fold().order(Scope.local).by().reverse()", "java": "g.V().values(\"name\").fold().order(Scope.local).by().reverse()", @@ -34341,6 +36559,7 @@ "canonical": "g.inject(null).reverse()", "anonymized": "g.inject(object0).reverse()", "dotnet": "g.Inject(null).Reverse()", + "dotnet_parameterize": "g.Inject(null).Reverse()", "go": "g.Inject(nil).Reverse()", "groovy": "g.inject(null).reverse()", "java": "g.inject(null).reverse()", @@ -34358,6 +36577,7 @@ "canonical": "g.inject(\"b\").reverse()", "anonymized": "g.inject(string0).reverse()", "dotnet": "g.Inject(\"b\").Reverse()", + "dotnet_parameterize": "g.Inject(\"b\").Reverse()", "go": "g.Inject(\"b\").Reverse()", "groovy": "g.inject(\"b\").reverse()", "java": "g.inject(\"b\").reverse()", @@ -34375,6 +36595,7 @@ "canonical": "g.inject([3, \"three\"]).reverse()", "anonymized": "g.inject(list0).reverse()", "dotnet": "g.Inject(new List { 3, \"three\" }).Reverse()", + "dotnet_parameterize": "g.Inject(new List { 3, \"three\" }).Reverse()", "go": "g.Inject([]interface{}{3, \"three\"}).Reverse()", "groovy": "g.inject([3, \"three\"]).reverse()", "java": "g.inject(new ArrayList() {{ add(3); add(\"three\"); }}).reverse()", @@ -34392,6 +36613,7 @@ "canonical": "g.V(vid1).as(\"a\").out(\"knows\").as(\"b\").select(\"a\", \"b\")", "anonymized": "g.V(vid1).as(string0).out(string1).as(string2).select(string0, string2)", "dotnet": "g.V(vid1).As(\"a\").Out(\"knows\").As(\"b\").Select(\"a\", \"b\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Out(\"knows\").As(\"b\").Select(\"a\", \"b\")", "go": "g.V(vid1).As(\"a\").Out(\"knows\").As(\"b\").Select(\"a\", \"b\")", "groovy": "g.V(vid1).as(\"a\").out(\"knows\").as(\"b\").select(\"a\", \"b\")", "java": "g.V(vid1).as(\"a\").out(\"knows\").as(\"b\").select(\"a\", \"b\")", @@ -34409,6 +36631,7 @@ "canonical": "g.V(vid1).as(\"a\").out(\"knows\").as(\"b\").select(\"a\", \"b\").by(\"name\")", "anonymized": "g.V(vid1).as(string0).out(string1).as(string2).select(string0, string2).by(string3)", "dotnet": "g.V(vid1).As(\"a\").Out(\"knows\").As(\"b\").Select(\"a\", \"b\").By(\"name\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Out(\"knows\").As(\"b\").Select(\"a\", \"b\").By(\"name\")", "go": "g.V(vid1).As(\"a\").Out(\"knows\").As(\"b\").Select(\"a\", \"b\").By(\"name\")", "groovy": "g.V(vid1).as(\"a\").out(\"knows\").as(\"b\").select(\"a\", \"b\").by(\"name\")", "java": "g.V(vid1).as(\"a\").out(\"knows\").as(\"b\").select(\"a\", \"b\").by(\"name\")", @@ -34426,6 +36649,7 @@ "canonical": "g.V(vid1).as(\"a\").out(\"knows\").as(\"b\").select(\"a\")", "anonymized": "g.V(vid1).as(string0).out(string1).as(string2).select(string0)", "dotnet": "g.V(vid1).As(\"a\").Out(\"knows\").As(\"b\").Select(\"a\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Out(\"knows\").As(\"b\").Select(\"a\")", "go": "g.V(vid1).As(\"a\").Out(\"knows\").As(\"b\").Select(\"a\")", "groovy": "g.V(vid1).as(\"a\").out(\"knows\").as(\"b\").select(\"a\")", "java": "g.V(vid1).as(\"a\").out(\"knows\").as(\"b\").select(\"a\")", @@ -34443,6 +36667,7 @@ "canonical": "g.V(vid1).as(\"a\").out(\"knows\").as(\"b\").select(\"a\").by(\"name\")", "anonymized": "g.V(vid1).as(string0).out(string1).as(string2).select(string0).by(string3)", "dotnet": "g.V(vid1).As(\"a\").Out(\"knows\").As(\"b\").Select(\"a\").By(\"name\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Out(\"knows\").As(\"b\").Select(\"a\").By(\"name\")", "go": "g.V(vid1).As(\"a\").Out(\"knows\").As(\"b\").Select(\"a\").By(\"name\")", "groovy": "g.V(vid1).as(\"a\").out(\"knows\").as(\"b\").select(\"a\").by(\"name\")", "java": "g.V(vid1).as(\"a\").out(\"knows\").as(\"b\").select(\"a\").by(\"name\")", @@ -34460,6 +36685,7 @@ "canonical": "g.V().as(\"a\").out().as(\"b\").select(\"a\", \"b\").by(\"name\")", "anonymized": "g.V().as(string0).out().as(string1).select(string0, string1).by(string2)", "dotnet": "g.V().As(\"a\").Out().As(\"b\").Select(\"a\", \"b\").By(\"name\")", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"b\").Select(\"a\", \"b\").By(\"name\")", "go": "g.V().As(\"a\").Out().As(\"b\").Select(\"a\", \"b\").By(\"name\")", "groovy": "g.V().as(\"a\").out().as(\"b\").select(\"a\", \"b\").by(\"name\")", "java": "g.V().as(\"a\").out().as(\"b\").select(\"a\", \"b\").by(\"name\")", @@ -34477,6 +36703,7 @@ "canonical": "g.V().as(\"a\").out().aggregate(\"x\").as(\"b\").select(\"a\", \"b\").by(\"name\")", "anonymized": "g.V().as(string0).out().aggregate(string1).as(string2).select(string0, string2).by(string3)", "dotnet": "g.V().As(\"a\").Out().Aggregate(\"x\").As(\"b\").Select(\"a\", \"b\").By(\"name\")", + "dotnet_parameterize": "g.V().As(\"a\").Out().Aggregate(\"x\").As(\"b\").Select(\"a\", \"b\").By(\"name\")", "go": "g.V().As(\"a\").Out().Aggregate(\"x\").As(\"b\").Select(\"a\", \"b\").By(\"name\")", "groovy": "g.V().as(\"a\").out().aggregate(\"x\").as(\"b\").select(\"a\", \"b\").by(\"name\")", "java": "g.V().as(\"a\").out().aggregate(\"x\").as(\"b\").select(\"a\", \"b\").by(\"name\")", @@ -34494,6 +36721,7 @@ "canonical": "g.V().as(\"a\").values(\"name\").order().as(\"b\").select(\"a\", \"b\").by(\"name\").by()", "anonymized": "g.V().as(string0).values(string1).order().as(string2).select(string0, string2).by(string1).by()", "dotnet": "g.V().As(\"a\").Values(\"name\").Order().As(\"b\").Select(\"a\", \"b\").By(\"name\").By()", + "dotnet_parameterize": "g.V().As(\"a\").Values(\"name\").Order().As(\"b\").Select(\"a\", \"b\").By(\"name\").By()", "go": "g.V().As(\"a\").Values(\"name\").Order().As(\"b\").Select(\"a\", \"b\").By(\"name\").By()", "groovy": "g.V().as(\"a\").values(\"name\").order().as(\"b\").select(\"a\", \"b\").by(\"name\").by()", "java": "g.V().as(\"a\").values(\"name\").order().as(\"b\").select(\"a\", \"b\").by(\"name\").by()", @@ -34511,6 +36739,7 @@ "canonical": "g.V().has(\"name\", \"gremlin\").inE(\"uses\").order().by(\"skill\", Order.asc).as(\"a\").outV().as(\"b\").select(\"a\", \"b\").by(\"skill\").by(\"name\")", "anonymized": "g.V().has(string0, string1).inE(string2).order().by(string3, Order.asc).as(string4).outV().as(string5).select(string4, string5).by(string3).by(string0)", "dotnet": "g.V().Has(\"name\", \"gremlin\").InE(\"uses\").Order().By(\"skill\", Order.Asc).As(\"a\").OutV().As(\"b\").Select(\"a\", \"b\").By(\"skill\").By(\"name\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"gremlin\").InE(\"uses\").Order().By(\"skill\", Order.Asc).As(\"a\").OutV().As(\"b\").Select(\"a\", \"b\").By(\"skill\").By(\"name\")", "go": "g.V().Has(\"name\", \"gremlin\").InE(\"uses\").Order().By(\"skill\", gremlingo.Order.Asc).As(\"a\").OutV().As(\"b\").Select(\"a\", \"b\").By(\"skill\").By(\"name\")", "groovy": "g.V().has(\"name\", \"gremlin\").inE(\"uses\").order().by(\"skill\", Order.asc).as(\"a\").outV().as(\"b\").select(\"a\", \"b\").by(\"skill\").by(\"name\")", "java": "g.V().has(\"name\", \"gremlin\").inE(\"uses\").order().by(\"skill\", Order.asc).as(\"a\").outV().as(\"b\").select(\"a\", \"b\").by(\"skill\").by(\"name\")", @@ -34528,6 +36757,7 @@ "canonical": "g.V().where(__.values(\"name\").is(\"marko\")).as(\"a\").select(\"a\")", "anonymized": "g.V().where(__.values(string0).is(string1)).as(string2).select(string2)", "dotnet": "g.V().Where(__.Values(\"name\").Is(\"marko\")).As(\"a\").Select(\"a\")", + "dotnet_parameterize": "g.V().Where(__.Values(\"name\").Is(\"marko\")).As(\"a\").Select(\"a\")", "go": "g.V().Where(gremlingo.T__.Values(\"name\").Is(\"marko\")).As(\"a\").Select(\"a\")", "groovy": "g.V().where(__.values(\"name\").is(\"marko\")).as(\"a\").select(\"a\")", "java": "g.V().where(__.values(\"name\").is(\"marko\")).as(\"a\").select(\"a\")", @@ -34545,6 +36775,7 @@ "canonical": "g.V().label().groupCount().as(\"x\").select(\"x\")", "anonymized": "g.V().label().groupCount().as(string0).select(string0)", "dotnet": "g.V().Label().GroupCount().As(\"x\").Select(\"x\")", + "dotnet_parameterize": "g.V().Label().GroupCount().As(\"x\").Select(\"x\")", "go": "g.V().Label().GroupCount().As(\"x\").Select(\"x\")", "groovy": "g.V().label().groupCount().as(\"x\").select(\"x\")", "java": "g.V().label().groupCount().as(\"x\").select(\"x\")", @@ -34562,6 +36793,7 @@ "canonical": "g.V().hasLabel(\"person\").as(\"p\").map(__.bothE().label().groupCount()).as(\"r\").select(\"p\", \"r\")", "anonymized": "g.V().hasLabel(string0).as(string1).map(__.bothE().label().groupCount()).as(string2).select(string1, string2)", "dotnet": "g.V().HasLabel(\"person\").As(\"p\").Map(__.BothE().Label().GroupCount()).As(\"r\").Select(\"p\", \"r\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").As(\"p\").Map(__.BothE().Label().GroupCount()).As(\"r\").Select(\"p\", \"r\")", "go": "g.V().HasLabel(\"person\").As(\"p\").Map(gremlingo.T__.BothE().Label().GroupCount()).As(\"r\").Select(\"p\", \"r\")", "groovy": "g.V().hasLabel(\"person\").as(\"p\").map(__.bothE().label().groupCount()).as(\"r\").select(\"p\", \"r\")", "java": "g.V().hasLabel(\"person\").as(\"p\").map(__.bothE().label().groupCount()).as(\"r\").select(\"p\", \"r\")", @@ -34579,6 +36811,7 @@ "canonical": "g.V().choose(__.outE().count().is(xx1), __.as(\"a\"), __.as(\"b\")).choose(__.select(\"a\"), __.select(\"a\"), __.select(\"b\"))", "anonymized": "g.V().choose(__.outE().count().is(xx1), __.as(string0), __.as(string1)).choose(__.select(string0), __.select(string0), __.select(string1))", "dotnet": "g.V().Choose(__.OutE().Count().Is(xx1), __.As(\"a\"), __.As(\"b\")).Choose(__.Select(\"a\"), __.Select(\"a\"), __.Select(\"b\"))", + "dotnet_parameterize": "g.V().Choose(__.OutE().Count().Is(xx1), __.As(\"a\"), __.As(\"b\")).Choose(__.Select(\"a\"), __.Select(\"a\"), __.Select(\"b\"))", "go": "g.V().Choose(gremlingo.T__.OutE().Count().Is(xx1), gremlingo.T__.As(\"a\"), gremlingo.T__.As(\"b\")).Choose(gremlingo.T__.Select(\"a\"), gremlingo.T__.Select(\"a\"), gremlingo.T__.Select(\"b\"))", "groovy": "g.V().choose(__.outE().count().is(xx1), __.as(\"a\"), __.as(\"b\")).choose(__.select(\"a\"), __.select(\"a\"), __.select(\"b\"))", "java": "g.V().choose(__.outE().count().is(xx1), __.as(\"a\"), __.as(\"b\")).choose(__.select(\"a\"), __.select(\"a\"), __.select(\"b\"))", @@ -34596,6 +36829,7 @@ "canonical": "g.V(vid1).group(\"a\").by(__.constant(\"a\")).by(__.values(\"name\")).barrier().select(\"a\").select(\"a\")", "anonymized": "g.V(vid1).group(string0).by(__.constant(string0)).by(__.values(string1)).barrier().select(string0).select(string0)", "dotnet": "g.V(vid1).Group(\"a\").By(__.Constant(\"a\")).By(__.Values(\"name\")).Barrier().Select(\"a\").Select(\"a\")", + "dotnet_parameterize": "g.V(vid1).Group(\"a\").By(__.Constant(\"a\")).By(__.Values(\"name\")).Barrier().Select(\"a\").Select(\"a\")", "go": "g.V(vid1).Group(\"a\").By(gremlingo.T__.Constant(\"a\")).By(gremlingo.T__.Values(\"name\")).Barrier().Select(\"a\").Select(\"a\")", "groovy": "g.V(vid1).group(\"a\").by(__.constant(\"a\")).by(__.values(\"name\")).barrier().select(\"a\").select(\"a\")", "java": "g.V(vid1).group(\"a\").by(__.constant(\"a\")).by(__.values(\"name\")).barrier().select(\"a\").select(\"a\")", @@ -34613,6 +36847,7 @@ "canonical": "g.V(vid1).as(\"here\").out().select(\"here\")", "anonymized": "g.V(vid1).as(string0).out().select(string0)", "dotnet": "g.V(vid1).As(\"here\").Out().Select(\"here\")", + "dotnet_parameterize": "g.V(vid1).As(\"here\").Out().Select(\"here\")", "go": "g.V(vid1).As(\"here\").Out().Select(\"here\")", "groovy": "g.V(vid1).as(\"here\").out().select(\"here\")", "java": "g.V(vid1).as(\"here\").out().select(\"here\")", @@ -34630,6 +36865,7 @@ "canonical": "g.V(vid4).as(\"here\").out().select(\"here\")", "anonymized": "g.V(vid4).as(string0).out().select(string0)", "dotnet": "g.V(vid4).As(\"here\").Out().Select(\"here\")", + "dotnet_parameterize": "g.V(vid4).As(\"here\").Out().Select(\"here\")", "go": "g.V(vid4).As(\"here\").Out().Select(\"here\")", "groovy": "g.V(vid4).as(\"here\").out().select(\"here\")", "java": "g.V(vid4).as(\"here\").out().select(\"here\")", @@ -34647,6 +36883,7 @@ "canonical": "g.V(vid4).out().as(\"here\").has(\"lang\", \"java\").select(\"here\").values(\"name\")", "anonymized": "g.V(vid4).out().as(string0).has(string1, string2).select(string0).values(string3)", "dotnet": "g.V(vid4).Out().As(\"here\").Has(\"lang\", \"java\").Select(\"here\").Values(\"name\")", + "dotnet_parameterize": "g.V(vid4).Out().As(\"here\").Has(\"lang\", \"java\").Select(\"here\").Values(\"name\")", "go": "g.V(vid4).Out().As(\"here\").Has(\"lang\", \"java\").Select(\"here\").Values(\"name\")", "groovy": "g.V(vid4).out().as(\"here\").has(\"lang\", \"java\").select(\"here\").values(\"name\")", "java": "g.V(vid4).out().as(\"here\").has(\"lang\", \"java\").select(\"here\").values(\"name\")", @@ -34664,6 +36901,7 @@ "canonical": "g.V(vid1).outE().as(\"here\").inV().has(\"name\", \"vadas\").select(\"here\")", "anonymized": "g.V(vid1).outE().as(string0).inV().has(string1, string2).select(string0)", "dotnet": "g.V(vid1).OutE().As(\"here\").InV().Has(\"name\", \"vadas\").Select(\"here\")", + "dotnet_parameterize": "g.V(vid1).OutE().As(\"here\").InV().Has(\"name\", \"vadas\").Select(\"here\")", "go": "g.V(vid1).OutE().As(\"here\").InV().Has(\"name\", \"vadas\").Select(\"here\")", "groovy": "g.V(vid1).outE().as(\"here\").inV().has(\"name\", \"vadas\").select(\"here\")", "java": "g.V(vid1).outE().as(\"here\").inV().has(\"name\", \"vadas\").select(\"here\")", @@ -34681,6 +36919,7 @@ "canonical": "g.V(vid1).outE(\"knows\").has(\"weight\", 1.0).as(\"here\").inV().has(\"name\", \"josh\").select(\"here\")", "anonymized": "g.V(vid1).outE(string0).has(string1, number0).as(string2).inV().has(string3, string4).select(string2)", "dotnet": "g.V(vid1).OutE(\"knows\").Has(\"weight\", 1.0).As(\"here\").InV().Has(\"name\", \"josh\").Select(\"here\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"knows\").Has(\"weight\", 1.0).As(\"here\").InV().Has(\"name\", \"josh\").Select(\"here\")", "go": "g.V(vid1).OutE(\"knows\").Has(\"weight\", 1.0).As(\"here\").InV().Has(\"name\", \"josh\").Select(\"here\")", "groovy": "g.V(vid1).outE(\"knows\").has(\"weight\", 1.0).as(\"here\").inV().has(\"name\", \"josh\").select(\"here\")", "java": "g.V(vid1).outE(\"knows\").has(\"weight\", 1.0).as(\"here\").inV().has(\"name\", \"josh\").select(\"here\")", @@ -34698,6 +36937,7 @@ "canonical": "g.V(vid1).outE(\"knows\").as(\"here\").has(\"weight\", 1.0).as(\"fake\").inV().has(\"name\", \"josh\").select(\"here\")", "anonymized": "g.V(vid1).outE(string0).as(string1).has(string2, number0).as(string3).inV().has(string4, string5).select(string1)", "dotnet": "g.V(vid1).OutE(\"knows\").As(\"here\").Has(\"weight\", 1.0).As(\"fake\").InV().Has(\"name\", \"josh\").Select(\"here\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"knows\").As(\"here\").Has(\"weight\", 1.0).As(\"fake\").InV().Has(\"name\", \"josh\").Select(\"here\")", "go": "g.V(vid1).OutE(\"knows\").As(\"here\").Has(\"weight\", 1.0).As(\"fake\").InV().Has(\"name\", \"josh\").Select(\"here\")", "groovy": "g.V(vid1).outE(\"knows\").as(\"here\").has(\"weight\", 1.0).as(\"fake\").inV().has(\"name\", \"josh\").select(\"here\")", "java": "g.V(vid1).outE(\"knows\").as(\"here\").has(\"weight\", 1.0).as(\"fake\").inV().has(\"name\", \"josh\").select(\"here\")", @@ -34715,6 +36955,7 @@ "canonical": "g.V().as(\"here\").out().values(\"name\").select(\"here\")", "anonymized": "g.V().as(string0).out().values(string1).select(string0)", "dotnet": "g.V().As(\"here\").Out().Values(\"name\").Select(\"here\")", + "dotnet_parameterize": "g.V().As(\"here\").Out().Values(\"name\").Select(\"here\")", "go": "g.V().As(\"here\").Out().Values(\"name\").Select(\"here\")", "groovy": "g.V().as(\"here\").out().values(\"name\").select(\"here\")", "java": "g.V().as(\"here\").out().values(\"name\").select(\"here\")", @@ -34732,6 +36973,7 @@ "canonical": "g.V().out(\"created\").union(__.as(\"project\").in(\"created\").has(\"name\", \"marko\").select(\"project\"), __.as(\"project\").in(\"created\").in(\"knows\").has(\"name\", \"marko\").select(\"project\")).groupCount().by(\"name\")", "anonymized": "g.V().out(string0).union(__.as(string1).in(string0).has(string2, string3).select(string1), __.as(string1).in(string0).in(string4).has(string2, string3).select(string1)).groupCount().by(string2)", "dotnet": "g.V().Out(\"created\").Union(__.As(\"project\").In(\"created\").Has(\"name\", \"marko\").Select(\"project\"), __.As(\"project\").In(\"created\").In(\"knows\").Has(\"name\", \"marko\").Select(\"project\")).GroupCount().By(\"name\")", + "dotnet_parameterize": "g.V().Out(\"created\").Union(__.As(\"project\").In(\"created\").Has(\"name\", \"marko\").Select(\"project\"), __.As(\"project\").In(\"created\").In(\"knows\").Has(\"name\", \"marko\").Select(\"project\")).GroupCount().By(\"name\")", "go": "g.V().Out(\"created\").Union(gremlingo.T__.As(\"project\").In(\"created\").Has(\"name\", \"marko\").Select(\"project\"), gremlingo.T__.As(\"project\").In(\"created\").In(\"knows\").Has(\"name\", \"marko\").Select(\"project\")).GroupCount().By(\"name\")", "groovy": "g.V().out(\"created\").union(__.as(\"project\").in(\"created\").has(\"name\", \"marko\").select(\"project\"), __.as(\"project\").in(\"created\").in(\"knows\").has(\"name\", \"marko\").select(\"project\")).groupCount().by(\"name\")", "java": "g.V().out(\"created\").union(__.as(\"project\").in(\"created\").has(\"name\", \"marko\").select(\"project\"), __.as(\"project\").in(\"created\").in(\"knows\").has(\"name\", \"marko\").select(\"project\")).groupCount().by(\"name\")", @@ -34749,6 +36991,7 @@ "canonical": "g.V().until(__.out().out()).repeat(__.in().as(\"a\")).select(\"a\").by(__.tail(Scope.local).values(\"name\"))", "anonymized": "g.V().until(__.out().out()).repeat(__.in().as(string0)).select(string0).by(__.tail(Scope.local).values(string1))", "dotnet": "g.V().Until(__.Out().Out()).Repeat(__.In().As(\"a\")).Select(\"a\").By(__.Tail(Scope.Local).Values(\"name\"))", + "dotnet_parameterize": "g.V().Until(__.Out().Out()).Repeat(__.In().As(\"a\")).Select(\"a\").By(__.Tail(Scope.Local).Values(\"name\"))", "go": "g.V().Until(gremlingo.T__.Out().Out()).Repeat(gremlingo.T__.In().As(\"a\")).Select(\"a\").By(gremlingo.T__.Tail(gremlingo.Scope.Local).Values(\"name\"))", "groovy": "g.V().until(__.out().out()).repeat(__.in().as(\"a\")).select(\"a\").by(__.tail(Scope.local).values(\"name\"))", "java": "g.V().until(__.out().out()).repeat(__.in().as(\"a\")).select(\"a\").by(__.tail(Scope.local).values(\"name\"))", @@ -34766,6 +37009,7 @@ "canonical": "g.V().outE().values(\"weight\").groupCount().select(Column.keys).unfold()", "anonymized": "g.V().outE().values(string0).groupCount().select(Column.keys).unfold()", "dotnet": "g.V().OutE().Values(\"weight\").GroupCount().Select(Column.Keys).Unfold()", + "dotnet_parameterize": "g.V().OutE().Values(\"weight\").GroupCount().Select(Column.Keys).Unfold()", "go": "g.V().OutE().Values(\"weight\").GroupCount().Select(gremlingo.Column.Keys).Unfold()", "groovy": "g.V().outE().values(\"weight\").groupCount().select(Column.keys).unfold()", "java": "g.V().outE().values(\"weight\").groupCount().select(Column.keys).unfold()", @@ -34783,6 +37027,7 @@ "canonical": "g.V().hasLabel(\"software\").as(\"name\").as(\"language\").as(\"creators\").select(\"name\", \"language\", \"creators\").by(\"name\").by(\"lang\").by(__.in(\"created\").values(\"name\").fold().order(Scope.local))", "anonymized": "g.V().hasLabel(string0).as(string1).as(string2).as(string3).select(string1, string2, string3).by(string1).by(string4).by(__.in(string5).values(string1).fold().order(Scope.local))", "dotnet": "g.V().HasLabel(\"software\").As(\"name\").As(\"language\").As(\"creators\").Select(\"name\", \"language\", \"creators\").By(\"name\").By(\"lang\").By(__.In(\"created\").Values(\"name\").Fold().Order(Scope.Local))", + "dotnet_parameterize": "g.V().HasLabel(\"software\").As(\"name\").As(\"language\").As(\"creators\").Select(\"name\", \"language\", \"creators\").By(\"name\").By(\"lang\").By(__.In(\"created\").Values(\"name\").Fold().Order(Scope.Local))", "go": "g.V().HasLabel(\"software\").As(\"name\").As(\"language\").As(\"creators\").Select(\"name\", \"language\", \"creators\").By(\"name\").By(\"lang\").By(gremlingo.T__.In(\"created\").Values(\"name\").Fold().Order(gremlingo.Scope.Local))", "groovy": "g.V().hasLabel(\"software\").as(\"name\").as(\"language\").as(\"creators\").select(\"name\", \"language\", \"creators\").by(\"name\").by(\"lang\").by(__.in(\"created\").values(\"name\").fold().order(Scope.local))", "java": "g.V().hasLabel(\"software\").as(\"name\").as(\"language\").as(\"creators\").select(\"name\", \"language\", \"creators\").by(\"name\").by(\"lang\").by(__.in(\"created\").values(\"name\").fold().order(Scope.local))", @@ -34800,6 +37045,7 @@ "canonical": "g.V().outE().values(\"weight\").groupCount().unfold().select(Column.keys).unfold()", "anonymized": "g.V().outE().values(string0).groupCount().unfold().select(Column.keys).unfold()", "dotnet": "g.V().OutE().Values(\"weight\").GroupCount().Unfold().Select(Column.Keys).Unfold()", + "dotnet_parameterize": "g.V().OutE().Values(\"weight\").GroupCount().Unfold().Select(Column.Keys).Unfold()", "go": "g.V().OutE().Values(\"weight\").GroupCount().Unfold().Select(gremlingo.Column.Keys).Unfold()", "groovy": "g.V().outE().values(\"weight\").groupCount().unfold().select(Column.keys).unfold()", "java": "g.V().outE().values(\"weight\").groupCount().unfold().select(Column.keys).unfold()", @@ -34817,6 +37063,7 @@ "canonical": "g.V().outE().values(\"weight\").groupCount().unfold().select(Column.values).unfold()", "anonymized": "g.V().outE().values(string0).groupCount().unfold().select(Column.values).unfold()", "dotnet": "g.V().OutE().Values(\"weight\").GroupCount().Unfold().Select(Column.Values).Unfold()", + "dotnet_parameterize": "g.V().OutE().Values(\"weight\").GroupCount().Unfold().Select(Column.Values).Unfold()", "go": "g.V().OutE().Values(\"weight\").GroupCount().Unfold().Select(gremlingo.Column.Values).Unfold()", "groovy": "g.V().outE().values(\"weight\").groupCount().unfold().select(Column.values).unfold()", "java": "g.V().outE().values(\"weight\").groupCount().unfold().select(Column.values).unfold()", @@ -34834,6 +37081,7 @@ "canonical": "g.V().until(__.out().out()).repeat(__.in().as(\"a\").in().as(\"b\")).select(\"a\", \"b\").by(\"name\")", "anonymized": "g.V().until(__.out().out()).repeat(__.in().as(string0).in().as(string1)).select(string0, string1).by(string2)", "dotnet": "g.V().Until(__.Out().Out()).Repeat(__.In().As(\"a\").In().As(\"b\")).Select(\"a\", \"b\").By(\"name\")", + "dotnet_parameterize": "g.V().Until(__.Out().Out()).Repeat(__.In().As(\"a\").In().As(\"b\")).Select(\"a\", \"b\").By(\"name\")", "go": "g.V().Until(gremlingo.T__.Out().Out()).Repeat(gremlingo.T__.In().As(\"a\").In().As(\"b\")).Select(\"a\", \"b\").By(\"name\")", "groovy": "g.V().until(__.out().out()).repeat(__.in().as(\"a\").in().as(\"b\")).select(\"a\", \"b\").by(\"name\")", "java": "g.V().until(__.out().out()).repeat(__.in().as(\"a\").in().as(\"b\")).select(\"a\", \"b\").by(\"name\")", @@ -34851,6 +37099,7 @@ "canonical": "g.V().outE().values(\"weight\").groupCount().select(Column.values).unfold()", "anonymized": "g.V().outE().values(string0).groupCount().select(Column.values).unfold()", "dotnet": "g.V().OutE().Values(\"weight\").GroupCount().Select(Column.Values).Unfold()", + "dotnet_parameterize": "g.V().OutE().Values(\"weight\").GroupCount().Select(Column.Values).Unfold()", "go": "g.V().OutE().Values(\"weight\").GroupCount().Select(gremlingo.Column.Values).Unfold()", "groovy": "g.V().outE().values(\"weight\").groupCount().select(Column.values).unfold()", "java": "g.V().outE().values(\"weight\").groupCount().select(Column.values).unfold()", @@ -34868,6 +37117,7 @@ "canonical": "g.V().as(\"a\").where(__.out(\"knows\")).select(\"a\")", "anonymized": "g.V().as(string0).where(__.out(string1)).select(string0)", "dotnet": "g.V().As(\"a\").Where(__.Out(\"knows\")).Select(\"a\")", + "dotnet_parameterize": "g.V().As(\"a\").Where(__.Out(\"knows\")).Select(\"a\")", "go": "g.V().As(\"a\").Where(gremlingo.T__.Out(\"knows\")).Select(\"a\")", "groovy": "g.V().as(\"a\").where(__.out(\"knows\")).select(\"a\")", "java": "g.V().as(\"a\").where(__.out(\"knows\")).select(\"a\")", @@ -34885,6 +37135,7 @@ "canonical": "g.V(vid1).as(\"a\").repeat(__.out().as(\"a\")).times(2).select(Pop.first, \"a\")", "anonymized": "g.V(vid1).as(string0).repeat(__.out().as(string0)).times(number0).select(Pop.first, string0)", "dotnet": "g.V(vid1).As(\"a\").Repeat(__.Out().As(\"a\")).Times(2).Select(Pop.First, \"a\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Repeat(__.Out().As(\"a\")).Times(2).Select(Pop.First, \"a\")", "go": "g.V(vid1).As(\"a\").Repeat(gremlingo.T__.Out().As(\"a\")).Times(2).Select(gremlingo.Pop.First, \"a\")", "groovy": "g.V(vid1).as(\"a\").repeat(__.out().as(\"a\")).times(2).select(Pop.first, \"a\")", "java": "g.V(vid1).as(\"a\").repeat(__.out().as(\"a\")).times(2).select(Pop.first, \"a\")", @@ -34902,6 +37153,7 @@ "canonical": "g.V().as(\"a\").out(\"knows\").as(\"b\").local(__.select(\"a\", \"b\").by(\"name\"))", "anonymized": "g.V().as(string0).out(string1).as(string2).local(__.select(string0, string2).by(string3))", "dotnet": "g.V().As(\"a\").Out(\"knows\").As(\"b\").Local(__.Select(\"a\", \"b\").By(\"name\"))", + "dotnet_parameterize": "g.V().As(\"a\").Out(\"knows\").As(\"b\").Local(__.Select(\"a\", \"b\").By(\"name\"))", "go": "g.V().As(\"a\").Out(\"knows\").As(\"b\").Local(gremlingo.T__.Select(\"a\", \"b\").By(\"name\"))", "groovy": "g.V().as(\"a\").out(\"knows\").as(\"b\").local(__.select(\"a\", \"b\").by(\"name\"))", "java": "g.V().as(\"a\").out(\"knows\").as(\"b\").local(__.select(\"a\", \"b\").by(\"name\"))", @@ -34919,6 +37171,7 @@ "canonical": "g.V(vid1).as(\"a\").repeat(__.out().as(\"a\")).times(2).select(Pop.last, \"a\")", "anonymized": "g.V(vid1).as(string0).repeat(__.out().as(string0)).times(number0).select(Pop.last, string0)", "dotnet": "g.V(vid1).As(\"a\").Repeat(__.Out().As(\"a\")).Times(2).Select(Pop.Last, \"a\")", + "dotnet_parameterize": "g.V(vid1).As(\"a\").Repeat(__.Out().As(\"a\")).Times(2).Select(Pop.Last, \"a\")", "go": "g.V(vid1).As(\"a\").Repeat(gremlingo.T__.Out().As(\"a\")).Times(2).Select(gremlingo.Pop.Last, \"a\")", "groovy": "g.V(vid1).as(\"a\").repeat(__.out().as(\"a\")).times(2).select(Pop.last, \"a\")", "java": "g.V(vid1).as(\"a\").repeat(__.out().as(\"a\")).times(2).select(Pop.last, \"a\")", @@ -34936,6 +37189,7 @@ "canonical": "g.V(vid1).outE(\"knows\").as(\"here\").has(\"weight\", 1.0).inV().has(\"name\", \"josh\").select(\"here\")", "anonymized": "g.V(vid1).outE(string0).as(string1).has(string2, number0).inV().has(string3, string4).select(string1)", "dotnet": "g.V(vid1).OutE(\"knows\").As(\"here\").Has(\"weight\", 1.0).InV().Has(\"name\", \"josh\").Select(\"here\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"knows\").As(\"here\").Has(\"weight\", 1.0).InV().Has(\"name\", \"josh\").Select(\"here\")", "go": "g.V(vid1).OutE(\"knows\").As(\"here\").Has(\"weight\", 1.0).InV().Has(\"name\", \"josh\").Select(\"here\")", "groovy": "g.V(vid1).outE(\"knows\").as(\"here\").has(\"weight\", 1.0).inV().has(\"name\", \"josh\").select(\"here\")", "java": "g.V(vid1).outE(\"knows\").as(\"here\").has(\"weight\", 1.0).inV().has(\"name\", \"josh\").select(\"here\")", @@ -34953,6 +37207,7 @@ "canonical": "g.V().as(\"a\").has(\"name\", \"marko\").as(\"b\").as(\"c\").select(\"a\", \"b\", \"c\").by().by(\"name\").by(\"age\")", "anonymized": "g.V().as(string0).has(string1, string2).as(string3).as(string4).select(string0, string3, string4).by().by(string1).by(string5)", "dotnet": "g.V().As(\"a\").Has(\"name\", \"marko\").As(\"b\").As(\"c\").Select(\"a\", \"b\", \"c\").By().By(\"name\").By(\"age\")", + "dotnet_parameterize": "g.V().As(\"a\").Has(\"name\", \"marko\").As(\"b\").As(\"c\").Select(\"a\", \"b\", \"c\").By().By(\"name\").By(\"age\")", "go": "g.V().As(\"a\").Has(\"name\", \"marko\").As(\"b\").As(\"c\").Select(\"a\", \"b\", \"c\").By().By(\"name\").By(\"age\")", "groovy": "g.V().as(\"a\").has(\"name\", \"marko\").as(\"b\").as(\"c\").select(\"a\", \"b\", \"c\").by().by(\"name\").by(\"age\")", "java": "g.V().as(\"a\").has(\"name\", \"marko\").as(\"b\").as(\"c\").select(\"a\", \"b\", \"c\").by().by(\"name\").by(\"age\")", @@ -34970,6 +37225,7 @@ "canonical": "g.V().outE().values(\"weight\").groupCount().select(Column.values).unfold().groupCount().select(Column.values).unfold()", "anonymized": "g.V().outE().values(string0).groupCount().select(Column.values).unfold().groupCount().select(Column.values).unfold()", "dotnet": "g.V().OutE().Values(\"weight\").GroupCount().Select(Column.Values).Unfold().GroupCount().Select(Column.Values).Unfold()", + "dotnet_parameterize": "g.V().OutE().Values(\"weight\").GroupCount().Select(Column.Values).Unfold().GroupCount().Select(Column.Values).Unfold()", "go": "g.V().OutE().Values(\"weight\").GroupCount().Select(gremlingo.Column.Values).Unfold().GroupCount().Select(gremlingo.Column.Values).Unfold()", "groovy": "g.V().outE().values(\"weight\").groupCount().select(Column.values).unfold().groupCount().select(Column.values).unfold()", "java": "g.V().outE().values(\"weight\").groupCount().select(Column.values).unfold().groupCount().select(Column.values).unfold()", @@ -34987,6 +37243,7 @@ "canonical": "g.V().as(\"a\").group(\"m\").by().by(__.bothE().count()).barrier().select(\"m\").select(__.select(\"a\"))", "anonymized": "g.V().as(string0).group(string1).by().by(__.bothE().count()).barrier().select(string1).select(__.select(string0))", "dotnet": "g.V().As(\"a\").Group(\"m\").By().By(__.BothE().Count()).Barrier().Select(\"m\").Select(__.Select(\"a\"))", + "dotnet_parameterize": "g.V().As(\"a\").Group(\"m\").By().By(__.BothE().Count()).Barrier().Select(\"m\").Select(__.Select(\"a\"))", "go": "g.V().As(\"a\").Group(\"m\").By().By(gremlingo.T__.BothE().Count()).Barrier().Select(\"m\").Select(gremlingo.T__.Select(\"a\"))", "groovy": "g.V().as(\"a\").group(\"m\").by().by(__.bothE().count()).barrier().select(\"m\").select(__.select(\"a\"))", "java": "g.V().as(\"a\").group(\"m\").by().by(__.bothE().count()).barrier().select(\"m\").select(__.select(\"a\"))", @@ -35004,6 +37261,7 @@ "canonical": "g.V().as(\"a\").group(\"m\").by().by(__.bothE().count()).barrier().select(\"m\").select(__.select(\"a\")).by(__.math(\"_+_\"))", "anonymized": "g.V().as(string0).group(string1).by().by(__.bothE().count()).barrier().select(string1).select(__.select(string0)).by(__.math(string2))", "dotnet": "g.V().As(\"a\").Group(\"m\").By().By(__.BothE().Count()).Barrier().Select(\"m\").Select(__.Select(\"a\")).By(__.Math(\"_+_\"))", + "dotnet_parameterize": "g.V().As(\"a\").Group(\"m\").By().By(__.BothE().Count()).Barrier().Select(\"m\").Select(__.Select(\"a\")).By(__.Math(\"_+_\"))", "go": "g.V().As(\"a\").Group(\"m\").By().By(gremlingo.T__.BothE().Count()).Barrier().Select(\"m\").Select(gremlingo.T__.Select(\"a\")).By(gremlingo.T__.Math(\"_+_\"))", "groovy": "g.V().as(\"a\").group(\"m\").by().by(__.bothE().count()).barrier().select(\"m\").select(__.select(\"a\")).by(__.math(\"_+_\"))", "java": "g.V().as(\"a\").group(\"m\").by().by(__.bothE().count()).barrier().select(\"m\").select(__.select(\"a\")).by(__.math(\"_+_\"))", @@ -35021,6 +37279,7 @@ "canonical": "g.V().as(\"a\").out(\"knows\").as(\"a\").select(Pop.all, __.constant(\"a\"))", "anonymized": "g.V().as(string0).out(string1).as(string0).select(Pop.all, __.constant(string0))", "dotnet": "g.V().As(\"a\").Out(\"knows\").As(\"a\").Select(Pop.All, __.Constant(\"a\"))", + "dotnet_parameterize": "g.V().As(\"a\").Out(\"knows\").As(\"a\").Select(Pop.All, __.Constant(\"a\"))", "go": "g.V().As(\"a\").Out(\"knows\").As(\"a\").Select(gremlingo.Pop.All, gremlingo.T__.Constant(\"a\"))", "groovy": "g.V().as(\"a\").out(\"knows\").as(\"a\").select(Pop.all, __.constant(\"a\"))", "java": "g.V().as(\"a\").out(\"knows\").as(\"a\").select(Pop.all, __.constant(\"a\"))", @@ -35038,6 +37297,7 @@ "canonical": "g.V().select(\"a\")", "anonymized": "g.V().select(string0)", "dotnet": "g.V().Select(\"a\")", + "dotnet_parameterize": "g.V().Select(\"a\")", "go": "g.V().Select(\"a\")", "groovy": "g.V().select(\"a\")", "java": "g.V().select(\"a\")", @@ -35055,6 +37315,7 @@ "canonical": "g.V().select(\"a\").count()", "anonymized": "g.V().select(string0).count()", "dotnet": "g.V().Select(\"a\").Count()", + "dotnet_parameterize": "g.V().Select(\"a\").Count()", "go": "g.V().Select(\"a\").Count()", "groovy": "g.V().select(\"a\").count()", "java": "g.V().select(\"a\").count()", @@ -35072,6 +37333,7 @@ "canonical": "g.V().select(\"a\", \"b\")", "anonymized": "g.V().select(string0, string1)", "dotnet": "g.V().Select(\"a\", \"b\")", + "dotnet_parameterize": "g.V().Select(\"a\", \"b\")", "go": "g.V().Select(\"a\", \"b\")", "groovy": "g.V().select(\"a\", \"b\")", "java": "g.V().select(\"a\", \"b\")", @@ -35089,6 +37351,7 @@ "canonical": "g.V().valueMap().select(\"a\")", "anonymized": "g.V().valueMap().select(string0)", "dotnet": "g.V().ValueMap().Select(\"a\")", + "dotnet_parameterize": "g.V().ValueMap().Select(\"a\")", "go": "g.V().ValueMap().Select(\"a\")", "groovy": "g.V().valueMap().select(\"a\")", "java": "g.V().valueMap().select(\"a\")", @@ -35106,6 +37369,7 @@ "canonical": "g.V().valueMap().select(\"a\", \"b\")", "anonymized": "g.V().valueMap().select(string0, string1)", "dotnet": "g.V().ValueMap().Select(\"a\", \"b\")", + "dotnet_parameterize": "g.V().ValueMap().Select(\"a\", \"b\")", "go": "g.V().ValueMap().Select(\"a\", \"b\")", "groovy": "g.V().valueMap().select(\"a\", \"b\")", "java": "g.V().valueMap().select(\"a\", \"b\")", @@ -35123,6 +37387,7 @@ "canonical": "g.V().select(Pop.first, \"a\")", "anonymized": "g.V().select(Pop.first, string0)", "dotnet": "g.V().Select(Pop.First, \"a\")", + "dotnet_parameterize": "g.V().Select(Pop.First, \"a\")", "go": "g.V().Select(gremlingo.Pop.First, \"a\")", "groovy": "g.V().select(Pop.first, \"a\")", "java": "g.V().select(Pop.first, \"a\")", @@ -35140,6 +37405,7 @@ "canonical": "g.V().select(Pop.first, \"a\", \"b\")", "anonymized": "g.V().select(Pop.first, string0, string1)", "dotnet": "g.V().Select(Pop.First, \"a\", \"b\")", + "dotnet_parameterize": "g.V().Select(Pop.First, \"a\", \"b\")", "go": "g.V().Select(gremlingo.Pop.First, \"a\", \"b\")", "groovy": "g.V().select(Pop.first, \"a\", \"b\")", "java": "g.V().select(Pop.first, \"a\", \"b\")", @@ -35157,6 +37423,7 @@ "canonical": "g.V().valueMap().select(Pop.first, \"a\")", "anonymized": "g.V().valueMap().select(Pop.first, string0)", "dotnet": "g.V().ValueMap().Select(Pop.First, \"a\")", + "dotnet_parameterize": "g.V().ValueMap().Select(Pop.First, \"a\")", "go": "g.V().ValueMap().Select(gremlingo.Pop.First, \"a\")", "groovy": "g.V().valueMap().select(Pop.first, \"a\")", "java": "g.V().valueMap().select(Pop.first, \"a\")", @@ -35174,6 +37441,7 @@ "canonical": "g.V().valueMap().select(Pop.first, \"a\", \"b\")", "anonymized": "g.V().valueMap().select(Pop.first, string0, string1)", "dotnet": "g.V().ValueMap().Select(Pop.First, \"a\", \"b\")", + "dotnet_parameterize": "g.V().ValueMap().Select(Pop.First, \"a\", \"b\")", "go": "g.V().ValueMap().Select(gremlingo.Pop.First, \"a\", \"b\")", "groovy": "g.V().valueMap().select(Pop.first, \"a\", \"b\")", "java": "g.V().valueMap().select(Pop.first, \"a\", \"b\")", @@ -35191,6 +37459,7 @@ "canonical": "g.V().select(Pop.last, \"a\")", "anonymized": "g.V().select(Pop.last, string0)", "dotnet": "g.V().Select(Pop.Last, \"a\")", + "dotnet_parameterize": "g.V().Select(Pop.Last, \"a\")", "go": "g.V().Select(gremlingo.Pop.Last, \"a\")", "groovy": "g.V().select(Pop.last, \"a\")", "java": "g.V().select(Pop.last, \"a\")", @@ -35208,6 +37477,7 @@ "canonical": "g.V().select(Pop.last, \"a\", \"b\")", "anonymized": "g.V().select(Pop.last, string0, string1)", "dotnet": "g.V().Select(Pop.Last, \"a\", \"b\")", + "dotnet_parameterize": "g.V().Select(Pop.Last, \"a\", \"b\")", "go": "g.V().Select(gremlingo.Pop.Last, \"a\", \"b\")", "groovy": "g.V().select(Pop.last, \"a\", \"b\")", "java": "g.V().select(Pop.last, \"a\", \"b\")", @@ -35225,6 +37495,7 @@ "canonical": "g.V().valueMap().select(Pop.last, \"a\")", "anonymized": "g.V().valueMap().select(Pop.last, string0)", "dotnet": "g.V().ValueMap().Select(Pop.Last, \"a\")", + "dotnet_parameterize": "g.V().ValueMap().Select(Pop.Last, \"a\")", "go": "g.V().ValueMap().Select(gremlingo.Pop.Last, \"a\")", "groovy": "g.V().valueMap().select(Pop.last, \"a\")", "java": "g.V().valueMap().select(Pop.last, \"a\")", @@ -35242,6 +37513,7 @@ "canonical": "g.V().valueMap().select(Pop.last, \"a\", \"b\")", "anonymized": "g.V().valueMap().select(Pop.last, string0, string1)", "dotnet": "g.V().ValueMap().Select(Pop.Last, \"a\", \"b\")", + "dotnet_parameterize": "g.V().ValueMap().Select(Pop.Last, \"a\", \"b\")", "go": "g.V().ValueMap().Select(gremlingo.Pop.Last, \"a\", \"b\")", "groovy": "g.V().valueMap().select(Pop.last, \"a\", \"b\")", "java": "g.V().valueMap().select(Pop.last, \"a\", \"b\")", @@ -35259,6 +37531,7 @@ "canonical": "g.V().select(Pop.all, \"a\")", "anonymized": "g.V().select(Pop.all, string0)", "dotnet": "g.V().Select(Pop.All, \"a\")", + "dotnet_parameterize": "g.V().Select(Pop.All, \"a\")", "go": "g.V().Select(gremlingo.Pop.All, \"a\")", "groovy": "g.V().select(Pop.all, \"a\")", "java": "g.V().select(Pop.all, \"a\")", @@ -35276,6 +37549,7 @@ "canonical": "g.V().select(Pop.all, \"a\", \"b\")", "anonymized": "g.V().select(Pop.all, string0, string1)", "dotnet": "g.V().Select(Pop.All, \"a\", \"b\")", + "dotnet_parameterize": "g.V().Select(Pop.All, \"a\", \"b\")", "go": "g.V().Select(gremlingo.Pop.All, \"a\", \"b\")", "groovy": "g.V().select(Pop.all, \"a\", \"b\")", "java": "g.V().select(Pop.all, \"a\", \"b\")", @@ -35293,6 +37567,7 @@ "canonical": "g.V().valueMap().select(Pop.all, \"a\")", "anonymized": "g.V().valueMap().select(Pop.all, string0)", "dotnet": "g.V().ValueMap().Select(Pop.All, \"a\")", + "dotnet_parameterize": "g.V().ValueMap().Select(Pop.All, \"a\")", "go": "g.V().ValueMap().Select(gremlingo.Pop.All, \"a\")", "groovy": "g.V().valueMap().select(Pop.all, \"a\")", "java": "g.V().valueMap().select(Pop.all, \"a\")", @@ -35310,6 +37585,7 @@ "canonical": "g.V().valueMap().select(Pop.all, \"a\", \"b\")", "anonymized": "g.V().valueMap().select(Pop.all, string0, string1)", "dotnet": "g.V().ValueMap().Select(Pop.All, \"a\", \"b\")", + "dotnet_parameterize": "g.V().ValueMap().Select(Pop.All, \"a\", \"b\")", "go": "g.V().ValueMap().Select(gremlingo.Pop.All, \"a\", \"b\")", "groovy": "g.V().valueMap().select(Pop.all, \"a\", \"b\")", "java": "g.V().valueMap().select(Pop.all, \"a\", \"b\")", @@ -35327,6 +37603,7 @@ "canonical": "g.V().as(\"a\", \"b\").out().as(\"c\").path().select(Column.keys)", "anonymized": "g.V().as(string0, string1).out().as(string2).path().select(Column.keys)", "dotnet": "g.V().As(\"a\", \"b\").Out().As(\"c\").Path().Select(Column.Keys)", + "dotnet_parameterize": "g.V().As(\"a\", \"b\").Out().As(\"c\").Path().Select(Column.Keys)", "go": "g.V().As(\"a\", \"b\").Out().As(\"c\").Path().Select(gremlingo.Column.Keys)", "groovy": "g.V().as(\"a\", \"b\").out().as(\"c\").path().select(Column.keys)", "java": "g.V().as(\"a\", \"b\").out().as(\"c\").path().select(Column.keys)", @@ -35339,6 +37616,7 @@ "canonical": "g.V().as(\"a\", \"b\").out().as(\"c\").path().select(Column.keys)", "anonymized": "g.V().as(string0, string1).out().as(string2).path().select(Column.keys)", "dotnet": "g.V().As(\"a\", \"b\").Out().As(\"c\").Path().Select(Column.Keys)", + "dotnet_parameterize": "g.V().As(\"a\", \"b\").Out().As(\"c\").Path().Select(Column.Keys)", "go": "g.V().As(\"a\", \"b\").Out().As(\"c\").Path().Select(gremlingo.Column.Keys)", "groovy": "g.V().as(\"a\", \"b\").out().as(\"c\").path().select(Column.keys)", "java": "g.V().as(\"a\", \"b\").out().as(\"c\").path().select(Column.keys)", @@ -35356,6 +37634,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").barrier().as(\"a\").out(\"knows\").select(\"a\")", "anonymized": "g.V().has(string0, string1, string2).barrier().as(string3).out(string4).select(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Barrier().As(\"a\").Out(\"knows\").Select(\"a\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Barrier().As(\"a\").Out(\"knows\").Select(\"a\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Barrier().As(\"a\").Out(\"knows\").Select(\"a\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").barrier().as(\"a\").out(\"knows\").select(\"a\")", "java": "g.V().has(\"person\", \"name\", \"marko\").barrier().as(\"a\").out(\"knows\").select(\"a\")", @@ -35373,6 +37652,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").elementMap(\"name\").as(\"a\").union(__.identity(), __.identity()).select(\"a\").select(\"name\")", "anonymized": "g.V().has(string0, string1, string2).elementMap(string1).as(string3).union(__.identity(), __.identity()).select(string3).select(string1)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").ElementMap(\"name\").As(\"a\").Union(__.Identity(), __.Identity()).Select(\"a\").Select(\"name\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").ElementMap(\"name\").As(\"a\").Union(__.Identity(), __.Identity()).Select(\"a\").Select(\"name\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").ElementMap(\"name\").As(\"a\").Union(gremlingo.T__.Identity(), gremlingo.T__.Identity()).Select(\"a\").Select(\"name\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").elementMap(\"name\").as(\"a\").union(__.identity(), __.identity()).select(\"a\").select(\"name\")", "java": "g.V().has(\"person\", \"name\", \"marko\").elementMap(\"name\").as(\"a\").union(__.identity(), __.identity()).select(\"a\").select(\"name\")", @@ -35390,6 +37670,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").count().as(\"a\").union(__.identity(), __.identity()).select(\"a\")", "anonymized": "g.V().has(string0, string1, string2).count().as(string3).union(__.identity(), __.identity()).select(string3)", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Count().As(\"a\").Union(__.Identity(), __.Identity()).Select(\"a\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Count().As(\"a\").Union(__.Identity(), __.Identity()).Select(\"a\")", "go": "g.V().Has(\"person\", \"name\", \"marko\").Count().As(\"a\").Union(gremlingo.T__.Identity(), gremlingo.T__.Identity()).Select(\"a\")", "groovy": "g.V().has(\"person\", \"name\", \"marko\").count().as(\"a\").union(__.identity(), __.identity()).select(\"a\")", "java": "g.V().has(\"person\", \"name\", \"marko\").count().as(\"a\").union(__.identity(), __.identity()).select(\"a\")", @@ -35407,6 +37688,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").path().as(\"a\").union(__.identity(), __.identity()).select(\"a\").unfold()", "anonymized": "g.V().has(string0, string1, string2).path().as(string3).union(__.identity(), __.identity()).select(string3).unfold()", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Path().As(\"a\").Union(__.Identity(), __.Identity()).Select(\"a\").Unfold()", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Path().As(\"a\").Union(__.Identity(), __.Identity()).Select(\"a\").Unfold()", "go": "g.V().Has(\"person\", \"name\", \"marko\").Path().As(\"a\").Union(gremlingo.T__.Identity(), gremlingo.T__.Identity()).Select(\"a\").Unfold()", "groovy": "g.V().has(\"person\", \"name\", \"marko\").path().as(\"a\").union(__.identity(), __.identity()).select(\"a\").unfold()", "java": "g.V().has(\"person\", \"name\", \"marko\").path().as(\"a\").union(__.identity(), __.identity()).select(\"a\").unfold()", @@ -35424,6 +37706,7 @@ "canonical": "g.E(eid11).properties(\"weight\").as(\"a\").select(\"a\").by(T.key)", "anonymized": "g.E(eid11).properties(string0).as(string1).select(string1).by(T.key)", "dotnet": "g.E(eid11).Properties(\"weight\").As(\"a\").Select(\"a\").By(T.Key)", + "dotnet_parameterize": "g.E(eid11).Properties(\"weight\").As(\"a\").Select(\"a\").By(T.Key)", "go": "g.E(eid11).Properties(\"weight\").As(\"a\").Select(\"a\").By(gremlingo.T.Key)", "groovy": "g.E(eid11).properties(\"weight\").as(\"a\").select(\"a\").by(T.key)", "java": "g.E(eid11).properties(\"weight\").as(\"a\").select(\"a\").by(T.key)", @@ -35441,6 +37724,7 @@ "canonical": "g.E(eid11).properties(\"weight\").as(\"a\").select(\"a\").by(T.value)", "anonymized": "g.E(eid11).properties(string0).as(string1).select(string1).by(T.value)", "dotnet": "g.E(eid11).Properties(\"weight\").As(\"a\").Select(\"a\").By(T.Value)", + "dotnet_parameterize": "g.E(eid11).Properties(\"weight\").As(\"a\").Select(\"a\").By(T.Value)", "go": "g.E(eid11).Properties(\"weight\").As(\"a\").Select(\"a\").By(gremlingo.T.Value)", "groovy": "g.E(eid11).properties(\"weight\").as(\"a\").select(\"a\").by(T.value)", "java": "g.E(eid11).properties(\"weight\").as(\"a\").select(\"a\").by(T.value)", @@ -35458,6 +37742,7 @@ "canonical": "g.V().as(\"a\").select(\"a\").by(\"age\")", "anonymized": "g.V().as(string0).select(string0).by(string1)", "dotnet": "g.V().As(\"a\").Select(\"a\").By(\"age\")", + "dotnet_parameterize": "g.V().As(\"a\").Select(\"a\").By(\"age\")", "go": "g.V().As(\"a\").Select(\"a\").By(\"age\")", "groovy": "g.V().as(\"a\").select(\"a\").by(\"age\")", "java": "g.V().as(\"a\").select(\"a\").by(\"age\")", @@ -35475,6 +37760,7 @@ "canonical": "g.V().as(\"a\", \"n\").select(\"a\", \"n\").by(\"age\").by(\"name\")", "anonymized": "g.V().as(string0, string1).select(string0, string1).by(string2).by(string3)", "dotnet": "g.V().As(\"a\", \"n\").Select(\"a\", \"n\").By(\"age\").By(\"name\")", + "dotnet_parameterize": "g.V().As(\"a\", \"n\").Select(\"a\", \"n\").By(\"age\").By(\"name\")", "go": "g.V().As(\"a\", \"n\").Select(\"a\", \"n\").By(\"age\").By(\"name\")", "groovy": "g.V().as(\"a\", \"n\").select(\"a\", \"n\").by(\"age\").by(\"name\")", "java": "g.V().as(\"a\", \"n\").select(\"a\", \"n\").by(\"age\").by(\"name\")", @@ -35492,6 +37778,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().as(\"a\").select(\"a\").by(\"age\")", "anonymized": "g.withStrategies(ProductiveByStrategy).V().as(string0).select(string0).by(string1)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().As(\"a\").Select(\"a\").By(\"age\")", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().As(\"a\").Select(\"a\").By(\"age\")", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().As(\"a\").Select(\"a\").By(\"age\")", "groovy": "g.withStrategies(ProductiveByStrategy).V().as(\"a\").select(\"a\").by(\"age\")", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().as(\"a\").select(\"a\").by(\"age\")", @@ -35509,6 +37796,7 @@ "canonical": "g.withSideEffect(\"k\", null).inject(\"x\").select(\"k\")", "anonymized": "g.withSideEffect(string0, object0).inject(string1).select(string0)", "dotnet": "g.WithSideEffect(\"k\", null).Inject(\"x\").Select(\"k\")", + "dotnet_parameterize": "g.WithSideEffect(\"k\", null).Inject(\"x\").Select(\"k\")", "go": "g.WithSideEffect(\"k\", nil).Inject(\"x\").Select(\"k\")", "groovy": "g.withSideEffect(\"k\", null).inject(\"x\").select(\"k\")", "java": "g.withSideEffect(\"k\", null).inject(\"x\").select(\"k\")", @@ -35526,6 +37814,7 @@ "canonical": "g.addV(\"A\").property(\"name\", \"a1\").as(\"a1\").addV(\"B\").property(\"name\", \"b1\").as(\"b1\").addE(\"ab\").from(\"a1\").to(\"b1\")", "anonymized": "g.addV(string0).property(string1, string2).as(string2).addV(string3).property(string1, string4).as(string4).addE(string5).from(string2).to(string4)", "dotnet": "g.AddV((string) \"A\").Property(\"name\", \"a1\").As(\"a1\").AddV((string) \"B\").Property(\"name\", \"b1\").As(\"b1\").AddE((string) \"ab\").From(\"a1\").To(\"b1\")", + "dotnet_parameterize": "g.AddV((string) \"A\").Property(\"name\", \"a1\").As(\"a1\").AddV((string) \"B\").Property(\"name\", \"b1\").As(\"b1\").AddE((string) \"ab\").From(\"a1\").To(\"b1\")", "go": "g.AddV(\"A\").Property(\"name\", \"a1\").As(\"a1\").AddV(\"B\").Property(\"name\", \"b1\").As(\"b1\").AddE(\"ab\").From(\"a1\").To(\"b1\")", "groovy": "g.addV(\"A\").property(\"name\", \"a1\").as(\"a1\").addV(\"B\").property(\"name\", \"b1\").as(\"b1\").addE(\"ab\").from(\"a1\").to(\"b1\")", "java": "g.addV(\"A\").property(\"name\", \"a1\").as(\"a1\").addV(\"B\").property(\"name\", \"b1\").as(\"b1\").addE(\"ab\").from(\"a1\").to(\"b1\")", @@ -35538,6 +37827,7 @@ "canonical": "g.V().as(\"a\").out().as(\"a\").in().as(\"a\").select(Pop.all, \"a\", \"a\", \"a\").by(__.unfold().values('name').fold())", "anonymized": "g.V().as(string0).out().as(string0).in().as(string0).select(Pop.all, string0, string0, string0).by(__.unfold().values(string1).fold())", "dotnet": "g.V().As(\"a\").Out().As(\"a\").In().As(\"a\").Select(Pop.All, \"a\", \"a\", \"a\").By(__.Unfold().Values(\"name\").Fold())", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"a\").In().As(\"a\").Select(Pop.All, \"a\", \"a\", \"a\").By(__.Unfold().Values(\"name\").Fold())", "go": "g.V().As(\"a\").Out().As(\"a\").In().As(\"a\").Select(gremlingo.Pop.All, \"a\", \"a\", \"a\").By(gremlingo.T__.Unfold().Values(\"name\").Fold())", "groovy": "g.V().as(\"a\").out().as(\"a\").in().as(\"a\").select(Pop.all, \"a\", \"a\", \"a\").by(__.unfold().values('name').fold())", "java": "g.V().as(\"a\").out().as(\"a\").in().as(\"a\").select(Pop.all, \"a\", \"a\", \"a\").by(__.unfold().values(\"name\").fold())", @@ -35555,6 +37845,7 @@ "canonical": "g.withoutStrategies(LazyBarrierStrategy).V().as(\"label\").local(__.aggregate(\"x\")).select(\"x\").select(\"label\")", "anonymized": "g.withoutStrategies(LazyBarrierStrategy).V().as(string0).local(__.aggregate(string1)).select(string1).select(string0)", "dotnet": "g.WithoutStrategies(typeof(LazyBarrierStrategy)).V().As(\"label\").Local(__.Aggregate(\"x\")).Select(\"x\").Select(\"label\")", + "dotnet_parameterize": "g.WithoutStrategies(typeof(LazyBarrierStrategy)).V().As(\"label\").Local(__.Aggregate(\"x\")).Select(\"x\").Select(\"label\")", "go": "g.WithoutStrategies(gremlingo.LazyBarrierStrategy()).V().As(\"label\").Local(gremlingo.T__.Aggregate(\"x\")).Select(\"x\").Select(\"label\")", "groovy": "g.withoutStrategies(LazyBarrierStrategy).V().as(\"label\").local(__.aggregate(\"x\")).select(\"x\").select(\"label\")", "java": "g.withoutStrategies(LazyBarrierStrategy.class).V().as(\"label\").local(__.aggregate(\"x\")).select(\"x\").select(\"label\")", @@ -35572,6 +37863,7 @@ "canonical": "g.V().values(\"name\").as(\"a\").select(Pop.first, \"a\")", "anonymized": "g.V().values(string0).as(string1).select(Pop.first, string1)", "dotnet": "g.V().Values(\"name\").As(\"a\").Select(Pop.First, \"a\")", + "dotnet_parameterize": "g.V().Values(\"name\").As(\"a\").Select(Pop.First, \"a\")", "go": "g.V().Values(\"name\").As(\"a\").Select(gremlingo.Pop.First, \"a\")", "groovy": "g.V().values(\"name\").as(\"a\").select(Pop.first, \"a\")", "java": "g.V().values(\"name\").as(\"a\").select(Pop.first, \"a\")", @@ -35589,6 +37881,7 @@ "canonical": "g.V().values(\"name\").as(\"a\").select(Pop.last, \"a\")", "anonymized": "g.V().values(string0).as(string1).select(Pop.last, string1)", "dotnet": "g.V().Values(\"name\").As(\"a\").Select(Pop.Last, \"a\")", + "dotnet_parameterize": "g.V().Values(\"name\").As(\"a\").Select(Pop.Last, \"a\")", "go": "g.V().Values(\"name\").As(\"a\").Select(gremlingo.Pop.Last, \"a\")", "groovy": "g.V().values(\"name\").as(\"a\").select(Pop.last, \"a\")", "java": "g.V().values(\"name\").as(\"a\").select(Pop.last, \"a\")", @@ -35606,6 +37899,7 @@ "canonical": "g.V().values(\"name\").as(\"a\").select(Pop.mixed, \"a\")", "anonymized": "g.V().values(string0).as(string1).select(Pop.mixed, string1)", "dotnet": "g.V().Values(\"name\").As(\"a\").Select(Pop.Mixed, \"a\")", + "dotnet_parameterize": "g.V().Values(\"name\").As(\"a\").Select(Pop.Mixed, \"a\")", "go": "g.V().Values(\"name\").As(\"a\").Select(gremlingo.Pop.Mixed, \"a\")", "groovy": "g.V().values(\"name\").as(\"a\").select(Pop.mixed, \"a\")", "java": "g.V().values(\"name\").as(\"a\").select(Pop.mixed, \"a\")", @@ -35623,6 +37917,7 @@ "canonical": "g.V().values(\"name\").as(\"a\").select(Pop.all, \"a\")", "anonymized": "g.V().values(string0).as(string1).select(Pop.all, string1)", "dotnet": "g.V().Values(\"name\").As(\"a\").Select(Pop.All, \"a\")", + "dotnet_parameterize": "g.V().Values(\"name\").As(\"a\").Select(Pop.All, \"a\")", "go": "g.V().Values(\"name\").As(\"a\").Select(gremlingo.Pop.All, \"a\")", "groovy": "g.V().values(\"name\").as(\"a\").select(Pop.all, \"a\")", "java": "g.V().values(\"name\").as(\"a\").select(Pop.all, \"a\")", @@ -35640,6 +37935,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").length().as(\"a\").select(\"a\")", "anonymized": "g.V().hasLabel(string0).values(string1).as(string2).concat(string3).as(string2).length().as(string2).select(string2)", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Length().As(\"a\").Select(\"a\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Length().As(\"a\").Select(\"a\")", "go": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Length().As(\"a\").Select(\"a\")", "groovy": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").length().as(\"a\").select(\"a\")", "java": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").length().as(\"a\").select(\"a\")", @@ -35657,6 +37953,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").length().as(\"a\").select(Pop.first, \"a\")", "anonymized": "g.V().hasLabel(string0).values(string1).as(string2).concat(string3).as(string2).length().as(string2).select(Pop.first, string2)", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Length().As(\"a\").Select(Pop.First, \"a\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Length().As(\"a\").Select(Pop.First, \"a\")", "go": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Length().As(\"a\").Select(gremlingo.Pop.First, \"a\")", "groovy": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").length().as(\"a\").select(Pop.first, \"a\")", "java": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").length().as(\"a\").select(Pop.first, \"a\")", @@ -35674,6 +37971,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").length().as(\"a\").select(Pop.last, \"a\")", "anonymized": "g.V().hasLabel(string0).values(string1).as(string2).concat(string3).as(string2).length().as(string2).select(Pop.last, string2)", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Length().As(\"a\").Select(Pop.Last, \"a\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Length().As(\"a\").Select(Pop.Last, \"a\")", "go": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Length().As(\"a\").Select(gremlingo.Pop.Last, \"a\")", "groovy": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").length().as(\"a\").select(Pop.last, \"a\")", "java": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").length().as(\"a\").select(Pop.last, \"a\")", @@ -35691,6 +37989,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").concat(\"YZ\").as(\"a\").select(Pop.mixed, \"a\")", "anonymized": "g.V().hasLabel(string0).values(string1).as(string2).concat(string3).as(string2).concat(string4).as(string2).select(Pop.mixed, string2)", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Concat(\"YZ\").As(\"a\").Select(Pop.Mixed, \"a\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Concat(\"YZ\").As(\"a\").Select(Pop.Mixed, \"a\")", "go": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Concat(\"YZ\").As(\"a\").Select(gremlingo.Pop.Mixed, \"a\")", "groovy": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").concat(\"YZ\").as(\"a\").select(Pop.mixed, \"a\")", "java": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").concat(\"YZ\").as(\"a\").select(Pop.mixed, \"a\")", @@ -35708,6 +38007,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").concat(\"YZ\").as(\"a\").select(Pop.all, \"a\")", "anonymized": "g.V().hasLabel(string0).values(string1).as(string2).concat(string3).as(string2).concat(string4).as(string2).select(Pop.all, string2)", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Concat(\"YZ\").As(\"a\").Select(Pop.All, \"a\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Concat(\"YZ\").As(\"a\").Select(Pop.All, \"a\")", "go": "g.V().HasLabel(\"person\").Values(\"name\").As(\"a\").Concat(\"X\").As(\"a\").Concat(\"YZ\").As(\"a\").Select(gremlingo.Pop.All, \"a\")", "groovy": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").concat(\"YZ\").as(\"a\").select(Pop.all, \"a\")", "java": "g.V().hasLabel(\"person\").values(\"name\").as(\"a\").concat(\"X\").as(\"a\").concat(\"YZ\").as(\"a\").select(Pop.all, \"a\")", @@ -35725,6 +38025,7 @@ "canonical": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.unfold().values(\"name\").fold())", "anonymized": "g.V().as(string0).out().as(string0).out().as(string0).select(Pop.mixed, string0).by(__.unfold().values(string1).fold())", "dotnet": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(Pop.Mixed, \"a\").By(__.Unfold().Values(\"name\").Fold())", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(Pop.Mixed, \"a\").By(__.Unfold().Values(\"name\").Fold())", "go": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(gremlingo.Pop.Mixed, \"a\").By(gremlingo.T__.Unfold().Values(\"name\").Fold())", "groovy": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.unfold().values(\"name\").fold())", "java": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.mixed, \"a\").by(__.unfold().values(\"name\").fold())", @@ -35742,6 +38043,7 @@ "canonical": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.all, \"a\").by(__.unfold().values(\"name\").fold())", "anonymized": "g.V().as(string0).out().as(string0).out().as(string0).select(Pop.all, string0).by(__.unfold().values(string1).fold())", "dotnet": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(Pop.All, \"a\").By(__.Unfold().Values(\"name\").Fold())", + "dotnet_parameterize": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(Pop.All, \"a\").By(__.Unfold().Values(\"name\").Fold())", "go": "g.V().As(\"a\").Out().As(\"a\").Out().As(\"a\").Select(gremlingo.Pop.All, \"a\").By(gremlingo.T__.Unfold().Values(\"name\").Fold())", "groovy": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.all, \"a\").by(__.unfold().values(\"name\").fold())", "java": "g.V().as(\"a\").out().as(\"a\").out().as(\"a\").select(Pop.all, \"a\").by(__.unfold().values(\"name\").fold())", @@ -35759,6 +38061,7 @@ "canonical": "g.V().shortestPath()", "anonymized": "g.V().shortestPath()", "dotnet": "g.V().ShortestPath()", + "dotnet_parameterize": "g.V().ShortestPath()", "go": "g.V().ShortestPath()", "groovy": "g.V().shortestPath()", "java": "g.V().shortestPath()", @@ -35776,6 +38079,7 @@ "canonical": "g.V().both().dedup().shortestPath()", "anonymized": "g.V().both().dedup().shortestPath()", "dotnet": "g.V().Both().Dedup().ShortestPath()", + "dotnet_parameterize": "g.V().Both().Dedup().ShortestPath()", "go": "g.V().Both().Dedup().ShortestPath()", "groovy": "g.V().both().dedup().shortestPath()", "java": "g.V().both().dedup().shortestPath()", @@ -35793,6 +38097,7 @@ "canonical": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.includeEdges\")", "anonymized": "g.V().shortestPath().with(string0)", "dotnet": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.includeEdges\")", + "dotnet_parameterize": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.includeEdges\")", "go": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.includeEdges\")", "groovy": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.includeEdges\")", "java": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.includeEdges\")", @@ -35810,6 +38115,7 @@ "canonical": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.edges\", Direction.IN)", "anonymized": "g.V().shortestPath().with(string0, Direction.IN)", "dotnet": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.edges\", Direction.In)", + "dotnet_parameterize": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.edges\", Direction.In)", "go": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.edges\", gremlingo.Direction.In)", "groovy": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.edges\", Direction.IN)", "java": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.edges\", Direction.IN)", @@ -35827,6 +38133,7 @@ "canonical": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.edges\", __.outE())", "anonymized": "g.V().shortestPath().with(string0, __.outE())", "dotnet": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.edges\", __.OutE())", + "dotnet_parameterize": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.edges\", __.OutE())", "go": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.edges\", gremlingo.T__.OutE())", "groovy": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.edges\", __.outE())", "java": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.edges\", __.outE())", @@ -35844,6 +38151,7 @@ "canonical": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.includeEdges\").with(\"~tinkerpop.shortestPath.edges\", __.outE())", "anonymized": "g.V().shortestPath().with(string0).with(string1, __.outE())", "dotnet": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.includeEdges\").With(\"~tinkerpop.shortestPath.edges\", __.OutE())", + "dotnet_parameterize": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.includeEdges\").With(\"~tinkerpop.shortestPath.edges\", __.OutE())", "go": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.includeEdges\").With(\"~tinkerpop.shortestPath.edges\", gremlingo.T__.OutE())", "groovy": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.includeEdges\").with(\"~tinkerpop.shortestPath.edges\", __.outE())", "java": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.includeEdges\").with(\"~tinkerpop.shortestPath.edges\", __.outE())", @@ -35861,6 +38169,7 @@ "canonical": "g.V().has(\"name\", \"marko\").shortestPath()", "anonymized": "g.V().has(string0, string1).shortestPath()", "dotnet": "g.V().Has(\"name\", \"marko\").ShortestPath()", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").ShortestPath()", "go": "g.V().Has(\"name\", \"marko\").ShortestPath()", "groovy": "g.V().has(\"name\", \"marko\").shortestPath()", "java": "g.V().has(\"name\", \"marko\").shortestPath()", @@ -35878,6 +38187,7 @@ "canonical": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.target\", __.has(\"name\", \"marko\"))", "anonymized": "g.V().shortestPath().with(string0, __.has(string1, string2))", "dotnet": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.target\", __.Has(\"name\", \"marko\"))", + "dotnet_parameterize": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.target\", __.Has(\"name\", \"marko\"))", "go": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.target\", gremlingo.T__.Has(\"name\", \"marko\"))", "groovy": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.target\", __.has(\"name\", \"marko\"))", "java": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.target\", __.has(\"name\", \"marko\"))", @@ -35895,6 +38205,7 @@ "canonical": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.target\", __.values(\"name\").is(\"marko\"))", "anonymized": "g.V().shortestPath().with(string0, __.values(string1).is(string2))", "dotnet": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.target\", __.Values(\"name\").Is(\"marko\"))", + "dotnet_parameterize": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.target\", __.Values(\"name\").Is(\"marko\"))", "go": "g.V().ShortestPath().With(\"~tinkerpop.shortestPath.target\", gremlingo.T__.Values(\"name\").Is(\"marko\"))", "groovy": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.target\", __.values(\"name\").is(\"marko\"))", "java": "g.V().shortestPath().with(\"~tinkerpop.shortestPath.target\", __.values(\"name\").is(\"marko\"))", @@ -35912,6 +38223,7 @@ "canonical": "g.V().has(\"name\", \"marko\").shortestPath().with(\"~tinkerpop.shortestPath.target\", __.hasLabel(\"software\"))", "anonymized": "g.V().has(string0, string1).shortestPath().with(string2, __.hasLabel(string3))", "dotnet": "g.V().Has(\"name\", \"marko\").ShortestPath().With(\"~tinkerpop.shortestPath.target\", __.HasLabel(\"software\"))", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").ShortestPath().With(\"~tinkerpop.shortestPath.target\", __.HasLabel(\"software\"))", "go": "g.V().Has(\"name\", \"marko\").ShortestPath().With(\"~tinkerpop.shortestPath.target\", gremlingo.T__.HasLabel(\"software\"))", "groovy": "g.V().has(\"name\", \"marko\").shortestPath().with(\"~tinkerpop.shortestPath.target\", __.hasLabel(\"software\"))", "java": "g.V().has(\"name\", \"marko\").shortestPath().with(\"~tinkerpop.shortestPath.target\", __.hasLabel(\"software\"))", @@ -35929,6 +38241,7 @@ "canonical": "g.V().has(\"name\", \"marko\").shortestPath().with(\"~tinkerpop.shortestPath.target\", __.has(\"name\", \"josh\")).with(\"~tinkerpop.shortestPath.distance\", \"weight\")", "anonymized": "g.V().has(string0, string1).shortestPath().with(string2, __.has(string0, string3)).with(string4, string5)", "dotnet": "g.V().Has(\"name\", \"marko\").ShortestPath().With(\"~tinkerpop.shortestPath.target\", __.Has(\"name\", \"josh\")).With(\"~tinkerpop.shortestPath.distance\", \"weight\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").ShortestPath().With(\"~tinkerpop.shortestPath.target\", __.Has(\"name\", \"josh\")).With(\"~tinkerpop.shortestPath.distance\", \"weight\")", "go": "g.V().Has(\"name\", \"marko\").ShortestPath().With(\"~tinkerpop.shortestPath.target\", gremlingo.T__.Has(\"name\", \"josh\")).With(\"~tinkerpop.shortestPath.distance\", \"weight\")", "groovy": "g.V().has(\"name\", \"marko\").shortestPath().with(\"~tinkerpop.shortestPath.target\", __.has(\"name\", \"josh\")).with(\"~tinkerpop.shortestPath.distance\", \"weight\")", "java": "g.V().has(\"name\", \"marko\").shortestPath().with(\"~tinkerpop.shortestPath.target\", __.has(\"name\", \"josh\")).with(\"~tinkerpop.shortestPath.distance\", \"weight\")", @@ -35946,6 +38259,7 @@ "canonical": "g.V().has(\"name\", \"daniel\").shortestPath().with(\"~tinkerpop.shortestPath.target\", __.has(\"name\", \"stephen\")).with(\"~tinkerpop.shortestPath.edges\", __.bothE(\"uses\"))", "anonymized": "g.V().has(string0, string1).shortestPath().with(string2, __.has(string0, string3)).with(string4, __.bothE(string5))", "dotnet": "g.V().Has(\"name\", \"daniel\").ShortestPath().With(\"~tinkerpop.shortestPath.target\", __.Has(\"name\", \"stephen\")).With(\"~tinkerpop.shortestPath.edges\", __.BothE(\"uses\"))", + "dotnet_parameterize": "g.V().Has(\"name\", \"daniel\").ShortestPath().With(\"~tinkerpop.shortestPath.target\", __.Has(\"name\", \"stephen\")).With(\"~tinkerpop.shortestPath.edges\", __.BothE(\"uses\"))", "go": "g.V().Has(\"name\", \"daniel\").ShortestPath().With(\"~tinkerpop.shortestPath.target\", gremlingo.T__.Has(\"name\", \"stephen\")).With(\"~tinkerpop.shortestPath.edges\", gremlingo.T__.BothE(\"uses\"))", "groovy": "g.V().has(\"name\", \"daniel\").shortestPath().with(\"~tinkerpop.shortestPath.target\", __.has(\"name\", \"stephen\")).with(\"~tinkerpop.shortestPath.edges\", __.bothE(\"uses\"))", "java": "g.V().has(\"name\", \"daniel\").shortestPath().with(\"~tinkerpop.shortestPath.target\", __.has(\"name\", \"stephen\")).with(\"~tinkerpop.shortestPath.edges\", __.bothE(\"uses\"))", @@ -35963,6 +38277,7 @@ "canonical": "g.V().has(\"song\", \"name\", \"MIGHT AS WELL\").shortestPath().with(\"~tinkerpop.shortestPath.target\", __.has(\"song\", \"name\", \"MAYBE YOU KNOW HOW I FEEL\")).with(\"~tinkerpop.shortestPath.edges\", __.outE(\"followedBy\")).with(\"~tinkerpop.shortestPath.distance\", \"weight\")", "anonymized": "g.V().has(string0, string1, string2).shortestPath().with(string3, __.has(string0, string1, string4)).with(string5, __.outE(string6)).with(string7, string8)", "dotnet": "g.V().Has(\"song\", \"name\", \"MIGHT AS WELL\").ShortestPath().With(\"~tinkerpop.shortestPath.target\", __.Has(\"song\", \"name\", \"MAYBE YOU KNOW HOW I FEEL\")).With(\"~tinkerpop.shortestPath.edges\", __.OutE(\"followedBy\")).With(\"~tinkerpop.shortestPath.distance\", \"weight\")", + "dotnet_parameterize": "g.V().Has(\"song\", \"name\", \"MIGHT AS WELL\").ShortestPath().With(\"~tinkerpop.shortestPath.target\", __.Has(\"song\", \"name\", \"MAYBE YOU KNOW HOW I FEEL\")).With(\"~tinkerpop.shortestPath.edges\", __.OutE(\"followedBy\")).With(\"~tinkerpop.shortestPath.distance\", \"weight\")", "go": "g.V().Has(\"song\", \"name\", \"MIGHT AS WELL\").ShortestPath().With(\"~tinkerpop.shortestPath.target\", gremlingo.T__.Has(\"song\", \"name\", \"MAYBE YOU KNOW HOW I FEEL\")).With(\"~tinkerpop.shortestPath.edges\", gremlingo.T__.OutE(\"followedBy\")).With(\"~tinkerpop.shortestPath.distance\", \"weight\")", "groovy": "g.V().has(\"song\", \"name\", \"MIGHT AS WELL\").shortestPath().with(\"~tinkerpop.shortestPath.target\", __.has(\"song\", \"name\", \"MAYBE YOU KNOW HOW I FEEL\")).with(\"~tinkerpop.shortestPath.edges\", __.outE(\"followedBy\")).with(\"~tinkerpop.shortestPath.distance\", \"weight\")", "java": "g.V().has(\"song\", \"name\", \"MIGHT AS WELL\").shortestPath().with(\"~tinkerpop.shortestPath.target\", __.has(\"song\", \"name\", \"MAYBE YOU KNOW HOW I FEEL\")).with(\"~tinkerpop.shortestPath.edges\", __.outE(\"followedBy\")).with(\"~tinkerpop.shortestPath.distance\", \"weight\")", @@ -35980,6 +38295,7 @@ "canonical": "g.V().has(\"name\", \"marko\").shortestPath().with(\"~tinkerpop.shortestPath.maxDistance\", 1)", "anonymized": "g.V().has(string0, string1).shortestPath().with(string2, number0)", "dotnet": "g.V().Has(\"name\", \"marko\").ShortestPath().With(\"~tinkerpop.shortestPath.maxDistance\", 1)", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").ShortestPath().With(\"~tinkerpop.shortestPath.maxDistance\", 1)", "go": "g.V().Has(\"name\", \"marko\").ShortestPath().With(\"~tinkerpop.shortestPath.maxDistance\", 1)", "groovy": "g.V().has(\"name\", \"marko\").shortestPath().with(\"~tinkerpop.shortestPath.maxDistance\", 1)", "java": "g.V().has(\"name\", \"marko\").shortestPath().with(\"~tinkerpop.shortestPath.maxDistance\", 1)", @@ -35997,6 +38313,7 @@ "canonical": "g.V().has(\"name\", \"vadas\").shortestPath().with(\"~tinkerpop.shortestPath.distance\", \"weight\").with(\"~tinkerpop.shortestPath.maxDistance\", 1.3)", "anonymized": "g.V().has(string0, string1).shortestPath().with(string2, string3).with(string4, number0)", "dotnet": "g.V().Has(\"name\", \"vadas\").ShortestPath().With(\"~tinkerpop.shortestPath.distance\", \"weight\").With(\"~tinkerpop.shortestPath.maxDistance\", 1.3)", + "dotnet_parameterize": "g.V().Has(\"name\", \"vadas\").ShortestPath().With(\"~tinkerpop.shortestPath.distance\", \"weight\").With(\"~tinkerpop.shortestPath.maxDistance\", 1.3)", "go": "g.V().Has(\"name\", \"vadas\").ShortestPath().With(\"~tinkerpop.shortestPath.distance\", \"weight\").With(\"~tinkerpop.shortestPath.maxDistance\", 1.3)", "groovy": "g.V().has(\"name\", \"vadas\").shortestPath().with(\"~tinkerpop.shortestPath.distance\", \"weight\").with(\"~tinkerpop.shortestPath.maxDistance\", 1.3)", "java": "g.V().has(\"name\", \"vadas\").shortestPath().with(\"~tinkerpop.shortestPath.distance\", \"weight\").with(\"~tinkerpop.shortestPath.maxDistance\", 1.3)", @@ -36014,6 +38331,7 @@ "canonical": "g.inject(\"that\", \"this\", \"test\", null).split(\"h\")", "anonymized": "g.inject(string0, string1, string2, object0).split(string3)", "dotnet": "g.Inject(\"that\", \"this\", \"test\", null).Split(\"h\")", + "dotnet_parameterize": "g.Inject(\"that\", \"this\", \"test\", null).Split(\"h\")", "go": "g.Inject(\"that\", \"this\", \"test\", nil).Split(\"h\")", "groovy": "g.inject(\"that\", \"this\", \"test\", null).split(\"h\")", "java": "g.inject(\"that\", \"this\", \"test\", null).split(\"h\")", @@ -36031,6 +38349,7 @@ "canonical": "g.inject(\"hello world\").split(null)", "anonymized": "g.inject(string0).split(string1)", "dotnet": "g.Inject(\"hello world\").Split(null)", + "dotnet_parameterize": "g.Inject(\"hello world\").Split(null)", "go": "g.Inject(\"hello world\").Split(nil)", "groovy": "g.inject(\"hello world\").split(null)", "java": "g.inject(\"hello world\").split(null)", @@ -36048,6 +38367,7 @@ "canonical": "g.inject(\"that\", \"this\", \"test\", null).split(\"\")", "anonymized": "g.inject(string0, string1, string2, object0).split(string3)", "dotnet": "g.Inject(\"that\", \"this\", \"test\", null).Split(\"\")", + "dotnet_parameterize": "g.Inject(\"that\", \"this\", \"test\", null).Split(\"\")", "go": "g.Inject(\"that\", \"this\", \"test\", nil).Split(\"\")", "groovy": "g.inject(\"that\", \"this\", \"test\", null).split(\"\")", "java": "g.inject(\"that\", \"this\", \"test\", null).split(\"\")", @@ -36065,6 +38385,7 @@ "canonical": "g.inject([\"a\", \"b\"]).split(\"a\")", "anonymized": "g.inject(list0).split(string0)", "dotnet": "g.Inject(new List { \"a\", \"b\" }).Split(\"a\")", + "dotnet_parameterize": "g.Inject(new List { \"a\", \"b\" }).Split(\"a\")", "go": "g.Inject([]interface{}{\"a\", \"b\"}).Split(\"a\")", "groovy": "g.inject([\"a\", \"b\"]).split(\"a\")", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(\"b\"); }}).split(\"a\")", @@ -36082,6 +38403,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").split(null)", "anonymized": "g.V().hasLabel(string0).values(string1).split(string2)", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").Split(null)", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").Split(null)", "go": "g.V().HasLabel(\"person\").Values(\"name\").Split(nil)", "groovy": "g.V().hasLabel(\"person\").values(\"name\").split(null)", "java": "g.V().hasLabel(\"person\").values(\"name\").split(null)", @@ -36099,6 +38421,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").order().fold().split(Scope.local, \"a\").unfold()", "anonymized": "g.V().hasLabel(string0).values(string1).order().fold().split(Scope.local, string2).unfold()", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").Order().Fold().Split(Scope.Local, \"a\").Unfold()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").Order().Fold().Split(Scope.Local, \"a\").Unfold()", "go": "g.V().HasLabel(\"person\").Values(\"name\").Order().Fold().Split(gremlingo.Scope.Local, \"a\").Unfold()", "groovy": "g.V().hasLabel(\"person\").values(\"name\").order().fold().split(Scope.local, \"a\").unfold()", "java": "g.V().hasLabel(\"person\").values(\"name\").order().fold().split(Scope.local, \"a\").unfold()", @@ -36116,6 +38439,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").order().fold().split(Scope.local, \"\").unfold()", "anonymized": "g.V().hasLabel(string0).values(string1).order().fold().split(Scope.local, string2).unfold()", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").Order().Fold().Split(Scope.Local, \"\").Unfold()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").Order().Fold().Split(Scope.Local, \"\").Unfold()", "go": "g.V().HasLabel(\"person\").Values(\"name\").Order().Fold().Split(gremlingo.Scope.Local, \"\").Unfold()", "groovy": "g.V().hasLabel(\"person\").values(\"name\").order().fold().split(Scope.local, \"\").unfold()", "java": "g.V().hasLabel(\"person\").values(\"name\").order().fold().split(Scope.local, \"\").unfold()", @@ -36133,6 +38457,7 @@ "canonical": "g.inject(\"test\", \"hello world\", null).substring(1, 8)", "anonymized": "g.inject(string0, string1, object0).substring(number0, number1)", "dotnet": "g.Inject(\"test\", \"hello world\", null).Substring(1, 8)", + "dotnet_parameterize": "g.Inject(\"test\", \"hello world\", null).Substring(1, 8)", "go": "g.Inject(\"test\", \"hello world\", nil).Substring(1, 8)", "groovy": "g.inject(\"test\", \"hello world\", null).substring(1, 8)", "java": "g.inject(\"test\", \"hello world\", null).substring(1, 8)", @@ -36150,6 +38475,7 @@ "canonical": "g.inject([\"aa\", \"bb\"]).substring(1, 2)", "anonymized": "g.inject(list0).substring(number0, number1)", "dotnet": "g.Inject(new List { \"aa\", \"bb\" }).Substring(1, 2)", + "dotnet_parameterize": "g.Inject(new List { \"aa\", \"bb\" }).Substring(1, 2)", "go": "g.Inject([]interface{}{\"aa\", \"bb\"}).Substring(1, 2)", "groovy": "g.inject([\"aa\", \"bb\"]).substring(1, 2)", "java": "g.inject(new ArrayList() {{ add(\"aa\"); add(\"bb\"); }}).substring(1, 2)", @@ -36167,6 +38493,7 @@ "canonical": "g.V().hasLabel(\"software\").values(\"name\").substring(2)", "anonymized": "g.V().hasLabel(string0).values(string1).substring(number0)", "dotnet": "g.V().HasLabel(\"software\").Values(\"name\").Substring(2)", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Values(\"name\").Substring(2)", "go": "g.V().HasLabel(\"software\").Values(\"name\").Substring(2)", "groovy": "g.V().hasLabel(\"software\").values(\"name\").substring(2)", "java": "g.V().hasLabel(\"software\").values(\"name\").substring(2)", @@ -36184,6 +38511,7 @@ "canonical": "g.V().hasLabel(\"software\").values(\"name\").substring(1, 4)", "anonymized": "g.V().hasLabel(string0).values(string1).substring(number0, number1)", "dotnet": "g.V().HasLabel(\"software\").Values(\"name\").Substring(1, 4)", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Values(\"name\").Substring(1, 4)", "go": "g.V().HasLabel(\"software\").Values(\"name\").Substring(1, 4)", "groovy": "g.V().hasLabel(\"software\").values(\"name\").substring(1, 4)", "java": "g.V().hasLabel(\"software\").values(\"name\").substring(1, 4)", @@ -36201,6 +38529,7 @@ "canonical": "g.V().hasLabel(\"software\").values(\"name\").order().fold().substring(Scope.local, 2)", "anonymized": "g.V().hasLabel(string0).values(string1).order().fold().substring(Scope.local, number0)", "dotnet": "g.V().HasLabel(\"software\").Values(\"name\").Order().Fold().Substring(Scope.Local, 2)", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Values(\"name\").Order().Fold().Substring(Scope.Local, 2)", "go": "g.V().HasLabel(\"software\").Values(\"name\").Order().Fold().Substring(gremlingo.Scope.Local, 2)", "groovy": "g.V().hasLabel(\"software\").values(\"name\").order().fold().substring(Scope.local, 2)", "java": "g.V().hasLabel(\"software\").values(\"name\").order().fold().substring(Scope.local, 2)", @@ -36218,6 +38547,7 @@ "canonical": "g.V().hasLabel(\"software\").values(\"name\").order().fold().substring(Scope.local, 1, 4)", "anonymized": "g.V().hasLabel(string0).values(string1).order().fold().substring(Scope.local, number0, number1)", "dotnet": "g.V().HasLabel(\"software\").Values(\"name\").Order().Fold().Substring(Scope.Local, 1, 4)", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Values(\"name\").Order().Fold().Substring(Scope.Local, 1, 4)", "go": "g.V().HasLabel(\"software\").Values(\"name\").Order().Fold().Substring(gremlingo.Scope.Local, 1, 4)", "groovy": "g.V().hasLabel(\"software\").values(\"name\").order().fold().substring(Scope.local, 1, 4)", "java": "g.V().hasLabel(\"software\").values(\"name\").order().fold().substring(Scope.local, 1, 4)", @@ -36235,6 +38565,7 @@ "canonical": "g.V().hasLabel(\"software\").values(\"name\").substring(1, 0)", "anonymized": "g.V().hasLabel(string0).values(string1).substring(number0, number1)", "dotnet": "g.V().HasLabel(\"software\").Values(\"name\").Substring(1, 0)", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Values(\"name\").Substring(1, 0)", "go": "g.V().HasLabel(\"software\").Values(\"name\").Substring(1, 0)", "groovy": "g.V().hasLabel(\"software\").values(\"name\").substring(1, 0)", "java": "g.V().hasLabel(\"software\").values(\"name\").substring(1, 0)", @@ -36252,6 +38583,7 @@ "canonical": "g.V().hasLabel(\"person\").values(\"name\").substring(-3)", "anonymized": "g.V().hasLabel(string0).values(string1).substring(number0)", "dotnet": "g.V().HasLabel(\"person\").Values(\"name\").Substring(-3)", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Values(\"name\").Substring(-3)", "go": "g.V().HasLabel(\"person\").Values(\"name\").Substring(-3)", "groovy": "g.V().hasLabel(\"person\").values(\"name\").substring(-3)", "java": "g.V().hasLabel(\"person\").values(\"name\").substring(-3)", @@ -36269,6 +38601,7 @@ "canonical": "g.V().hasLabel(\"software\").values(\"name\").substring(1, -1)", "anonymized": "g.V().hasLabel(string0).values(string1).substring(number0, number1)", "dotnet": "g.V().HasLabel(\"software\").Values(\"name\").Substring(1, -1)", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Values(\"name\").Substring(1, -1)", "go": "g.V().HasLabel(\"software\").Values(\"name\").Substring(1, -1)", "groovy": "g.V().hasLabel(\"software\").values(\"name\").substring(1, -1)", "java": "g.V().hasLabel(\"software\").values(\"name\").substring(1, -1)", @@ -36286,6 +38619,7 @@ "canonical": "g.V().hasLabel(\"software\").values(\"name\").substring(-4, 2)", "anonymized": "g.V().hasLabel(string0).values(string1).substring(number0, number1)", "dotnet": "g.V().HasLabel(\"software\").Values(\"name\").Substring(-4, 2)", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Values(\"name\").Substring(-4, 2)", "go": "g.V().HasLabel(\"software\").Values(\"name\").Substring(-4, 2)", "groovy": "g.V().hasLabel(\"software\").values(\"name\").substring(-4, 2)", "java": "g.V().hasLabel(\"software\").values(\"name\").substring(-4, 2)", @@ -36303,6 +38637,7 @@ "canonical": "g.V().hasLabel(\"software\").values(\"name\").substring(-3, -1)", "anonymized": "g.V().hasLabel(string0).values(string1).substring(number0, number1)", "dotnet": "g.V().HasLabel(\"software\").Values(\"name\").Substring(-3, -1)", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Values(\"name\").Substring(-3, -1)", "go": "g.V().HasLabel(\"software\").Values(\"name\").Substring(-3, -1)", "groovy": "g.V().hasLabel(\"software\").values(\"name\").substring(-3, -1)", "java": "g.V().hasLabel(\"software\").values(\"name\").substring(-3, -1)", @@ -36320,6 +38655,7 @@ "canonical": "g.inject(127b, 1b).sum()", "anonymized": "g.inject(byte0, byte1).sum()", "dotnet": "g.Inject((sbyte) 127, (sbyte) 1).Sum()", + "dotnet_parameterize": "g.Inject((sbyte) 127, (sbyte) 1).Sum()", "go": "g.Inject(int8(127), int8(1)).Sum()", "groovy": "g.inject((byte)127, (byte)1).sum()", "java": "g.inject(new Byte(127), new Byte(1)).sum()", @@ -36337,6 +38673,7 @@ "canonical": "g.inject(-128b, -1b).sum()", "anonymized": "g.inject(byte0, byte1).sum()", "dotnet": "g.Inject((sbyte) -128, (sbyte) -1).Sum()", + "dotnet_parameterize": "g.Inject((sbyte) -128, (sbyte) -1).Sum()", "go": "g.Inject(int8(-128), int8(-1)).Sum()", "groovy": "g.inject((byte)-128, (byte)-1).sum()", "java": "g.inject(new Byte(-128), new Byte(-1)).sum()", @@ -36354,6 +38691,7 @@ "canonical": "g.inject(32767s, 1s).sum()", "anonymized": "g.inject(short0, short1).sum()", "dotnet": "g.Inject((short) 32767, (short) 1).Sum()", + "dotnet_parameterize": "g.Inject((short) 32767, (short) 1).Sum()", "go": "g.Inject(int16(32767), int16(1)).Sum()", "groovy": "g.inject((short)32767, (short)1).sum()", "java": "g.inject(new Short(32767), new Short(1)).sum()", @@ -36371,6 +38709,7 @@ "canonical": "g.inject(-32768s, -1s).sum()", "anonymized": "g.inject(short0, short1).sum()", "dotnet": "g.Inject((short) -32768, (short) -1).Sum()", + "dotnet_parameterize": "g.Inject((short) -32768, (short) -1).Sum()", "go": "g.Inject(int16(-32768), int16(-1)).Sum()", "groovy": "g.inject((short)-32768, (short)-1).sum()", "java": "g.inject(new Short(-32768), new Short(-1)).sum()", @@ -36388,6 +38727,7 @@ "canonical": "g.inject(2147483647i, 1i).sum()", "anonymized": "g.inject(integer0, integer1).sum()", "dotnet": "g.Inject(2147483647, 1).Sum()", + "dotnet_parameterize": "g.Inject(2147483647, 1).Sum()", "go": "g.Inject(int32(2147483647), int32(1)).Sum()", "groovy": "g.inject(2147483647i, 1i).sum()", "java": "g.inject(2147483647, 1).sum()", @@ -36405,6 +38745,7 @@ "canonical": "g.inject(-2147483648i, -1i).sum()", "anonymized": "g.inject(integer0, integer1).sum()", "dotnet": "g.Inject(-2147483648, -1).Sum()", + "dotnet_parameterize": "g.Inject(-2147483648, -1).Sum()", "go": "g.Inject(int32(-2147483648), int32(-1)).Sum()", "groovy": "g.inject(-2147483648i, -1i).sum()", "java": "g.inject(-2147483648, -1).sum()", @@ -36422,6 +38763,7 @@ "canonical": "g.V().values(\"age\").sum()", "anonymized": "g.V().values(string0).sum()", "dotnet": "g.V().Values(\"age\").Sum()", + "dotnet_parameterize": "g.V().Values(\"age\").Sum()", "go": "g.V().Values(\"age\").Sum()", "groovy": "g.V().values(\"age\").sum()", "java": "g.V().values(\"age\").sum()", @@ -36439,6 +38781,7 @@ "canonical": "g.V().values(\"foo\").sum()", "anonymized": "g.V().values(string0).sum()", "dotnet": "g.V().Values(\"foo\").Sum()", + "dotnet_parameterize": "g.V().Values(\"foo\").Sum()", "go": "g.V().Values(\"foo\").Sum()", "groovy": "g.V().values(\"foo\").sum()", "java": "g.V().values(\"foo\").sum()", @@ -36456,6 +38799,7 @@ "canonical": "g.V().values(\"age\").fold().sum(Scope.local)", "anonymized": "g.V().values(string0).fold().sum(Scope.local)", "dotnet": "g.V().Values(\"age\").Fold().Sum(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"age\").Fold().Sum(Scope.Local)", "go": "g.V().Values(\"age\").Fold().Sum(gremlingo.Scope.Local)", "groovy": "g.V().values(\"age\").fold().sum(Scope.local)", "java": "g.V().values(\"age\").fold().sum(Scope.local)", @@ -36473,6 +38817,7 @@ "canonical": "g.V().values(\"foo\").fold().sum(Scope.local)", "anonymized": "g.V().values(string0).fold().sum(Scope.local)", "dotnet": "g.V().Values(\"foo\").Fold().Sum(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"foo\").Fold().Sum(Scope.Local)", "go": "g.V().Values(\"foo\").Fold().Sum(gremlingo.Scope.Local)", "groovy": "g.V().values(\"foo\").fold().sum(Scope.local)", "java": "g.V().values(\"foo\").fold().sum(Scope.local)", @@ -36490,6 +38835,7 @@ "canonical": "g.V().hasLabel(\"software\").group().by(\"name\").by(__.bothE().values(\"weight\").sum())", "anonymized": "g.V().hasLabel(string0).group().by(string1).by(__.bothE().values(string2).sum())", "dotnet": "g.V().HasLabel(\"software\").Group().By(\"name\").By(__.BothE().Values(\"weight\").Sum())", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Group().By(\"name\").By(__.BothE().Values(\"weight\").Sum())", "go": "g.V().HasLabel(\"software\").Group().By(\"name\").By(gremlingo.T__.BothE().Values(\"weight\").Sum())", "groovy": "g.V().hasLabel(\"software\").group().by(\"name\").by(__.bothE().values(\"weight\").sum())", "java": "g.V().hasLabel(\"software\").group().by(\"name\").by(__.bothE().values(\"weight\").sum())", @@ -36507,6 +38853,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").sum(Scope.local)", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).sum(Scope.local)", "dotnet": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Sum(Scope.Local)", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Sum(Scope.Local)", "go": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Sum(gremlingo.Scope.Local)", "groovy": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").sum(Scope.local)", "java": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").sum(Scope.local)", @@ -36524,6 +38871,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").sum(Scope.local)", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).sum(Scope.local)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Sum(Scope.Local)", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Sum(Scope.Local)", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Sum(gremlingo.Scope.Local)", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").sum(Scope.local)", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"age\").cap(\"a\").sum(Scope.local)", @@ -36541,6 +38889,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().sum()", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).unfold().sum()", "dotnet": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Sum()", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Sum()", "go": "g.V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Sum()", "groovy": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().sum()", "java": "g.V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().sum()", @@ -36558,6 +38907,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().sum()", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).unfold().sum()", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Sum()", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Sum()", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"age\").Cap(\"a\").Unfold().Sum()", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().sum()", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"age\").cap(\"a\").unfold().sum()", @@ -36575,6 +38925,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").sum(Scope.local)", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).sum(Scope.local)", "dotnet": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Sum(Scope.Local)", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Sum(Scope.Local)", "go": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Sum(gremlingo.Scope.Local)", "groovy": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").sum(Scope.local)", "java": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").sum(Scope.local)", @@ -36592,6 +38943,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").sum(Scope.local)", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).sum(Scope.local)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Sum(Scope.Local)", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Sum(Scope.Local)", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Sum(gremlingo.Scope.Local)", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").sum(Scope.local)", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"foo\").cap(\"a\").sum(Scope.local)", @@ -36609,6 +38961,7 @@ "canonical": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().sum()", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0).unfold().sum()", "dotnet": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Sum()", + "dotnet_parameterize": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Sum()", "go": "g.V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Sum()", "groovy": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().sum()", "java": "g.V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().sum()", @@ -36626,6 +38979,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().sum()", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(string1).cap(string0).unfold().sum()", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Sum()", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Sum()", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"a\").By(\"foo\").Cap(\"a\").Unfold().Sum()", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().sum()", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"a\").by(\"foo\").cap(\"a\").unfold().sum()", @@ -36643,6 +38997,7 @@ "canonical": "g.inject(null, 10, 5, null).sum()", "anonymized": "g.inject(object0, number0, number1, object0).sum()", "dotnet": "g.Inject(null, 10, 5, null).Sum()", + "dotnet_parameterize": "g.Inject(null, 10, 5, null).Sum()", "go": "g.Inject(nil, 10, 5, nil).Sum()", "groovy": "g.inject(null, 10, 5, null).sum()", "java": "g.inject(null, 10, 5, null).sum()", @@ -36660,6 +39015,7 @@ "canonical": "g.inject([null, 10, 5, null]).sum(Scope.local)", "anonymized": "g.inject(list0).sum(Scope.local)", "dotnet": "g.Inject(new List { null, 10, 5, null }).Sum(Scope.Local)", + "dotnet_parameterize": "g.Inject(new List { null, 10, 5, null }).Sum(Scope.Local)", "go": "g.Inject([]interface{}{nil, 10, 5, nil}).Sum(gremlingo.Scope.Local)", "groovy": "g.inject([null, 10, 5, null]).sum(Scope.local)", "java": "g.inject(new ArrayList() {{ add(null); add(10); add(5); add(null); }}).sum(Scope.local)", @@ -36677,6 +39033,7 @@ "canonical": "g.V(vid1).values(\"age\").sum(Scope.local)", "anonymized": "g.V(vid1).values(string0).sum(Scope.local)", "dotnet": "g.V(vid1).Values(\"age\").Sum(Scope.Local)", + "dotnet_parameterize": "g.V(vid1).Values(\"age\").Sum(Scope.Local)", "go": "g.V(vid1).Values(\"age\").Sum(gremlingo.Scope.Local)", "groovy": "g.V(vid1).values(\"age\").sum(Scope.local)", "java": "g.V(vid1).values(\"age\").sum(Scope.local)", @@ -36694,6 +39051,7 @@ "canonical": "g.V().local(__.union(__.values(\"age\"), __.outE().values(\"weight\")).fold()).sum(Scope.local)", "anonymized": "g.V().local(__.union(__.values(string0), __.outE().values(string1)).fold()).sum(Scope.local)", "dotnet": "g.V().Local(__.Union(__.Values(\"age\"), __.OutE().Values(\"weight\")).Fold()).Sum(Scope.Local)", + "dotnet_parameterize": "g.V().Local(__.Union(__.Values(\"age\"), __.OutE().Values(\"weight\")).Fold()).Sum(Scope.Local)", "go": "g.V().Local(gremlingo.T__.Union(gremlingo.T__.Values(\"age\"), gremlingo.T__.OutE().Values(\"weight\")).Fold()).Sum(gremlingo.Scope.Local)", "groovy": "g.V().local(__.union(__.values(\"age\"), __.outE().values(\"weight\")).fold()).sum(Scope.local)", "java": "g.V().local(__.union(__.values(\"age\"), __.outE().values(\"weight\")).fold()).sum(Scope.local)", @@ -36711,6 +39069,7 @@ "canonical": "g.V().values(\"age\").inject(1000n).sum()", "anonymized": "g.V().values(string0).inject(biginteger0).sum()", "dotnet": "g.V().Values(\"age\").Inject(BigInteger.Parse(\"1000\")).Sum()", + "dotnet_parameterize": "g.V().Values(\"age\").Inject(BigInteger.Parse(\"1000\")).Sum()", "go": "g.V().Values(\"age\").Inject(gremlingo.ParseBigInt(\"1000\")).Sum()", "groovy": "g.V().values(\"age\").inject(1000g).sum()", "java": "g.V().values(\"age\").inject(new BigInteger(\"1000\")).sum()", @@ -36728,6 +39087,7 @@ "canonical": "g.inject(1b, 2b, 3b).sum()", "anonymized": "g.inject(byte0, byte1, byte2).sum()", "dotnet": "g.Inject((sbyte) 1, (sbyte) 2, (sbyte) 3).Sum()", + "dotnet_parameterize": "g.Inject((sbyte) 1, (sbyte) 2, (sbyte) 3).Sum()", "go": "g.Inject(int8(1), int8(2), int8(3)).Sum()", "groovy": "g.inject((byte)1, (byte)2, (byte)3).sum()", "java": "g.inject(new Byte(1), new Byte(2), new Byte(3)).sum()", @@ -36745,6 +39105,7 @@ "canonical": "g.inject(1b, 2b, 3s).sum()", "anonymized": "g.inject(byte0, byte1, short0).sum()", "dotnet": "g.Inject((sbyte) 1, (sbyte) 2, (short) 3).Sum()", + "dotnet_parameterize": "g.Inject((sbyte) 1, (sbyte) 2, (short) 3).Sum()", "go": "g.Inject(int8(1), int8(2), int16(3)).Sum()", "groovy": "g.inject((byte)1, (byte)2, (short)3).sum()", "java": "g.inject(new Byte(1), new Byte(2), new Short(3)).sum()", @@ -36762,6 +39123,7 @@ "canonical": "g.inject(1b, 2b, 3i).sum()", "anonymized": "g.inject(byte0, byte1, integer0).sum()", "dotnet": "g.Inject((sbyte) 1, (sbyte) 2, 3).Sum()", + "dotnet_parameterize": "g.Inject((sbyte) 1, (sbyte) 2, 3).Sum()", "go": "g.Inject(int8(1), int8(2), int32(3)).Sum()", "groovy": "g.inject((byte)1, (byte)2, 3i).sum()", "java": "g.inject(new Byte(1), new Byte(2), 3).sum()", @@ -36779,6 +39141,7 @@ "canonical": "g.inject(1f, 2f, 3f).sum()", "anonymized": "g.inject(float0, float1, float2).sum()", "dotnet": "g.Inject(1f, 2f, 3f).Sum()", + "dotnet_parameterize": "g.Inject(1f, 2f, 3f).Sum()", "go": "g.Inject(float32(1), float32(2), float32(3)).Sum()", "groovy": "g.inject(1f, 2f, 3f).sum()", "java": "g.inject(1f, 2f, 3f).sum()", @@ -36796,6 +39159,7 @@ "canonical": "g.V().values(\"age\").inject(1000n).fold().sum(Scope.local)", "anonymized": "g.V().values(string0).inject(biginteger0).fold().sum(Scope.local)", "dotnet": "g.V().Values(\"age\").Inject(BigInteger.Parse(\"1000\")).Fold().Sum(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"age\").Inject(BigInteger.Parse(\"1000\")).Fold().Sum(Scope.Local)", "go": "g.V().Values(\"age\").Inject(gremlingo.ParseBigInt(\"1000\")).Fold().Sum(gremlingo.Scope.Local)", "groovy": "g.V().values(\"age\").inject(1000g).fold().sum(Scope.local)", "java": "g.V().values(\"age\").inject(new BigInteger(\"1000\")).fold().sum(Scope.local)", @@ -36813,6 +39177,7 @@ "canonical": "g.inject(1b, 2b, 3b).fold().sum(Scope.local)", "anonymized": "g.inject(byte0, byte1, byte2).fold().sum(Scope.local)", "dotnet": "g.Inject((sbyte) 1, (sbyte) 2, (sbyte) 3).Fold().Sum(Scope.Local)", + "dotnet_parameterize": "g.Inject((sbyte) 1, (sbyte) 2, (sbyte) 3).Fold().Sum(Scope.Local)", "go": "g.Inject(int8(1), int8(2), int8(3)).Fold().Sum(gremlingo.Scope.Local)", "groovy": "g.inject((byte)1, (byte)2, (byte)3).fold().sum(Scope.local)", "java": "g.inject(new Byte(1), new Byte(2), new Byte(3)).fold().sum(Scope.local)", @@ -36830,6 +39195,7 @@ "canonical": "g.inject(1b, 2b, 3s).fold().sum(Scope.local)", "anonymized": "g.inject(byte0, byte1, short0).fold().sum(Scope.local)", "dotnet": "g.Inject((sbyte) 1, (sbyte) 2, (short) 3).Fold().Sum(Scope.Local)", + "dotnet_parameterize": "g.Inject((sbyte) 1, (sbyte) 2, (short) 3).Fold().Sum(Scope.Local)", "go": "g.Inject(int8(1), int8(2), int16(3)).Fold().Sum(gremlingo.Scope.Local)", "groovy": "g.inject((byte)1, (byte)2, (short)3).fold().sum(Scope.local)", "java": "g.inject(new Byte(1), new Byte(2), new Short(3)).fold().sum(Scope.local)", @@ -36847,6 +39213,7 @@ "canonical": "g.inject(1b, 2b, 3i).fold().sum(Scope.local)", "anonymized": "g.inject(byte0, byte1, integer0).fold().sum(Scope.local)", "dotnet": "g.Inject((sbyte) 1, (sbyte) 2, 3).Fold().Sum(Scope.Local)", + "dotnet_parameterize": "g.Inject((sbyte) 1, (sbyte) 2, 3).Fold().Sum(Scope.Local)", "go": "g.Inject(int8(1), int8(2), int32(3)).Fold().Sum(gremlingo.Scope.Local)", "groovy": "g.inject((byte)1, (byte)2, 3i).fold().sum(Scope.local)", "java": "g.inject(new Byte(1), new Byte(2), 3).fold().sum(Scope.local)", @@ -36864,6 +39231,7 @@ "canonical": "g.inject(1f, 2f, 3f).fold().sum(Scope.local)", "anonymized": "g.inject(float0, float1, float2).fold().sum(Scope.local)", "dotnet": "g.Inject(1f, 2f, 3f).Fold().Sum(Scope.Local)", + "dotnet_parameterize": "g.Inject(1f, 2f, 3f).Fold().Sum(Scope.Local)", "go": "g.Inject(float32(1), float32(2), float32(3)).Fold().Sum(gremlingo.Scope.Local)", "groovy": "g.inject(1f, 2f, 3f).fold().sum(Scope.local)", "java": "g.inject(1f, 2f, 3f).fold().sum(Scope.local)", @@ -36881,6 +39249,7 @@ "canonical": "g.inject(\"FEATURE\", \"tESt\", null).toLower()", "anonymized": "g.inject(string0, string1, object0).toLower()", "dotnet": "g.Inject(\"FEATURE\", \"tESt\", null).ToLower()", + "dotnet_parameterize": "g.Inject(\"FEATURE\", \"tESt\", null).ToLower()", "go": "g.Inject(\"FEATURE\", \"tESt\", nil).ToLower()", "groovy": "g.inject(\"FEATURE\", \"tESt\", null).toLower()", "java": "g.inject(\"FEATURE\", \"tESt\", null).toLower()", @@ -36898,6 +39267,7 @@ "canonical": "g.inject([\"FEATURE\", \"tESt\", null]).toLower(Scope.local)", "anonymized": "g.inject(list0).toLower(Scope.local)", "dotnet": "g.Inject(new List { \"FEATURE\", \"tESt\", null }).ToLower(Scope.Local)", + "dotnet_parameterize": "g.Inject(new List { \"FEATURE\", \"tESt\", null }).ToLower(Scope.Local)", "go": "g.Inject([]interface{}{\"FEATURE\", \"tESt\", nil}).ToLower(gremlingo.Scope.Local)", "groovy": "g.inject([\"FEATURE\", \"tESt\", null]).toLower(Scope.local)", "java": "g.inject(new ArrayList() {{ add(\"FEATURE\"); add(\"tESt\"); add(null); }}).toLower(Scope.local)", @@ -36915,6 +39285,7 @@ "canonical": "g.inject([\"a\", \"b\"]).toLower()", "anonymized": "g.inject(list0).toLower()", "dotnet": "g.Inject(new List { \"a\", \"b\" }).ToLower()", + "dotnet_parameterize": "g.Inject(new List { \"a\", \"b\" }).ToLower()", "go": "g.Inject([]interface{}{\"a\", \"b\"}).ToLower()", "groovy": "g.inject([\"a\", \"b\"]).toLower()", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(\"b\"); }}).toLower()", @@ -36932,6 +39303,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"MARKO\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"VADAS\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"LOP\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"JOSH\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"RIPPLE\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"PETER\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string4).addV(string0).property(string1, string5).property(string3, number1).as(string6).addV(string7).property(string1, string8).property(string9, string10).as(string11).addV(string0).property(string1, string12).property(string3, number2).as(string13).addV(string7).property(string1, string14).property(string9, string10).as(string15).addV(string0).property(string1, string16).property(string3, number3).as(string17).addE(string18).from(string4).to(string6).property(string19, double0).addE(string18).from(string4).to(string13).property(string19, double1).addE(string20).from(string4).to(string11).property(string19, double2).addE(string20).from(string13).to(string15).property(string19, double1).addE(string20).from(string13).to(string11).property(string19, double2).addE(string20).from(string21).to(string11).property(string19, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"MARKO\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"VADAS\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"LOP\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"JOSH\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"RIPPLE\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"PETER\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"MARKO\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"VADAS\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"LOP\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"JOSH\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"RIPPLE\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"PETER\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"MARKO\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"VADAS\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"LOP\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"JOSH\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"RIPPLE\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"PETER\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"MARKO\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"VADAS\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"LOP\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"JOSH\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"RIPPLE\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"PETER\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"MARKO\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"VADAS\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"LOP\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"JOSH\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"RIPPLE\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"PETER\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -36944,6 +39316,7 @@ "canonical": "g.V().values(\"name\").toLower()", "anonymized": "g.V().values(string0).toLower()", "dotnet": "g.V().Values(\"name\").ToLower()", + "dotnet_parameterize": "g.V().Values(\"name\").ToLower()", "go": "g.V().Values(\"name\").ToLower()", "groovy": "g.V().values(\"name\").toLower()", "java": "g.V().values(\"name\").toLower()", @@ -36961,6 +39334,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"MARKO\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"VADAS\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"LOP\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"JOSH\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"RIPPLE\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"PETER\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string4).addV(string0).property(string1, string5).property(string3, number1).as(string6).addV(string7).property(string1, string8).property(string9, string10).as(string11).addV(string0).property(string1, string12).property(string3, number2).as(string13).addV(string7).property(string1, string14).property(string9, string10).as(string15).addV(string0).property(string1, string16).property(string3, number3).as(string17).addE(string18).from(string4).to(string6).property(string19, double0).addE(string18).from(string4).to(string13).property(string19, double1).addE(string20).from(string4).to(string11).property(string19, double2).addE(string20).from(string13).to(string15).property(string19, double1).addE(string20).from(string13).to(string11).property(string19, double2).addE(string20).from(string21).to(string11).property(string19, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"MARKO\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"VADAS\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"LOP\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"JOSH\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"RIPPLE\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"PETER\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"MARKO\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"VADAS\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"LOP\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"JOSH\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"RIPPLE\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"PETER\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"MARKO\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"VADAS\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"LOP\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"JOSH\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"RIPPLE\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"PETER\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"MARKO\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"VADAS\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"LOP\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"JOSH\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"RIPPLE\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"PETER\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"MARKO\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"VADAS\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"LOP\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"JOSH\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"RIPPLE\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"PETER\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -36973,6 +39347,7 @@ "canonical": "g.V().values(\"name\").toLower(Scope.local)", "anonymized": "g.V().values(string0).toLower(Scope.local)", "dotnet": "g.V().Values(\"name\").ToLower(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"name\").ToLower(Scope.Local)", "go": "g.V().Values(\"name\").ToLower(gremlingo.Scope.Local)", "groovy": "g.V().values(\"name\").toLower(Scope.local)", "java": "g.V().values(\"name\").toLower(Scope.local)", @@ -36990,6 +39365,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"MARKO\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"VADAS\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"LOP\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"JOSH\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"RIPPLE\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"PETER\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string4).addV(string0).property(string1, string5).property(string3, number1).as(string6).addV(string7).property(string1, string8).property(string9, string10).as(string11).addV(string0).property(string1, string12).property(string3, number2).as(string13).addV(string7).property(string1, string14).property(string9, string10).as(string15).addV(string0).property(string1, string16).property(string3, number3).as(string17).addE(string18).from(string4).to(string6).property(string19, double0).addE(string18).from(string4).to(string13).property(string19, double1).addE(string20).from(string4).to(string11).property(string19, double2).addE(string20).from(string13).to(string15).property(string19, double1).addE(string20).from(string13).to(string11).property(string19, double2).addE(string20).from(string21).to(string11).property(string19, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"MARKO\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"VADAS\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"LOP\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"JOSH\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"RIPPLE\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"PETER\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"MARKO\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"VADAS\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"LOP\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"JOSH\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"RIPPLE\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"PETER\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"MARKO\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"VADAS\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"LOP\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"JOSH\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"RIPPLE\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"PETER\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"MARKO\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"VADAS\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"LOP\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"JOSH\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"RIPPLE\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"PETER\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"MARKO\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"VADAS\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"LOP\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"JOSH\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"RIPPLE\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"PETER\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -37002,6 +39378,7 @@ "canonical": "g.V().values(\"name\").order().fold().toLower(Scope.local)", "anonymized": "g.V().values(string0).order().fold().toLower(Scope.local)", "dotnet": "g.V().Values(\"name\").Order().Fold().ToLower(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"name\").Order().Fold().ToLower(Scope.Local)", "go": "g.V().Values(\"name\").Order().Fold().ToLower(gremlingo.Scope.Local)", "groovy": "g.V().values(\"name\").order().fold().toLower(Scope.local)", "java": "g.V().values(\"name\").order().fold().toLower(Scope.local)", @@ -37019,6 +39396,7 @@ "canonical": "g.inject(\"feature\", \"tESt\", null).toUpper()", "anonymized": "g.inject(string0, string1, object0).toUpper()", "dotnet": "g.Inject(\"feature\", \"tESt\", null).ToUpper()", + "dotnet_parameterize": "g.Inject(\"feature\", \"tESt\", null).ToUpper()", "go": "g.Inject(\"feature\", \"tESt\", nil).ToUpper()", "groovy": "g.inject(\"feature\", \"tESt\", null).toUpper()", "java": "g.inject(\"feature\", \"tESt\", null).toUpper()", @@ -37036,6 +39414,7 @@ "canonical": "g.inject([\"feature\", \"tESt\", null]).toUpper(Scope.local)", "anonymized": "g.inject(list0).toUpper(Scope.local)", "dotnet": "g.Inject(new List { \"feature\", \"tESt\", null }).ToUpper(Scope.Local)", + "dotnet_parameterize": "g.Inject(new List { \"feature\", \"tESt\", null }).ToUpper(Scope.Local)", "go": "g.Inject([]interface{}{\"feature\", \"tESt\", nil}).ToUpper(gremlingo.Scope.Local)", "groovy": "g.inject([\"feature\", \"tESt\", null]).toUpper(Scope.local)", "java": "g.inject(new ArrayList() {{ add(\"feature\"); add(\"tESt\"); add(null); }}).toUpper(Scope.local)", @@ -37053,6 +39432,7 @@ "canonical": "g.inject([\"a\", \"b\"]).toUpper()", "anonymized": "g.inject(list0).toUpper()", "dotnet": "g.Inject(new List { \"a\", \"b\" }).ToUpper()", + "dotnet_parameterize": "g.Inject(new List { \"a\", \"b\" }).ToUpper()", "go": "g.Inject([]interface{}{\"a\", \"b\"}).ToUpper()", "groovy": "g.inject([\"a\", \"b\"]).toUpper()", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(\"b\"); }}).toUpper()", @@ -37070,6 +39450,7 @@ "canonical": "g.V().values(\"name\").toUpper()", "anonymized": "g.V().values(string0).toUpper()", "dotnet": "g.V().Values(\"name\").ToUpper()", + "dotnet_parameterize": "g.V().Values(\"name\").ToUpper()", "go": "g.V().Values(\"name\").ToUpper()", "groovy": "g.V().values(\"name\").toUpper()", "java": "g.V().values(\"name\").toUpper()", @@ -37087,6 +39468,7 @@ "canonical": "g.V().values(\"name\").toUpper(Scope.local)", "anonymized": "g.V().values(string0).toUpper(Scope.local)", "dotnet": "g.V().Values(\"name\").ToUpper(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"name\").ToUpper(Scope.Local)", "go": "g.V().Values(\"name\").ToUpper(gremlingo.Scope.Local)", "groovy": "g.V().values(\"name\").toUpper(Scope.local)", "java": "g.V().values(\"name\").toUpper(Scope.local)", @@ -37104,6 +39486,7 @@ "canonical": "g.V().values(\"name\").order().fold().toUpper(Scope.local)", "anonymized": "g.V().values(string0).order().fold().toUpper(Scope.local)", "dotnet": "g.V().Values(\"name\").Order().Fold().ToUpper(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"name\").Order().Fold().ToUpper(Scope.Local)", "go": "g.V().Values(\"name\").Order().Fold().ToUpper(gremlingo.Scope.Local)", "groovy": "g.V().values(\"name\").order().fold().toUpper(Scope.local)", "java": "g.V().values(\"name\").order().fold().toUpper(Scope.local)", @@ -37121,6 +39504,7 @@ "canonical": "g.inject(\" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").trim()", "anonymized": "g.inject(string0, string1, object0, string2, string3, string4, string5, string6, string7).trim()", "dotnet": "g.Inject(\" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").Trim()", + "dotnet_parameterize": "g.Inject(\" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").Trim()", "go": "g.Inject(\" feature \", \" one test \", nil, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").Trim()", "groovy": "g.inject(\" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").trim()", "java": "g.inject(\" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\").trim()", @@ -37138,6 +39522,7 @@ "canonical": "g.inject([\" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\"]).trim(Scope.local)", "anonymized": "g.inject(list0).trim(Scope.local)", "dotnet": "g.Inject(new List { \" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\" }).Trim(Scope.Local)", + "dotnet_parameterize": "g.Inject(new List { \" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\" }).Trim(Scope.Local)", "go": "g.Inject([]interface{}{\" feature \", \" one test \", nil, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\"}).Trim(gremlingo.Scope.Local)", "groovy": "g.inject([\" feature \", \" one test \", null, \"\", \" \", \"\u3000abc\", \"abc\u3000\", \"\u3000abc\u3000\", \"\u3000\u3000\"]).trim(Scope.local)", "java": "g.inject(new ArrayList() {{ add(\" feature \"); add(\" one test \"); add(null); add(\"\"); add(\" \"); add(\"\u3000abc\"); add(\"abc\u3000\"); add(\"\u3000abc\u3000\"); add(\"\u3000\u3000\"); }}).trim(Scope.local)", @@ -37155,6 +39540,7 @@ "canonical": "g.inject([\"a\", \"b\"]).trim()", "anonymized": "g.inject(list0).trim()", "dotnet": "g.Inject(new List { \"a\", \"b\" }).Trim()", + "dotnet_parameterize": "g.Inject(new List { \"a\", \"b\" }).Trim()", "go": "g.Inject([]interface{}{\"a\", \"b\"}).Trim()", "groovy": "g.inject([\"a\", \"b\"]).trim()", "java": "g.inject(new ArrayList() {{ add(\"a\"); add(\"b\"); }}).trim()", @@ -37172,6 +39558,7 @@ "canonical": "g.inject([1, 2]).trim(Scope.local)", "anonymized": "g.inject(list0).trim(Scope.local)", "dotnet": "g.Inject(new List { 1, 2 }).Trim(Scope.Local)", + "dotnet_parameterize": "g.Inject(new List { 1, 2 }).Trim(Scope.Local)", "go": "g.Inject([]interface{}{1, 2}).Trim(gremlingo.Scope.Local)", "groovy": "g.inject([1, 2]).trim(Scope.local)", "java": "g.inject(new ArrayList() {{ add(1); add(2); }}).trim(Scope.local)", @@ -37189,6 +39576,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string4).addV(string0).property(string1, string5).property(string3, number1).as(string6).addV(string7).property(string1, string8).property(string9, string10).as(string11).addV(string0).property(string1, string12).property(string3, number2).as(string13).addV(string7).property(string1, string14).property(string9, string10).as(string15).addV(string0).property(string1, string16).property(string3, number3).as(string17).addE(string18).from(string4).to(string6).property(string19, double0).addE(string18).from(string4).to(string13).property(string19, double1).addE(string20).from(string4).to(string11).property(string19, double2).addE(string20).from(string13).to(string15).property(string19, double1).addE(string20).from(string13).to(string11).property(string19, double2).addE(string20).from(string16).to(string11).property(string19, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -37201,6 +39589,7 @@ "canonical": "g.V().values(\"name\").trim()", "anonymized": "g.V().values(string0).trim()", "dotnet": "g.V().Values(\"name\").Trim()", + "dotnet_parameterize": "g.V().Values(\"name\").Trim()", "go": "g.V().Values(\"name\").Trim()", "groovy": "g.V().values(\"name\").trim()", "java": "g.V().values(\"name\").trim()", @@ -37218,6 +39607,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string4).addV(string0).property(string1, string5).property(string3, number1).as(string6).addV(string7).property(string1, string8).property(string9, string10).as(string11).addV(string0).property(string1, string12).property(string3, number2).as(string13).addV(string7).property(string1, string14).property(string9, string10).as(string15).addV(string0).property(string1, string16).property(string3, number3).as(string17).addE(string18).from(string4).to(string6).property(string19, double0).addE(string18).from(string4).to(string13).property(string19, double1).addE(string20).from(string4).to(string11).property(string19, double2).addE(string20).from(string13).to(string15).property(string19, double1).addE(string20).from(string13).to(string11).property(string19, double2).addE(string20).from(string16).to(string11).property(string19, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \" marko \").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \" vadas \").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \" lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh \").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \" ripple \").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \" marko \").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \" vadas \").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \" lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh \").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \" ripple \").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -37230,6 +39620,7 @@ "canonical": "g.V().values(\"name\").order().fold().trim(Scope.local)", "anonymized": "g.V().values(string0).order().fold().trim(Scope.local)", "dotnet": "g.V().Values(\"name\").Order().Fold().Trim(Scope.Local)", + "dotnet_parameterize": "g.V().Values(\"name\").Order().Fold().Trim(Scope.Local)", "go": "g.V().Values(\"name\").Order().Fold().Trim(gremlingo.Scope.Local)", "groovy": "g.V().values(\"name\").order().fold().trim(Scope.local)", "java": "g.V().values(\"name\").order().fold().trim(Scope.local)", @@ -37247,6 +39638,7 @@ "canonical": "g.V().local(__.outE().fold()).unfold()", "anonymized": "g.V().local(__.outE().fold()).unfold()", "dotnet": "g.V().Local(__.OutE().Fold()).Unfold()", + "dotnet_parameterize": "g.V().Local(__.OutE().Fold()).Unfold()", "go": "g.V().Local(gremlingo.T__.OutE().Fold()).Unfold()", "groovy": "g.V().local(__.outE().fold()).unfold()", "java": "g.V().local(__.outE().fold()).unfold()", @@ -37264,6 +39656,7 @@ "canonical": "g.V().valueMap().unfold().map(__.select(Column.keys))", "anonymized": "g.V().valueMap().unfold().map(__.select(Column.keys))", "dotnet": "g.V().ValueMap().Unfold().Map(__.Select(Column.Keys))", + "dotnet_parameterize": "g.V().ValueMap().Unfold().Map(__.Select(Column.Keys))", "go": "g.V().ValueMap().Unfold().Map(gremlingo.T__.Select(gremlingo.Column.Keys))", "groovy": "g.V().valueMap().unfold().map(__.select(Column.keys))", "java": "g.V().valueMap().unfold().map(__.select(Column.keys))", @@ -37281,6 +39674,7 @@ "canonical": "g.V(vid1).repeat(__.both().simplePath()).until(__.hasId(vid6)).path().by(\"name\").unfold()", "anonymized": "g.V(vid1).repeat(__.both().simplePath()).until(__.hasId(vid6)).path().by(string0).unfold()", "dotnet": "g.V(vid1).Repeat(__.Both().SimplePath()).Until(__.HasId(vid6)).Path().By(\"name\").Unfold()", + "dotnet_parameterize": "g.V(vid1).Repeat(__.Both().SimplePath()).Until(__.HasId(vid6)).Path().By(\"name\").Unfold()", "go": "g.V(vid1).Repeat(gremlingo.T__.Both().SimplePath()).Until(gremlingo.T__.HasId(vid6)).Path().By(\"name\").Unfold()", "groovy": "g.V(vid1).repeat(__.both().simplePath()).until(__.hasId(vid6)).path().by(\"name\").unfold()", "java": "g.V(vid1).repeat(__.both().simplePath()).until(__.hasId(vid6)).path().by(\"name\").unfold()", @@ -37298,6 +39692,7 @@ "canonical": "g.V().valueMap()", "anonymized": "g.V().valueMap()", "dotnet": "g.V().ValueMap()", + "dotnet_parameterize": "g.V().ValueMap()", "go": "g.V().ValueMap()", "groovy": "g.V().valueMap()", "java": "g.V().valueMap()", @@ -37315,6 +39710,7 @@ "canonical": "g.V().valueMap(true)", "anonymized": "g.V().valueMap(boolean0)", "dotnet": "g.V().ValueMap(true)", + "dotnet_parameterize": "g.V().ValueMap(true)", "go": "g.V().ValueMap(true)", "groovy": "g.V().valueMap(true)", "java": "g.V().valueMap(true)", @@ -37332,6 +39728,7 @@ "canonical": "g.V().valueMap().with(WithOptions.tokens)", "anonymized": "g.V().valueMap().with(WithOptions.tokens)", "dotnet": "g.V().ValueMap().With(WithOptions.Tokens)", + "dotnet_parameterize": "g.V().ValueMap().With(WithOptions.Tokens)", "go": "g.V().ValueMap().With(gremlingo.WithOptions.Tokens)", "groovy": "g.V().valueMap().with(WithOptions.tokens)", "java": "g.V().valueMap().with(WithOptions.tokens)", @@ -37349,6 +39746,7 @@ "canonical": "g.V().valueMap(\"name\", \"age\")", "anonymized": "g.V().valueMap(string0, string1)", "dotnet": "g.V().ValueMap(\"name\", \"age\")", + "dotnet_parameterize": "g.V().ValueMap(\"name\", \"age\")", "go": "g.V().ValueMap(\"name\", \"age\")", "groovy": "g.V().valueMap(\"name\", \"age\")", "java": "g.V().valueMap(\"name\", \"age\")", @@ -37366,6 +39764,7 @@ "canonical": "g.V().valueMap(true, \"name\", \"age\")", "anonymized": "g.V().valueMap(boolean0, string0, string1)", "dotnet": "g.V().ValueMap(true, \"name\", \"age\")", + "dotnet_parameterize": "g.V().ValueMap(true, \"name\", \"age\")", "go": "g.V().ValueMap(true, \"name\", \"age\")", "groovy": "g.V().valueMap(true, \"name\", \"age\")", "java": "g.V().valueMap(true, \"name\", \"age\")", @@ -37383,6 +39782,7 @@ "canonical": "g.V().valueMap(\"name\", \"age\").with(WithOptions.tokens)", "anonymized": "g.V().valueMap(string0, string1).with(WithOptions.tokens)", "dotnet": "g.V().ValueMap(\"name\", \"age\").With(WithOptions.Tokens)", + "dotnet_parameterize": "g.V().ValueMap(\"name\", \"age\").With(WithOptions.Tokens)", "go": "g.V().ValueMap(\"name\", \"age\").With(gremlingo.WithOptions.Tokens)", "groovy": "g.V().valueMap(\"name\", \"age\").with(WithOptions.tokens)", "java": "g.V().valueMap(\"name\", \"age\").with(WithOptions.tokens)", @@ -37400,6 +39800,7 @@ "canonical": "g.V().valueMap(\"name\", \"age\").with(WithOptions.tokens, WithOptions.labels).by(__.unfold())", "anonymized": "g.V().valueMap(string0, string1).with(WithOptions.tokens, WithOptions.labels).by(__.unfold())", "dotnet": "g.V().ValueMap(\"name\", \"age\").With(WithOptions.Tokens, WithOptions.Labels).By(__.Unfold())", + "dotnet_parameterize": "g.V().ValueMap(\"name\", \"age\").With(WithOptions.Tokens, WithOptions.Labels).By(__.Unfold())", "go": "g.V().ValueMap(\"name\", \"age\").With(gremlingo.WithOptions.Tokens, gremlingo.WithOptions.Labels).By(gremlingo.T__.Unfold())", "groovy": "g.V().valueMap(\"name\", \"age\").with(WithOptions.tokens, WithOptions.labels).by(__.unfold())", "java": "g.V().valueMap(\"name\", \"age\").with(WithOptions.tokens, WithOptions.labels).by(__.unfold())", @@ -37417,6 +39818,7 @@ "canonical": "g.V().valueMap(\"name\", \"age\").with(WithOptions.tokens, WithOptions.ids).by(__.unfold())", "anonymized": "g.V().valueMap(string0, string1).with(WithOptions.tokens, WithOptions.ids).by(__.unfold())", "dotnet": "g.V().ValueMap(\"name\", \"age\").With(WithOptions.Tokens, WithOptions.Ids).By(__.Unfold())", + "dotnet_parameterize": "g.V().ValueMap(\"name\", \"age\").With(WithOptions.Tokens, WithOptions.Ids).By(__.Unfold())", "go": "g.V().ValueMap(\"name\", \"age\").With(gremlingo.WithOptions.Tokens, gremlingo.WithOptions.Ids).By(gremlingo.T__.Unfold())", "groovy": "g.V().valueMap(\"name\", \"age\").with(WithOptions.tokens, WithOptions.ids).by(__.unfold())", "java": "g.V().valueMap(\"name\", \"age\").with(WithOptions.tokens, WithOptions.ids).by(__.unfold())", @@ -37434,6 +39836,7 @@ "canonical": "g.V(vid1).out(\"created\").valueMap()", "anonymized": "g.V(vid1).out(string0).valueMap()", "dotnet": "g.V(vid1).Out(\"created\").ValueMap()", + "dotnet_parameterize": "g.V(vid1).Out(\"created\").ValueMap()", "go": "g.V(vid1).Out(\"created\").ValueMap()", "groovy": "g.V(vid1).out(\"created\").valueMap()", "java": "g.V(vid1).out(\"created\").valueMap()", @@ -37451,6 +39854,7 @@ "canonical": "g.V().hasLabel(\"person\").filter(__.outE(\"created\")).valueMap(true)", "anonymized": "g.V().hasLabel(string0).filter(__.outE(string1)).valueMap(boolean0)", "dotnet": "g.V().HasLabel(\"person\").Filter(__.OutE(\"created\")).ValueMap(true)", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Filter(__.OutE(\"created\")).ValueMap(true)", "go": "g.V().HasLabel(\"person\").Filter(gremlingo.T__.OutE(\"created\")).ValueMap(true)", "groovy": "g.V().hasLabel(\"person\").filter(__.outE(\"created\")).valueMap(true)", "java": "g.V().hasLabel(\"person\").filter(__.outE(\"created\")).valueMap(true)", @@ -37468,6 +39872,7 @@ "canonical": "g.V().hasLabel(\"person\").filter(__.outE(\"created\")).valueMap().with(WithOptions.tokens)", "anonymized": "g.V().hasLabel(string0).filter(__.outE(string1)).valueMap().with(WithOptions.tokens)", "dotnet": "g.V().HasLabel(\"person\").Filter(__.OutE(\"created\")).ValueMap().With(WithOptions.Tokens)", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Filter(__.OutE(\"created\")).ValueMap().With(WithOptions.Tokens)", "go": "g.V().HasLabel(\"person\").Filter(gremlingo.T__.OutE(\"created\")).ValueMap().With(gremlingo.WithOptions.Tokens)", "groovy": "g.V().hasLabel(\"person\").filter(__.outE(\"created\")).valueMap().with(WithOptions.tokens)", "java": "g.V().hasLabel(\"person\").filter(__.outE(\"created\")).valueMap().with(WithOptions.tokens)", @@ -37485,6 +39890,7 @@ "canonical": "g.V(vid1).valueMap(\"name\", \"location\").by(__.unfold()).by()", "anonymized": "g.V(vid1).valueMap(string0, string1).by(__.unfold()).by()", "dotnet": "g.V(vid1).ValueMap(\"name\", \"location\").By(__.Unfold()).By()", + "dotnet_parameterize": "g.V(vid1).ValueMap(\"name\", \"location\").By(__.Unfold()).By()", "go": "g.V(vid1).ValueMap(\"name\", \"location\").By(gremlingo.T__.Unfold()).By()", "groovy": "g.V(vid1).valueMap(\"name\", \"location\").by(__.unfold()).by()", "java": "g.V(vid1).valueMap(\"name\", \"location\").by(__.unfold()).by()", @@ -37502,6 +39908,7 @@ "canonical": "g.V().valueMap(\"name\", \"age\", null)", "anonymized": "g.V().valueMap(string0, string1, string2)", "dotnet": "g.V().ValueMap(\"name\", \"age\", null)", + "dotnet_parameterize": "g.V().ValueMap(\"name\", \"age\", null)", "go": "g.V().ValueMap(\"name\", \"age\", nil)", "groovy": "g.V().valueMap(\"name\", \"age\", null)", "java": "g.V().valueMap(\"name\", \"age\", null)", @@ -37519,6 +39926,7 @@ "canonical": "g.V().valueMap(\"name\", \"age\").by(__.is(\"x\")).by(__.unfold())", "anonymized": "g.V().valueMap(string0, string1).by(__.is(string2)).by(__.unfold())", "dotnet": "g.V().ValueMap(\"name\", \"age\").By(__.Is(\"x\")).By(__.Unfold())", + "dotnet_parameterize": "g.V().ValueMap(\"name\", \"age\").By(__.Is(\"x\")).By(__.Unfold())", "go": "g.V().ValueMap(\"name\", \"age\").By(gremlingo.T__.Is(\"x\")).By(gremlingo.T__.Unfold())", "groovy": "g.V().valueMap(\"name\", \"age\").by(__.is(\"x\")).by(__.unfold())", "java": "g.V().valueMap(\"name\", \"age\").by(__.is(\"x\")).by(__.unfold())", @@ -37536,6 +39944,7 @@ "canonical": "g.V(null)", "anonymized": "g.V(object0)", "dotnet": "g.V(null)", + "dotnet_parameterize": "g.V(null)", "go": "g.V(nil)", "groovy": "g.V(null)", "java": "g.V(null)", @@ -37553,6 +39962,7 @@ "canonical": "g.V(xx1)", "anonymized": "g.V(xx1)", "dotnet": "g.V(xx1)", + "dotnet_parameterize": "g.V(xx1)", "go": "g.V(xx1)", "groovy": "g.V(xx1)", "java": "g.V(xx1)", @@ -37570,6 +39980,7 @@ "canonical": "g.V(vid1, null)", "anonymized": "g.V(vid1, object0)", "dotnet": "g.V(vid1, null)", + "dotnet_parameterize": "g.V(vid1, null)", "go": "g.V(vid1, nil)", "groovy": "g.V(vid1, null)", "java": "g.V(vid1, null)", @@ -37587,6 +39998,7 @@ "canonical": "g.V(xx1).values(\"name\")", "anonymized": "g.V(xx1).values(string0)", "dotnet": "g.V(xx1).Values(\"name\")", + "dotnet_parameterize": "g.V(xx1).Values(\"name\")", "go": "g.V(xx1).Values(\"name\")", "groovy": "g.V(xx1).values(\"name\")", "java": "g.V(xx1).values(\"name\")", @@ -37604,6 +40016,7 @@ "canonical": "g.V(xx1).values(\"name\")", "anonymized": "g.V(xx1).values(string0)", "dotnet": "g.V(xx1).Values(\"name\")", + "dotnet_parameterize": "g.V(xx1).Values(\"name\")", "go": "g.V(xx1).Values(\"name\")", "groovy": "g.V(xx1).values(\"name\")", "java": "g.V(xx1).values(\"name\")", @@ -37621,6 +40034,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -37638,6 +40052,7 @@ "canonical": "g.V(vid1).out()", "anonymized": "g.V(vid1).out()", "dotnet": "g.V(vid1).Out()", + "dotnet_parameterize": "g.V(vid1).Out()", "go": "g.V(vid1).Out()", "groovy": "g.V(vid1).out()", "java": "g.V(vid1).out()", @@ -37655,6 +40070,7 @@ "canonical": "g.V(vid1).out()", "anonymized": "g.V(vid1).out()", "dotnet": "g.V(vid1).Out()", + "dotnet_parameterize": "g.V(vid1).Out()", "go": "g.V(vid1).Out()", "groovy": "g.V(vid1).out()", "java": "g.V(vid1).out()", @@ -37672,6 +40088,7 @@ "canonical": "g.V(vid2).in()", "anonymized": "g.V(vid2).in()", "dotnet": "g.V(vid2).In()", + "dotnet_parameterize": "g.V(vid2).In()", "go": "g.V(vid2).In()", "groovy": "g.V(vid2).in()", "java": "g.V(vid2).in()", @@ -37689,6 +40106,7 @@ "canonical": "g.V(vid4).both()", "anonymized": "g.V(vid4).both()", "dotnet": "g.V(vid4).Both()", + "dotnet_parameterize": "g.V(vid4).Both()", "go": "g.V(vid4).Both()", "groovy": "g.V(vid4).both()", "java": "g.V(vid4).both()", @@ -37706,6 +40124,7 @@ "canonical": "g.V(vid1).outE()", "anonymized": "g.V(vid1).outE()", "dotnet": "g.V(vid1).OutE()", + "dotnet_parameterize": "g.V(vid1).OutE()", "go": "g.V(vid1).OutE()", "groovy": "g.V(vid1).outE()", "java": "g.V(vid1).outE()", @@ -37723,6 +40142,7 @@ "canonical": "g.V(vid2).inE()", "anonymized": "g.V(vid2).inE()", "dotnet": "g.V(vid2).InE()", + "dotnet_parameterize": "g.V(vid2).InE()", "go": "g.V(vid2).InE()", "groovy": "g.V(vid2).inE()", "java": "g.V(vid2).inE()", @@ -37740,6 +40160,7 @@ "canonical": "g.V(vid4).bothE(\"created\")", "anonymized": "g.V(vid4).bothE(string0)", "dotnet": "g.V(vid4).BothE(\"created\")", + "dotnet_parameterize": "g.V(vid4).BothE(\"created\")", "go": "g.V(vid4).BothE(\"created\")", "groovy": "g.V(vid4).bothE(\"created\")", "java": "g.V(vid4).bothE(\"created\")", @@ -37757,6 +40178,7 @@ "canonical": "g.V(vid4).bothE(xx1)", "anonymized": "g.V(vid4).bothE(xx1)", "dotnet": "g.V(vid4).BothE((string) xx1)", + "dotnet_parameterize": "g.V(vid4).BothE(new GValue(\"xx1\", (string) xx1))", "go": "g.V(vid4).BothE(xx1)", "groovy": "g.V(vid4).bothE(xx1)", "java": "g.V(vid4).bothE(xx1)", @@ -37774,6 +40196,7 @@ "canonical": "g.V(vid4).bothE()", "anonymized": "g.V(vid4).bothE()", "dotnet": "g.V(vid4).BothE()", + "dotnet_parameterize": "g.V(vid4).BothE()", "go": "g.V(vid4).BothE()", "groovy": "g.V(vid4).bothE()", "java": "g.V(vid4).bothE()", @@ -37791,6 +40214,7 @@ "canonical": "g.V().out().outE().inV().inE().inV().both().values(\"name\")", "anonymized": "g.V().out().outE().inV().inE().inV().both().values(string0)", "dotnet": "g.V().Out().OutE().InV().InE().InV().Both().Values(\"name\")", + "dotnet_parameterize": "g.V().Out().OutE().InV().InE().InV().Both().Values(\"name\")", "go": "g.V().Out().OutE().InV().InE().InV().Both().Values(\"name\")", "groovy": "g.V().out().outE().inV().inE().inV().both().values(\"name\")", "java": "g.V().out().outE().inV().inE().inV().both().values(\"name\")", @@ -37808,6 +40232,7 @@ "canonical": "g.V(vid2).bothE()", "anonymized": "g.V(vid2).bothE()", "dotnet": "g.V(vid2).BothE()", + "dotnet_parameterize": "g.V(vid2).BothE()", "go": "g.V(vid2).BothE()", "groovy": "g.V(vid2).bothE()", "java": "g.V(vid2).bothE()", @@ -37825,6 +40250,7 @@ "canonical": "g.V(vid1).out(\"knows\")", "anonymized": "g.V(vid1).out(string0)", "dotnet": "g.V(vid1).Out(\"knows\")", + "dotnet_parameterize": "g.V(vid1).Out(\"knows\")", "go": "g.V(vid1).Out(\"knows\")", "groovy": "g.V(vid1).out(\"knows\")", "java": "g.V(vid1).out(\"knows\")", @@ -37842,6 +40268,7 @@ "canonical": "g.V(vid1).out(\"knows\")", "anonymized": "g.V(vid1).out(string0)", "dotnet": "g.V(vid1).Out(\"knows\")", + "dotnet_parameterize": "g.V(vid1).Out(\"knows\")", "go": "g.V(vid1).Out(\"knows\")", "groovy": "g.V(vid1).out(\"knows\")", "java": "g.V(vid1).out(\"knows\")", @@ -37859,6 +40286,7 @@ "canonical": "g.V(vid1).out(\"knows\", \"created\")", "anonymized": "g.V(vid1).out(string0, string1)", "dotnet": "g.V(vid1).Out(\"knows\", \"created\")", + "dotnet_parameterize": "g.V(vid1).Out(\"knows\", \"created\")", "go": "g.V(vid1).Out(\"knows\", \"created\")", "groovy": "g.V(vid1).out(\"knows\", \"created\")", "java": "g.V(vid1).out(\"knows\", \"created\")", @@ -37876,6 +40304,7 @@ "canonical": "g.V(vid1).out(xx2, xx3)", "anonymized": "g.V(vid1).out(xx2, xx3)", "dotnet": "g.V(vid1).Out((string) xx2, (string) xx3)", + "dotnet_parameterize": "g.V(vid1).Out(new GValue(\"xx2\", (string) xx2), new GValue(\"xx3\", (string) xx3))", "go": "g.V(vid1).Out(xx2, xx3)", "groovy": "g.V(vid1).out(xx2, xx3)", "java": "g.V(vid1).out(xx2, xx3)", @@ -37893,6 +40322,7 @@ "canonical": "g.V().out().out()", "anonymized": "g.V().out().out()", "dotnet": "g.V().Out().Out()", + "dotnet_parameterize": "g.V().Out().Out()", "go": "g.V().Out().Out()", "groovy": "g.V().out().out()", "java": "g.V().out().out()", @@ -37910,6 +40340,7 @@ "canonical": "g.V(vid1).out().out().out()", "anonymized": "g.V(vid1).out().out().out()", "dotnet": "g.V(vid1).Out().Out().Out()", + "dotnet_parameterize": "g.V(vid1).Out().Out().Out()", "go": "g.V(vid1).Out().Out().Out()", "groovy": "g.V(vid1).out().out().out()", "java": "g.V(vid1).out().out().out()", @@ -37927,6 +40358,7 @@ "canonical": "g.V(vid1).out().values(\"name\")", "anonymized": "g.V(vid1).out().values(string0)", "dotnet": "g.V(vid1).Out().Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).Out().Values(\"name\")", "go": "g.V(vid1).Out().Values(\"name\")", "groovy": "g.V(vid1).out().values(\"name\")", "java": "g.V(vid1).out().values(\"name\")", @@ -37944,6 +40376,7 @@ "canonical": "g.V(vid1).to(Direction.OUT, \"knows\")", "anonymized": "g.V(vid1).to(Direction.OUT, string0)", "dotnet": "g.V(vid1).To(Direction.Out, \"knows\")", + "dotnet_parameterize": "g.V(vid1).To(Direction.Out, \"knows\")", "go": "g.V(vid1).To(gremlingo.Direction.Out, \"knows\")", "groovy": "g.V(vid1).to(Direction.OUT, \"knows\")", "java": "g.V(vid1).to(Direction.OUT, \"knows\")", @@ -37961,6 +40394,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -37973,6 +40407,7 @@ "canonical": "g.V().has('software', 'name', 'lop').drop()", "anonymized": "g.V().has(string0, string1, string2).drop()", "dotnet": "g.V().Has(\"software\", \"name\", \"lop\").Drop()", + "dotnet_parameterize": "g.V().Has(\"software\", \"name\", \"lop\").Drop()", "go": "g.V().Has(\"software\", \"name\", \"lop\").Drop()", "groovy": "g.V().has('software', 'name', 'lop').drop()", "java": "g.V().has(\"software\", \"name\", \"lop\").drop()", @@ -37985,6 +40420,7 @@ "canonical": "g.V(vid1, vid2, vid3, vid4)", "anonymized": "g.V(vid1, vid2, vid3, vid4)", "dotnet": "g.V(vid1, vid2, vid3, vid4)", + "dotnet_parameterize": "g.V(vid1, vid2, vid3, vid4)", "go": "g.V(vid1, vid2, vid3, vid4)", "groovy": "g.V(vid1, vid2, vid3, vid4)", "java": "g.V(vid1, vid2, vid3, vid4)", @@ -38002,6 +40438,7 @@ "canonical": "g.V().hasLabel(\"person\").V().hasLabel(\"software\").values(\"name\")", "anonymized": "g.V().hasLabel(string0).V().hasLabel(string1).values(string2)", "dotnet": "g.V().HasLabel(\"person\").V().HasLabel(\"software\").Values(\"name\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").V().HasLabel(\"software\").Values(\"name\")", "go": "g.V().HasLabel(\"person\").V().HasLabel(\"software\").Values(\"name\")", "groovy": "g.V().hasLabel(\"person\").V().hasLabel(\"software\").values(\"name\")", "java": "g.V().hasLabel(\"person\").V().hasLabel(\"software\").values(\"name\")", @@ -38019,6 +40456,7 @@ "canonical": "g.V().hasLabel(\"loops\").bothE(\"self\")", "anonymized": "g.V().hasLabel(string0).bothE(string1)", "dotnet": "g.V().HasLabel(\"loops\").BothE(\"self\")", + "dotnet_parameterize": "g.V().HasLabel(\"loops\").BothE(\"self\")", "go": "g.V().HasLabel(\"loops\").BothE(\"self\")", "groovy": "g.V().hasLabel(\"loops\").bothE(\"self\")", "java": "g.V().hasLabel(\"loops\").bothE(\"self\")", @@ -38036,6 +40474,7 @@ "canonical": "g.V().hasLabel(\"loops\").both(\"self\")", "anonymized": "g.V().hasLabel(string0).both(string1)", "dotnet": "g.V().HasLabel(\"loops\").Both(\"self\")", + "dotnet_parameterize": "g.V().HasLabel(\"loops\").Both(\"self\")", "go": "g.V().HasLabel(\"loops\").Both(\"self\")", "groovy": "g.V().hasLabel(\"loops\").both(\"self\")", "java": "g.V().hasLabel(\"loops\").both(\"self\")", @@ -38053,6 +40492,7 @@ "canonical": "g.inject(1).V(null)", "anonymized": "g.inject(number0).V(object0)", "dotnet": "g.Inject(1).V(null)", + "dotnet_parameterize": "g.Inject(1).V(null)", "go": "g.Inject(1).V(nil)", "groovy": "g.inject(1).V(null)", "java": "g.inject(1).V(null)", @@ -38070,6 +40510,7 @@ "canonical": "g.inject(1).V(vid1, null)", "anonymized": "g.inject(number0).V(vid1, object0)", "dotnet": "g.Inject(1).V(vid1, null)", + "dotnet_parameterize": "g.Inject(1).V(vid1, null)", "go": "g.Inject(1).V(vid1, nil)", "groovy": "g.inject(1).V(vid1, null)", "java": "g.inject(1).V(vid1, null)", @@ -38087,6 +40528,7 @@ "canonical": "g.V(vid1).V().values(\"name\")", "anonymized": "g.V(vid1).V().values(string0)", "dotnet": "g.V(vid1).V().Values(\"name\")", + "dotnet_parameterize": "g.V(vid1).V().Values(\"name\")", "go": "g.V(vid1).V().Values(\"name\")", "groovy": "g.V(vid1).V().values(\"name\")", "java": "g.V(vid1).V().values(\"name\")", @@ -38104,6 +40546,7 @@ "canonical": "g.V().out(\"knows\").V().values(\"name\")", "anonymized": "g.V().out(string0).V().values(string1)", "dotnet": "g.V().Out(\"knows\").V().Values(\"name\")", + "dotnet_parameterize": "g.V().Out(\"knows\").V().Values(\"name\")", "go": "g.V().Out(\"knows\").V().Values(\"name\")", "groovy": "g.V().out(\"knows\").V().values(\"name\")", "java": "g.V().out(\"knows\").V().values(\"name\")", @@ -38121,6 +40564,7 @@ "canonical": "g.V().has(\"artist\", \"name\", \"Garcia\").in(\"sungBy\").as(\"song\").V().has(\"artist\", \"name\", \"Willie_Dixon\").in(\"writtenBy\").where(P.eq(\"song\")).values(\"name\")", "anonymized": "g.V().has(string0, string1, string2).in(string3).as(string4).V().has(string0, string1, string5).in(string6).where(P.eq(string4)).values(string1)", "dotnet": "g.V().Has(\"artist\", \"name\", \"Garcia\").In(\"sungBy\").As(\"song\").V().Has(\"artist\", \"name\", \"Willie_Dixon\").In(\"writtenBy\").Where(P.Eq(\"song\")).Values(\"name\")", + "dotnet_parameterize": "g.V().Has(\"artist\", \"name\", \"Garcia\").In(\"sungBy\").As(\"song\").V().Has(\"artist\", \"name\", \"Willie_Dixon\").In(\"writtenBy\").Where(P.Eq(\"song\")).Values(\"name\")", "go": "g.V().Has(\"artist\", \"name\", \"Garcia\").In(\"sungBy\").As(\"song\").V().Has(\"artist\", \"name\", \"Willie_Dixon\").In(\"writtenBy\").Where(gremlingo.P.Eq(\"song\")).Values(\"name\")", "groovy": "g.V().has(\"artist\", \"name\", \"Garcia\").in(\"sungBy\").as(\"song\").V().has(\"artist\", \"name\", \"Willie_Dixon\").in(\"writtenBy\").where(P.eq(\"song\")).values(\"name\")", "java": "g.V().has(\"artist\", \"name\", \"Garcia\").in(\"sungBy\").as(\"song\").V().has(\"artist\", \"name\", \"Willie_Dixon\").in(\"writtenBy\").where(P.eq(\"song\")).values(\"name\")", @@ -38138,6 +40582,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "anonymized": "g.addV(string0).property(string1, string2).property(string3, number0).as(string2).addV(string0).property(string1, string4).property(string3, number1).as(string4).addV(string5).property(string1, string6).property(string7, string8).as(string6).addV(string0).property(string1, string9).property(string3, number2).as(string9).addV(string5).property(string1, string10).property(string7, string8).as(string10).addV(string0).property(string1, string11).property(string3, number3).as(string12).addE(string13).from(string2).to(string4).property(string14, double0).addE(string13).from(string2).to(string9).property(string14, double1).addE(string15).from(string2).to(string6).property(string14, double2).addE(string15).from(string9).to(string10).property(string14, double1).addE(string15).from(string9).to(string6).property(string14, double2).addE(string15).from(string11).to(string6).property(string14, double3)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV((string) \"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV((string) \"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV((string) \"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV((string) \"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV((string) \"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE((string) \"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5d).AddE((string) \"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0d).AddE((string) \"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4d).AddE((string) \"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2d)", "go": "g.AddV(\"person\").Property(\"name\", \"marko\").Property(\"age\", 29).As(\"marko\").AddV(\"person\").Property(\"name\", \"vadas\").Property(\"age\", 27).As(\"vadas\").AddV(\"software\").Property(\"name\", \"lop\").Property(\"lang\", \"java\").As(\"lop\").AddV(\"person\").Property(\"name\", \"josh\").Property(\"age\", 32).As(\"josh\").AddV(\"software\").Property(\"name\", \"ripple\").Property(\"lang\", \"java\").As(\"ripple\").AddV(\"person\").Property(\"name\", \"peter\").Property(\"age\", 35).As(\"peter\").AddE(\"knows\").From(\"marko\").To(\"vadas\").Property(\"weight\", 0.5).AddE(\"knows\").From(\"marko\").To(\"josh\").Property(\"weight\", 1.0).AddE(\"created\").From(\"marko\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"josh\").To(\"ripple\").Property(\"weight\", 1.0).AddE(\"created\").From(\"josh\").To(\"lop\").Property(\"weight\", 0.4).AddE(\"created\").From(\"peter\").To(\"lop\").Property(\"weight\", 0.2)", "groovy": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as('peter').addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", "java": "g.addV(\"person\").property(\"name\", \"marko\").property(\"age\", 29).as(\"marko\").addV(\"person\").property(\"name\", \"vadas\").property(\"age\", 27).as(\"vadas\").addV(\"software\").property(\"name\", \"lop\").property(\"lang\", \"java\").as(\"lop\").addV(\"person\").property(\"name\", \"josh\").property(\"age\", 32).as(\"josh\").addV(\"software\").property(\"name\", \"ripple\").property(\"lang\", \"java\").as(\"ripple\").addV(\"person\").property(\"name\", \"peter\").property(\"age\", 35).as(\"peter\").addE(\"knows\").from(\"marko\").to(\"vadas\").property(\"weight\", 0.5d).addE(\"knows\").from(\"marko\").to(\"josh\").property(\"weight\", 1.0d).addE(\"created\").from(\"marko\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"josh\").to(\"ripple\").property(\"weight\", 1.0d).addE(\"created\").from(\"josh\").to(\"lop\").property(\"weight\", 0.4d).addE(\"created\").from(\"peter\").to(\"lop\").property(\"weight\", 0.2d)", @@ -38150,6 +40595,7 @@ "canonical": "g.V().hasLabel(\"person\").as(\"p\").V(xx1).addE(\"uses\").from(\"p\")", "anonymized": "g.V().hasLabel(string0).as(string1).V(xx1).addE(string2).from(string1)", "dotnet": "g.V().HasLabel(\"person\").As(\"p\").V(xx1).AddE((string) \"uses\").From(\"p\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").As(\"p\").V(xx1).AddE((string) \"uses\").From(\"p\")", "go": "g.V().HasLabel(\"person\").As(\"p\").V(xx1).AddE(\"uses\").From(\"p\")", "groovy": "g.V().hasLabel(\"person\").as(\"p\").V(xx1).addE(\"uses\").from(\"p\")", "java": "g.V().hasLabel(\"person\").as(\"p\").V(xx1).addE(\"uses\").from(\"p\")", @@ -38162,6 +40608,7 @@ "canonical": "g.E().hasLabel(\"uses\")", "anonymized": "g.E().hasLabel(string0)", "dotnet": "g.E().HasLabel(\"uses\")", + "dotnet_parameterize": "g.E().HasLabel(\"uses\")", "go": "g.E().HasLabel(\"uses\")", "groovy": "g.E().hasLabel(\"uses\")", "java": "g.E().hasLabel(\"uses\")", @@ -38174,6 +40621,7 @@ "canonical": "g.V(vid1).outE(\"uses\")", "anonymized": "g.V(vid1).outE(string0)", "dotnet": "g.V(vid1).OutE(\"uses\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"uses\")", "go": "g.V(vid1).OutE(\"uses\")", "groovy": "g.V(vid1).outE(\"uses\")", "java": "g.V(vid1).outE(\"uses\")", @@ -38186,6 +40634,7 @@ "canonical": "g.V(vid2).outE(\"uses\")", "anonymized": "g.V(vid2).outE(string0)", "dotnet": "g.V(vid2).OutE(\"uses\")", + "dotnet_parameterize": "g.V(vid2).OutE(\"uses\")", "go": "g.V(vid2).OutE(\"uses\")", "groovy": "g.V(vid2).outE(\"uses\")", "java": "g.V(vid2).outE(\"uses\")", @@ -38198,6 +40647,7 @@ "canonical": "g.V(vid3).inE(\"uses\")", "anonymized": "g.V(vid3).inE(string0)", "dotnet": "g.V(vid3).InE(\"uses\")", + "dotnet_parameterize": "g.V(vid3).InE(\"uses\")", "go": "g.V(vid3).InE(\"uses\")", "groovy": "g.V(vid3).inE(\"uses\")", "java": "g.V(vid3).inE(\"uses\")", @@ -38210,6 +40660,7 @@ "canonical": "g.V(vid4).outE(\"uses\")", "anonymized": "g.V(vid4).outE(string0)", "dotnet": "g.V(vid4).OutE(\"uses\")", + "dotnet_parameterize": "g.V(vid4).OutE(\"uses\")", "go": "g.V(vid4).OutE(\"uses\")", "groovy": "g.V(vid4).outE(\"uses\")", "java": "g.V(vid4).outE(\"uses\")", @@ -38222,6 +40673,7 @@ "canonical": "g.V(vid5).inE(\"uses\")", "anonymized": "g.V(vid5).inE(string0)", "dotnet": "g.V(vid5).InE(\"uses\")", + "dotnet_parameterize": "g.V(vid5).InE(\"uses\")", "go": "g.V(vid5).InE(\"uses\")", "groovy": "g.V(vid5).inE(\"uses\")", "java": "g.V(vid5).inE(\"uses\")", @@ -38234,6 +40686,7 @@ "canonical": "g.V(vid6).outE(\"uses\")", "anonymized": "g.V(vid6).outE(string0)", "dotnet": "g.V(vid6).OutE(\"uses\")", + "dotnet_parameterize": "g.V(vid6).OutE(\"uses\")", "go": "g.V(vid6).OutE(\"uses\")", "groovy": "g.V(vid6).outE(\"uses\")", "java": "g.V(vid6).outE(\"uses\")", @@ -38251,6 +40704,7 @@ "canonical": "g.inject(null).is(P.eq(null))", "anonymized": "g.inject(object0).is(P.eq(object0))", "dotnet": "g.Inject(null).Is(P.Eq(null))", + "dotnet_parameterize": "g.Inject(null).Is(P.Eq(null))", "go": "g.Inject(nil).Is(gremlingo.P.Eq(nil))", "groovy": "g.inject(null).is(P.eq(null))", "java": "g.inject(null).is(P.eq(null))", @@ -38268,6 +40722,7 @@ "canonical": "g.inject(null).is(P.neq(null))", "anonymized": "g.inject(object0).is(P.neq(object0))", "dotnet": "g.Inject(null).Is(P.Neq(null))", + "dotnet_parameterize": "g.Inject(null).Is(P.Neq(null))", "go": "g.Inject(nil).Is(gremlingo.P.Neq(nil))", "groovy": "g.inject(null).is(P.neq(null))", "java": "g.inject(null).is(P.neq(null))", @@ -38285,6 +40740,7 @@ "canonical": "g.inject(null).is(P.lt(null))", "anonymized": "g.inject(object0).is(P.lt(object0))", "dotnet": "g.Inject(null).Is(P.Lt(null))", + "dotnet_parameterize": "g.Inject(null).Is(P.Lt(null))", "go": "g.Inject(nil).Is(gremlingo.P.Lt(nil))", "groovy": "g.inject(null).is(P.lt(null))", "java": "g.inject(null).is(P.lt(null))", @@ -38302,6 +40758,7 @@ "canonical": "g.inject(null).is(P.lte(null))", "anonymized": "g.inject(object0).is(P.lte(object0))", "dotnet": "g.Inject(null).Is(P.Lte(null))", + "dotnet_parameterize": "g.Inject(null).Is(P.Lte(null))", "go": "g.Inject(nil).Is(gremlingo.P.Lte(nil))", "groovy": "g.inject(null).is(P.lte(null))", "java": "g.inject(null).is(P.lte(null))", @@ -38319,6 +40776,7 @@ "canonical": "g.inject(null).is(P.gt(null))", "anonymized": "g.inject(object0).is(P.gt(object0))", "dotnet": "g.Inject(null).Is(P.Gt(null))", + "dotnet_parameterize": "g.Inject(null).Is(P.Gt(null))", "go": "g.Inject(nil).Is(gremlingo.P.Gt(nil))", "groovy": "g.inject(null).is(P.gt(null))", "java": "g.inject(null).is(P.gt(null))", @@ -38336,6 +40794,7 @@ "canonical": "g.inject(null).is(P.gte(null))", "anonymized": "g.inject(object0).is(P.gte(object0))", "dotnet": "g.Inject(null).Is(P.Gte(null))", + "dotnet_parameterize": "g.Inject(null).Is(P.Gte(null))", "go": "g.Inject(nil).Is(gremlingo.P.Gte(nil))", "groovy": "g.inject(null).is(P.gte(null))", "java": "g.inject(null).is(P.gte(null))", @@ -38353,6 +40812,7 @@ "canonical": "g.inject(NaN).is(P.eq(NaN))", "anonymized": "g.inject(number0).is(P.eq(number0))", "dotnet": "g.Inject(Double.NaN).Is(P.Eq(Double.NaN))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Eq(Double.NaN))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Eq(math.NaN()))", "groovy": "g.inject(NaN).is(P.eq(NaN))", "java": "g.inject(Double.NaN).is(P.eq(Double.NaN))", @@ -38370,6 +40830,7 @@ "canonical": "g.inject(NaN).is(P.neq(NaN))", "anonymized": "g.inject(number0).is(P.neq(number0))", "dotnet": "g.Inject(Double.NaN).Is(P.Neq(Double.NaN))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Neq(Double.NaN))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Neq(math.NaN()))", "groovy": "g.inject(NaN).is(P.neq(NaN))", "java": "g.inject(Double.NaN).is(P.neq(Double.NaN))", @@ -38387,6 +40848,7 @@ "canonical": "g.inject(NaN).is(P.lt(NaN))", "anonymized": "g.inject(number0).is(P.lt(number0))", "dotnet": "g.Inject(Double.NaN).Is(P.Lt(Double.NaN))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Lt(Double.NaN))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Lt(math.NaN()))", "groovy": "g.inject(NaN).is(P.lt(NaN))", "java": "g.inject(Double.NaN).is(P.lt(Double.NaN))", @@ -38404,6 +40866,7 @@ "canonical": "g.inject(NaN).is(P.lte(NaN))", "anonymized": "g.inject(number0).is(P.lte(number0))", "dotnet": "g.Inject(Double.NaN).Is(P.Lte(Double.NaN))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Lte(Double.NaN))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Lte(math.NaN()))", "groovy": "g.inject(NaN).is(P.lte(NaN))", "java": "g.inject(Double.NaN).is(P.lte(Double.NaN))", @@ -38421,6 +40884,7 @@ "canonical": "g.inject(NaN).is(P.gt(NaN))", "anonymized": "g.inject(number0).is(P.gt(number0))", "dotnet": "g.Inject(Double.NaN).Is(P.Gt(Double.NaN))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Gt(Double.NaN))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Gt(math.NaN()))", "groovy": "g.inject(NaN).is(P.gt(NaN))", "java": "g.inject(Double.NaN).is(P.gt(Double.NaN))", @@ -38438,6 +40902,7 @@ "canonical": "g.inject(NaN).is(P.gte(NaN))", "anonymized": "g.inject(number0).is(P.gte(number0))", "dotnet": "g.Inject(Double.NaN).Is(P.Gte(Double.NaN))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Gte(Double.NaN))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Gte(math.NaN()))", "groovy": "g.inject(NaN).is(P.gte(NaN))", "java": "g.inject(Double.NaN).is(P.gte(Double.NaN))", @@ -38455,6 +40920,7 @@ "canonical": "g.inject(1.0d).is(P.eq(NaN))", "anonymized": "g.inject(double0).is(P.eq(number0))", "dotnet": "g.Inject(1.0d).Is(P.Eq(Double.NaN))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Eq(Double.NaN))", "go": "g.Inject(1.0).Is(gremlingo.P.Eq(math.NaN()))", "groovy": "g.inject(1.0d).is(P.eq(NaN))", "java": "g.inject(1.0d).is(P.eq(Double.NaN))", @@ -38472,6 +40938,7 @@ "canonical": "g.inject(1.0d).is(P.neq(NaN))", "anonymized": "g.inject(double0).is(P.neq(number0))", "dotnet": "g.Inject(1.0d).Is(P.Neq(Double.NaN))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Neq(Double.NaN))", "go": "g.Inject(1.0).Is(gremlingo.P.Neq(math.NaN()))", "groovy": "g.inject(1.0d).is(P.neq(NaN))", "java": "g.inject(1.0d).is(P.neq(Double.NaN))", @@ -38489,6 +40956,7 @@ "canonical": "g.inject(1.0d).is(P.lt(NaN))", "anonymized": "g.inject(double0).is(P.lt(number0))", "dotnet": "g.Inject(1.0d).Is(P.Lt(Double.NaN))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Lt(Double.NaN))", "go": "g.Inject(1.0).Is(gremlingo.P.Lt(math.NaN()))", "groovy": "g.inject(1.0d).is(P.lt(NaN))", "java": "g.inject(1.0d).is(P.lt(Double.NaN))", @@ -38506,6 +40974,7 @@ "canonical": "g.inject(1.0d).is(P.lte(NaN))", "anonymized": "g.inject(double0).is(P.lte(number0))", "dotnet": "g.Inject(1.0d).Is(P.Lte(Double.NaN))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Lte(Double.NaN))", "go": "g.Inject(1.0).Is(gremlingo.P.Lte(math.NaN()))", "groovy": "g.inject(1.0d).is(P.lte(NaN))", "java": "g.inject(1.0d).is(P.lte(Double.NaN))", @@ -38523,6 +40992,7 @@ "canonical": "g.inject(1.0d).is(P.gt(NaN))", "anonymized": "g.inject(double0).is(P.gt(number0))", "dotnet": "g.Inject(1.0d).Is(P.Gt(Double.NaN))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Gt(Double.NaN))", "go": "g.Inject(1.0).Is(gremlingo.P.Gt(math.NaN()))", "groovy": "g.inject(1.0d).is(P.gt(NaN))", "java": "g.inject(1.0d).is(P.gt(Double.NaN))", @@ -38540,6 +41010,7 @@ "canonical": "g.inject(1.0d).is(P.gte(NaN))", "anonymized": "g.inject(double0).is(P.gte(number0))", "dotnet": "g.Inject(1.0d).Is(P.Gte(Double.NaN))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Gte(Double.NaN))", "go": "g.Inject(1.0).Is(gremlingo.P.Gte(math.NaN()))", "groovy": "g.inject(1.0d).is(P.gte(NaN))", "java": "g.inject(1.0d).is(P.gte(Double.NaN))", @@ -38557,6 +41028,7 @@ "canonical": "g.inject(NaN).is(P.eq(1.0d))", "anonymized": "g.inject(number0).is(P.eq(double0))", "dotnet": "g.Inject(Double.NaN).Is(P.Eq(1.0d))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Eq(1.0d))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Eq(1.0))", "groovy": "g.inject(NaN).is(P.eq(1.0d))", "java": "g.inject(Double.NaN).is(P.eq(1.0d))", @@ -38574,6 +41046,7 @@ "canonical": "g.inject(NaN).is(P.neq(1.0d))", "anonymized": "g.inject(number0).is(P.neq(double0))", "dotnet": "g.Inject(Double.NaN).Is(P.Neq(1.0d))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Neq(1.0d))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Neq(1.0))", "groovy": "g.inject(NaN).is(P.neq(1.0d))", "java": "g.inject(Double.NaN).is(P.neq(1.0d))", @@ -38591,6 +41064,7 @@ "canonical": "g.inject(NaN).is(P.lt(1.0d))", "anonymized": "g.inject(number0).is(P.lt(double0))", "dotnet": "g.Inject(Double.NaN).Is(P.Lt(1.0d))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Lt(1.0d))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Lt(1.0))", "groovy": "g.inject(NaN).is(P.lt(1.0d))", "java": "g.inject(Double.NaN).is(P.lt(1.0d))", @@ -38608,6 +41082,7 @@ "canonical": "g.inject(NaN).is(P.lte(1.0d))", "anonymized": "g.inject(number0).is(P.lte(double0))", "dotnet": "g.Inject(Double.NaN).Is(P.Lte(1.0d))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Lte(1.0d))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Lte(1.0))", "groovy": "g.inject(NaN).is(P.lte(1.0d))", "java": "g.inject(Double.NaN).is(P.lte(1.0d))", @@ -38625,6 +41100,7 @@ "canonical": "g.inject(NaN).is(P.gt(1.0d))", "anonymized": "g.inject(number0).is(P.gt(double0))", "dotnet": "g.Inject(Double.NaN).Is(P.Gt(1.0d))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Gt(1.0d))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Gt(1.0))", "groovy": "g.inject(NaN).is(P.gt(1.0d))", "java": "g.inject(Double.NaN).is(P.gt(1.0d))", @@ -38642,6 +41118,7 @@ "canonical": "g.inject(NaN).is(P.gte(1.0d))", "anonymized": "g.inject(number0).is(P.gte(double0))", "dotnet": "g.Inject(Double.NaN).Is(P.Gte(1.0d))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Gte(1.0d))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Gte(1.0))", "groovy": "g.inject(NaN).is(P.gte(1.0d))", "java": "g.inject(Double.NaN).is(P.gte(1.0d))", @@ -38659,6 +41136,7 @@ "canonical": "g.inject(1.0d).is(P.eq(null))", "anonymized": "g.inject(double0).is(P.eq(object0))", "dotnet": "g.Inject(1.0d).Is(P.Eq(null))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Eq(null))", "go": "g.Inject(1.0).Is(gremlingo.P.Eq(nil))", "groovy": "g.inject(1.0d).is(P.eq(null))", "java": "g.inject(1.0d).is(P.eq(null))", @@ -38676,6 +41154,7 @@ "canonical": "g.inject(1.0d).is(P.neq(null))", "anonymized": "g.inject(double0).is(P.neq(object0))", "dotnet": "g.Inject(1.0d).Is(P.Neq(null))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Neq(null))", "go": "g.Inject(1.0).Is(gremlingo.P.Neq(nil))", "groovy": "g.inject(1.0d).is(P.neq(null))", "java": "g.inject(1.0d).is(P.neq(null))", @@ -38693,6 +41172,7 @@ "canonical": "g.inject(1.0d).is(P.lt(null))", "anonymized": "g.inject(double0).is(P.lt(object0))", "dotnet": "g.Inject(1.0d).Is(P.Lt(null))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Lt(null))", "go": "g.Inject(1.0).Is(gremlingo.P.Lt(nil))", "groovy": "g.inject(1.0d).is(P.lt(null))", "java": "g.inject(1.0d).is(P.lt(null))", @@ -38710,6 +41190,7 @@ "canonical": "g.inject(1.0d).is(P.lte(null))", "anonymized": "g.inject(double0).is(P.lte(object0))", "dotnet": "g.Inject(1.0d).Is(P.Lte(null))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Lte(null))", "go": "g.Inject(1.0).Is(gremlingo.P.Lte(nil))", "groovy": "g.inject(1.0d).is(P.lte(null))", "java": "g.inject(1.0d).is(P.lte(null))", @@ -38727,6 +41208,7 @@ "canonical": "g.inject(1.0d).is(P.gt(null))", "anonymized": "g.inject(double0).is(P.gt(object0))", "dotnet": "g.Inject(1.0d).Is(P.Gt(null))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Gt(null))", "go": "g.Inject(1.0).Is(gremlingo.P.Gt(nil))", "groovy": "g.inject(1.0d).is(P.gt(null))", "java": "g.inject(1.0d).is(P.gt(null))", @@ -38744,6 +41226,7 @@ "canonical": "g.inject(1.0d).is(P.gte(null))", "anonymized": "g.inject(double0).is(P.gte(object0))", "dotnet": "g.Inject(1.0d).Is(P.Gte(null))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Gte(null))", "go": "g.Inject(1.0).Is(gremlingo.P.Gte(nil))", "groovy": "g.inject(1.0d).is(P.gte(null))", "java": "g.inject(1.0d).is(P.gte(null))", @@ -38761,6 +41244,7 @@ "canonical": "g.inject(null).is(P.eq(1.0d))", "anonymized": "g.inject(object0).is(P.eq(double0))", "dotnet": "g.Inject(null).Is(P.Eq(1.0d))", + "dotnet_parameterize": "g.Inject(null).Is(P.Eq(1.0d))", "go": "g.Inject(nil).Is(gremlingo.P.Eq(1.0))", "groovy": "g.inject(null).is(P.eq(1.0d))", "java": "g.inject(null).is(P.eq(1.0d))", @@ -38778,6 +41262,7 @@ "canonical": "g.inject(null).is(P.neq(1.0d))", "anonymized": "g.inject(object0).is(P.neq(double0))", "dotnet": "g.Inject(null).Is(P.Neq(1.0d))", + "dotnet_parameterize": "g.Inject(null).Is(P.Neq(1.0d))", "go": "g.Inject(nil).Is(gremlingo.P.Neq(1.0))", "groovy": "g.inject(null).is(P.neq(1.0d))", "java": "g.inject(null).is(P.neq(1.0d))", @@ -38795,6 +41280,7 @@ "canonical": "g.inject(null).is(P.lt(1.0d))", "anonymized": "g.inject(object0).is(P.lt(double0))", "dotnet": "g.Inject(null).Is(P.Lt(1.0d))", + "dotnet_parameterize": "g.Inject(null).Is(P.Lt(1.0d))", "go": "g.Inject(nil).Is(gremlingo.P.Lt(1.0))", "groovy": "g.inject(null).is(P.lt(1.0d))", "java": "g.inject(null).is(P.lt(1.0d))", @@ -38812,6 +41298,7 @@ "canonical": "g.inject(null).is(P.lte(1.0d))", "anonymized": "g.inject(object0).is(P.lte(double0))", "dotnet": "g.Inject(null).Is(P.Lte(1.0d))", + "dotnet_parameterize": "g.Inject(null).Is(P.Lte(1.0d))", "go": "g.Inject(nil).Is(gremlingo.P.Lte(1.0))", "groovy": "g.inject(null).is(P.lte(1.0d))", "java": "g.inject(null).is(P.lte(1.0d))", @@ -38829,6 +41316,7 @@ "canonical": "g.inject(null).is(P.gt(1.0d))", "anonymized": "g.inject(object0).is(P.gt(double0))", "dotnet": "g.Inject(null).Is(P.Gt(1.0d))", + "dotnet_parameterize": "g.Inject(null).Is(P.Gt(1.0d))", "go": "g.Inject(nil).Is(gremlingo.P.Gt(1.0))", "groovy": "g.inject(null).is(P.gt(1.0d))", "java": "g.inject(null).is(P.gt(1.0d))", @@ -38846,6 +41334,7 @@ "canonical": "g.inject(null).is(P.gte(1.0d))", "anonymized": "g.inject(object0).is(P.gte(double0))", "dotnet": "g.Inject(null).Is(P.Gte(1.0d))", + "dotnet_parameterize": "g.Inject(null).Is(P.Gte(1.0d))", "go": "g.Inject(nil).Is(gremlingo.P.Gte(1.0))", "groovy": "g.inject(null).is(P.gte(1.0d))", "java": "g.inject(null).is(P.gte(1.0d))", @@ -38863,6 +41352,7 @@ "canonical": "g.inject(null).is(P.eq(NaN))", "anonymized": "g.inject(object0).is(P.eq(number0))", "dotnet": "g.Inject(null).Is(P.Eq(Double.NaN))", + "dotnet_parameterize": "g.Inject(null).Is(P.Eq(Double.NaN))", "go": "g.Inject(nil).Is(gremlingo.P.Eq(math.NaN()))", "groovy": "g.inject(null).is(P.eq(NaN))", "java": "g.inject(null).is(P.eq(Double.NaN))", @@ -38880,6 +41370,7 @@ "canonical": "g.inject(null).is(P.neq(NaN))", "anonymized": "g.inject(object0).is(P.neq(number0))", "dotnet": "g.Inject(null).Is(P.Neq(Double.NaN))", + "dotnet_parameterize": "g.Inject(null).Is(P.Neq(Double.NaN))", "go": "g.Inject(nil).Is(gremlingo.P.Neq(math.NaN()))", "groovy": "g.inject(null).is(P.neq(NaN))", "java": "g.inject(null).is(P.neq(Double.NaN))", @@ -38897,6 +41388,7 @@ "canonical": "g.inject(null).is(P.lt(NaN))", "anonymized": "g.inject(object0).is(P.lt(number0))", "dotnet": "g.Inject(null).Is(P.Lt(Double.NaN))", + "dotnet_parameterize": "g.Inject(null).Is(P.Lt(Double.NaN))", "go": "g.Inject(nil).Is(gremlingo.P.Lt(math.NaN()))", "groovy": "g.inject(null).is(P.lt(NaN))", "java": "g.inject(null).is(P.lt(Double.NaN))", @@ -38914,6 +41406,7 @@ "canonical": "g.inject(null).is(P.lte(NaN))", "anonymized": "g.inject(object0).is(P.lte(number0))", "dotnet": "g.Inject(null).Is(P.Lte(Double.NaN))", + "dotnet_parameterize": "g.Inject(null).Is(P.Lte(Double.NaN))", "go": "g.Inject(nil).Is(gremlingo.P.Lte(math.NaN()))", "groovy": "g.inject(null).is(P.lte(NaN))", "java": "g.inject(null).is(P.lte(Double.NaN))", @@ -38931,6 +41424,7 @@ "canonical": "g.inject(null).is(P.gt(NaN))", "anonymized": "g.inject(object0).is(P.gt(number0))", "dotnet": "g.Inject(null).Is(P.Gt(Double.NaN))", + "dotnet_parameterize": "g.Inject(null).Is(P.Gt(Double.NaN))", "go": "g.Inject(nil).Is(gremlingo.P.Gt(math.NaN()))", "groovy": "g.inject(null).is(P.gt(NaN))", "java": "g.inject(null).is(P.gt(Double.NaN))", @@ -38948,6 +41442,7 @@ "canonical": "g.inject(null).is(P.gte(NaN))", "anonymized": "g.inject(object0).is(P.gte(number0))", "dotnet": "g.Inject(null).Is(P.Gte(Double.NaN))", + "dotnet_parameterize": "g.Inject(null).Is(P.Gte(Double.NaN))", "go": "g.Inject(nil).Is(gremlingo.P.Gte(math.NaN()))", "groovy": "g.inject(null).is(P.gte(NaN))", "java": "g.inject(null).is(P.gte(Double.NaN))", @@ -38965,6 +41460,7 @@ "canonical": "g.inject(NaN).is(P.eq(null))", "anonymized": "g.inject(number0).is(P.eq(object0))", "dotnet": "g.Inject(Double.NaN).Is(P.Eq(null))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Eq(null))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Eq(nil))", "groovy": "g.inject(NaN).is(P.eq(null))", "java": "g.inject(Double.NaN).is(P.eq(null))", @@ -38982,6 +41478,7 @@ "canonical": "g.inject(NaN).is(P.neq(null))", "anonymized": "g.inject(number0).is(P.neq(object0))", "dotnet": "g.Inject(Double.NaN).Is(P.Neq(null))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Neq(null))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Neq(nil))", "groovy": "g.inject(NaN).is(P.neq(null))", "java": "g.inject(Double.NaN).is(P.neq(null))", @@ -38999,6 +41496,7 @@ "canonical": "g.inject(NaN).is(P.lt(null))", "anonymized": "g.inject(number0).is(P.lt(object0))", "dotnet": "g.Inject(Double.NaN).Is(P.Lt(null))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Lt(null))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Lt(nil))", "groovy": "g.inject(NaN).is(P.lt(null))", "java": "g.inject(Double.NaN).is(P.lt(null))", @@ -39016,6 +41514,7 @@ "canonical": "g.inject(NaN).is(P.lte(null))", "anonymized": "g.inject(number0).is(P.lte(object0))", "dotnet": "g.Inject(Double.NaN).Is(P.Lte(null))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Lte(null))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Lte(nil))", "groovy": "g.inject(NaN).is(P.lte(null))", "java": "g.inject(Double.NaN).is(P.lte(null))", @@ -39033,6 +41532,7 @@ "canonical": "g.inject(NaN).is(P.gt(null))", "anonymized": "g.inject(number0).is(P.gt(object0))", "dotnet": "g.Inject(Double.NaN).Is(P.Gt(null))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Gt(null))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Gt(nil))", "groovy": "g.inject(NaN).is(P.gt(null))", "java": "g.inject(Double.NaN).is(P.gt(null))", @@ -39050,6 +41550,7 @@ "canonical": "g.inject(NaN).is(P.gte(null))", "anonymized": "g.inject(number0).is(P.gte(object0))", "dotnet": "g.Inject(Double.NaN).Is(P.Gte(null))", + "dotnet_parameterize": "g.Inject(Double.NaN).Is(P.Gte(null))", "go": "g.Inject(math.NaN()).Is(gremlingo.P.Gte(nil))", "groovy": "g.inject(NaN).is(P.gte(null))", "java": "g.inject(Double.NaN).is(P.gte(null))", @@ -39067,6 +41568,7 @@ "canonical": "g.inject(\"foo\").is(P.eq(1.0d))", "anonymized": "g.inject(string0).is(P.eq(double0))", "dotnet": "g.Inject(\"foo\").Is(P.Eq(1.0d))", + "dotnet_parameterize": "g.Inject(\"foo\").Is(P.Eq(1.0d))", "go": "g.Inject(\"foo\").Is(gremlingo.P.Eq(1.0))", "groovy": "g.inject(\"foo\").is(P.eq(1.0d))", "java": "g.inject(\"foo\").is(P.eq(1.0d))", @@ -39084,6 +41586,7 @@ "canonical": "g.inject(\"foo\").is(P.neq(1.0d))", "anonymized": "g.inject(string0).is(P.neq(double0))", "dotnet": "g.Inject(\"foo\").Is(P.Neq(1.0d))", + "dotnet_parameterize": "g.Inject(\"foo\").Is(P.Neq(1.0d))", "go": "g.Inject(\"foo\").Is(gremlingo.P.Neq(1.0))", "groovy": "g.inject(\"foo\").is(P.neq(1.0d))", "java": "g.inject(\"foo\").is(P.neq(1.0d))", @@ -39101,6 +41604,7 @@ "canonical": "g.inject(\"foo\").is(P.lt(1.0d))", "anonymized": "g.inject(string0).is(P.lt(double0))", "dotnet": "g.Inject(\"foo\").Is(P.Lt(1.0d))", + "dotnet_parameterize": "g.Inject(\"foo\").Is(P.Lt(1.0d))", "go": "g.Inject(\"foo\").Is(gremlingo.P.Lt(1.0))", "groovy": "g.inject(\"foo\").is(P.lt(1.0d))", "java": "g.inject(\"foo\").is(P.lt(1.0d))", @@ -39118,6 +41622,7 @@ "canonical": "g.inject(\"foo\").is(P.lte(1.0d))", "anonymized": "g.inject(string0).is(P.lte(double0))", "dotnet": "g.Inject(\"foo\").Is(P.Lte(1.0d))", + "dotnet_parameterize": "g.Inject(\"foo\").Is(P.Lte(1.0d))", "go": "g.Inject(\"foo\").Is(gremlingo.P.Lte(1.0))", "groovy": "g.inject(\"foo\").is(P.lte(1.0d))", "java": "g.inject(\"foo\").is(P.lte(1.0d))", @@ -39135,6 +41640,7 @@ "canonical": "g.inject(\"foo\").is(P.gt(1.0d))", "anonymized": "g.inject(string0).is(P.gt(double0))", "dotnet": "g.Inject(\"foo\").Is(P.Gt(1.0d))", + "dotnet_parameterize": "g.Inject(\"foo\").Is(P.Gt(1.0d))", "go": "g.Inject(\"foo\").Is(gremlingo.P.Gt(1.0))", "groovy": "g.inject(\"foo\").is(P.gt(1.0d))", "java": "g.inject(\"foo\").is(P.gt(1.0d))", @@ -39152,6 +41658,7 @@ "canonical": "g.inject(\"foo\").is(P.gte(1.0d))", "anonymized": "g.inject(string0).is(P.gte(double0))", "dotnet": "g.Inject(\"foo\").Is(P.Gte(1.0d))", + "dotnet_parameterize": "g.Inject(\"foo\").Is(P.Gte(1.0d))", "go": "g.Inject(\"foo\").Is(gremlingo.P.Gte(1.0))", "groovy": "g.inject(\"foo\").is(P.gte(1.0d))", "java": "g.inject(\"foo\").is(P.gte(1.0d))", @@ -39169,6 +41676,7 @@ "canonical": "g.inject(1.0d).is(P.eq(\"foo\"))", "anonymized": "g.inject(double0).is(P.eq(string0))", "dotnet": "g.Inject(1.0d).Is(P.Eq(\"foo\"))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Eq(\"foo\"))", "go": "g.Inject(1.0).Is(gremlingo.P.Eq(\"foo\"))", "groovy": "g.inject(1.0d).is(P.eq(\"foo\"))", "java": "g.inject(1.0d).is(P.eq(\"foo\"))", @@ -39186,6 +41694,7 @@ "canonical": "g.inject(1.0d).is(P.neq(\"foo\"))", "anonymized": "g.inject(double0).is(P.neq(string0))", "dotnet": "g.Inject(1.0d).Is(P.Neq(\"foo\"))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Neq(\"foo\"))", "go": "g.Inject(1.0).Is(gremlingo.P.Neq(\"foo\"))", "groovy": "g.inject(1.0d).is(P.neq(\"foo\"))", "java": "g.inject(1.0d).is(P.neq(\"foo\"))", @@ -39203,6 +41712,7 @@ "canonical": "g.inject(1.0d).is(P.lt(\"foo\"))", "anonymized": "g.inject(double0).is(P.lt(string0))", "dotnet": "g.Inject(1.0d).Is(P.Lt(\"foo\"))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Lt(\"foo\"))", "go": "g.Inject(1.0).Is(gremlingo.P.Lt(\"foo\"))", "groovy": "g.inject(1.0d).is(P.lt(\"foo\"))", "java": "g.inject(1.0d).is(P.lt(\"foo\"))", @@ -39220,6 +41730,7 @@ "canonical": "g.inject(1.0d).is(P.lte(\"foo\"))", "anonymized": "g.inject(double0).is(P.lte(string0))", "dotnet": "g.Inject(1.0d).Is(P.Lte(\"foo\"))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Lte(\"foo\"))", "go": "g.Inject(1.0).Is(gremlingo.P.Lte(\"foo\"))", "groovy": "g.inject(1.0d).is(P.lte(\"foo\"))", "java": "g.inject(1.0d).is(P.lte(\"foo\"))", @@ -39237,6 +41748,7 @@ "canonical": "g.inject(1.0d).is(P.gt(\"foo\"))", "anonymized": "g.inject(double0).is(P.gt(string0))", "dotnet": "g.Inject(1.0d).Is(P.Gt(\"foo\"))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Gt(\"foo\"))", "go": "g.Inject(1.0).Is(gremlingo.P.Gt(\"foo\"))", "groovy": "g.inject(1.0d).is(P.gt(\"foo\"))", "java": "g.inject(1.0d).is(P.gt(\"foo\"))", @@ -39254,6 +41766,7 @@ "canonical": "g.inject(1.0d).is(P.gte(\"foo\"))", "anonymized": "g.inject(double0).is(P.gte(string0))", "dotnet": "g.Inject(1.0d).Is(P.Gte(\"foo\"))", + "dotnet_parameterize": "g.Inject(1.0d).Is(P.Gte(\"foo\"))", "go": "g.Inject(1.0).Is(gremlingo.P.Gte(\"foo\"))", "groovy": "g.inject(1.0d).is(P.gte(\"foo\"))", "java": "g.inject(1.0d).is(P.gte(\"foo\"))", @@ -39271,6 +41784,7 @@ "canonical": "g.inject(1d).and(__.is(P.eq(1)), __.is(P.gt(0)))", "anonymized": "g.inject(double0).and(__.is(P.eq(number0)), __.is(P.gt(number1)))", "dotnet": "g.Inject(1d).And(__.Is(P.Eq(1)), __.Is(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).And(__.Is(P.Eq(1)), __.Is(P.Gt(0)))", "go": "g.Inject(1).And(gremlingo.T__.Is(gremlingo.P.Eq(1)), gremlingo.T__.Is(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).and(__.is(P.eq(1)), __.is(P.gt(0)))", "java": "g.inject(1d).and(__.is(P.eq(1)), __.is(P.gt(0)))", @@ -39288,6 +41802,7 @@ "canonical": "g.inject(1d).is(P.eq(1).and(P.gt(0)))", "anonymized": "g.inject(double0).is(P.eq(number0).and(P.gt(number1)))", "dotnet": "g.Inject(1d).Is(P.Eq(1).And(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Eq(1).And(P.Gt(0)))", "go": "g.Inject(1).Is(gremlingo.P.Eq(1).And(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).is(P.eq(1).and(P.gt(0)))", "java": "g.inject(1d).is(P.eq(1).and(P.gt(0)))", @@ -39305,6 +41820,7 @@ "canonical": "g.inject(1d).and(__.is(P.eq(1)), __.is(P.lt(0)))", "anonymized": "g.inject(double0).and(__.is(P.eq(number0)), __.is(P.lt(number1)))", "dotnet": "g.Inject(1d).And(__.Is(P.Eq(1)), __.Is(P.Lt(0)))", + "dotnet_parameterize": "g.Inject(1d).And(__.Is(P.Eq(1)), __.Is(P.Lt(0)))", "go": "g.Inject(1).And(gremlingo.T__.Is(gremlingo.P.Eq(1)), gremlingo.T__.Is(gremlingo.P.Lt(0)))", "groovy": "g.inject(1d).and(__.is(P.eq(1)), __.is(P.lt(0)))", "java": "g.inject(1d).and(__.is(P.eq(1)), __.is(P.lt(0)))", @@ -39322,6 +41838,7 @@ "canonical": "g.inject(1d).is(P.eq(1).and(P.lt(0)))", "anonymized": "g.inject(double0).is(P.eq(number0).and(P.lt(number1)))", "dotnet": "g.Inject(1d).Is(P.Eq(1).And(P.Lt(0)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Eq(1).And(P.Lt(0)))", "go": "g.Inject(1).Is(gremlingo.P.Eq(1).And(gremlingo.P.Lt(0)))", "groovy": "g.inject(1d).is(P.eq(1).and(P.lt(0)))", "java": "g.inject(1d).is(P.eq(1).and(P.lt(0)))", @@ -39339,6 +41856,7 @@ "canonical": "g.inject(1d).and(__.is(P.eq(1)), __.is(P.lt(NaN)))", "anonymized": "g.inject(double0).and(__.is(P.eq(number0)), __.is(P.lt(number1)))", "dotnet": "g.Inject(1d).And(__.Is(P.Eq(1)), __.Is(P.Lt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).And(__.Is(P.Eq(1)), __.Is(P.Lt(Double.NaN)))", "go": "g.Inject(1).And(gremlingo.T__.Is(gremlingo.P.Eq(1)), gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())))", "groovy": "g.inject(1d).and(__.is(P.eq(1)), __.is(P.lt(NaN)))", "java": "g.inject(1d).and(__.is(P.eq(1)), __.is(P.lt(Double.NaN)))", @@ -39356,6 +41874,7 @@ "canonical": "g.inject(1d).is(P.eq(1).and(P.lt(NaN)))", "anonymized": "g.inject(double0).is(P.eq(number0).and(P.lt(number1)))", "dotnet": "g.Inject(1d).Is(P.Eq(1).And(P.Lt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Eq(1).And(P.Lt(Double.NaN)))", "go": "g.Inject(1).Is(gremlingo.P.Eq(1).And(gremlingo.P.Lt(math.NaN())))", "groovy": "g.inject(1d).is(P.eq(1).and(P.lt(NaN)))", "java": "g.inject(1d).is(P.eq(1).and(P.lt(Double.NaN)))", @@ -39373,6 +41892,7 @@ "canonical": "g.inject(1d).and(__.is(P.neq(1)), __.is(P.gt(0)))", "anonymized": "g.inject(double0).and(__.is(P.neq(number0)), __.is(P.gt(number1)))", "dotnet": "g.Inject(1d).And(__.Is(P.Neq(1)), __.Is(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).And(__.Is(P.Neq(1)), __.Is(P.Gt(0)))", "go": "g.Inject(1).And(gremlingo.T__.Is(gremlingo.P.Neq(1)), gremlingo.T__.Is(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).and(__.is(P.neq(1)), __.is(P.gt(0)))", "java": "g.inject(1d).and(__.is(P.neq(1)), __.is(P.gt(0)))", @@ -39390,6 +41910,7 @@ "canonical": "g.inject(1d).is(P.neq(1).and(P.gt(0)))", "anonymized": "g.inject(double0).is(P.neq(number0).and(P.gt(number1)))", "dotnet": "g.Inject(1d).Is(P.Neq(1).And(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Neq(1).And(P.Gt(0)))", "go": "g.Inject(1).Is(gremlingo.P.Neq(1).And(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).is(P.neq(1).and(P.gt(0)))", "java": "g.inject(1d).is(P.neq(1).and(P.gt(0)))", @@ -39407,6 +41928,7 @@ "canonical": "g.inject(1d).and(__.is(P.neq(1)), __.is(P.lt(0)))", "anonymized": "g.inject(double0).and(__.is(P.neq(number0)), __.is(P.lt(number1)))", "dotnet": "g.Inject(1d).And(__.Is(P.Neq(1)), __.Is(P.Lt(0)))", + "dotnet_parameterize": "g.Inject(1d).And(__.Is(P.Neq(1)), __.Is(P.Lt(0)))", "go": "g.Inject(1).And(gremlingo.T__.Is(gremlingo.P.Neq(1)), gremlingo.T__.Is(gremlingo.P.Lt(0)))", "groovy": "g.inject(1d).and(__.is(P.neq(1)), __.is(P.lt(0)))", "java": "g.inject(1d).and(__.is(P.neq(1)), __.is(P.lt(0)))", @@ -39424,6 +41946,7 @@ "canonical": "g.inject(1d).is(P.neq(1).and(P.lt(0)))", "anonymized": "g.inject(double0).is(P.neq(number0).and(P.lt(number1)))", "dotnet": "g.Inject(1d).Is(P.Neq(1).And(P.Lt(0)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Neq(1).And(P.Lt(0)))", "go": "g.Inject(1).Is(gremlingo.P.Neq(1).And(gremlingo.P.Lt(0)))", "groovy": "g.inject(1d).is(P.neq(1).and(P.lt(0)))", "java": "g.inject(1d).is(P.neq(1).and(P.lt(0)))", @@ -39441,6 +41964,7 @@ "canonical": "g.inject(1d).and(__.is(P.neq(1)), __.is(P.lt(NaN)))", "anonymized": "g.inject(double0).and(__.is(P.neq(number0)), __.is(P.lt(number1)))", "dotnet": "g.Inject(1d).And(__.Is(P.Neq(1)), __.Is(P.Lt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).And(__.Is(P.Neq(1)), __.Is(P.Lt(Double.NaN)))", "go": "g.Inject(1).And(gremlingo.T__.Is(gremlingo.P.Neq(1)), gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())))", "groovy": "g.inject(1d).and(__.is(P.neq(1)), __.is(P.lt(NaN)))", "java": "g.inject(1d).and(__.is(P.neq(1)), __.is(P.lt(Double.NaN)))", @@ -39458,6 +41982,7 @@ "canonical": "g.inject(1d).is(P.neq(1).and(P.lt(NaN)))", "anonymized": "g.inject(double0).is(P.neq(number0).and(P.lt(number1)))", "dotnet": "g.Inject(1d).Is(P.Neq(1).And(P.Lt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Neq(1).And(P.Lt(Double.NaN)))", "go": "g.Inject(1).Is(gremlingo.P.Neq(1).And(gremlingo.P.Lt(math.NaN())))", "groovy": "g.inject(1d).is(P.neq(1).and(P.lt(NaN)))", "java": "g.inject(1d).is(P.neq(1).and(P.lt(Double.NaN)))", @@ -39475,6 +42000,7 @@ "canonical": "g.inject(1d).and(__.is(P.lt(NaN)), __.is(P.gt(0)))", "anonymized": "g.inject(double0).and(__.is(P.lt(number0)), __.is(P.gt(number1)))", "dotnet": "g.Inject(1d).And(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).And(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(0)))", "go": "g.Inject(1).And(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())), gremlingo.T__.Is(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).and(__.is(P.lt(NaN)), __.is(P.gt(0)))", "java": "g.inject(1d).and(__.is(P.lt(Double.NaN)), __.is(P.gt(0)))", @@ -39492,6 +42018,7 @@ "canonical": "g.inject(1d).is(P.lt(NaN).and(P.gt(0)))", "anonymized": "g.inject(double0).is(P.lt(number0).and(P.gt(number1)))", "dotnet": "g.Inject(1d).Is(P.Lt(Double.NaN).And(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Lt(Double.NaN).And(P.Gt(0)))", "go": "g.Inject(1).Is(gremlingo.P.Lt(math.NaN()).And(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).is(P.lt(NaN).and(P.gt(0)))", "java": "g.inject(1d).is(P.lt(Double.NaN).and(P.gt(0)))", @@ -39509,6 +42036,7 @@ "canonical": "g.inject(1d).and(__.is(P.lt(NaN)), __.is(P.gt(2)))", "anonymized": "g.inject(double0).and(__.is(P.lt(number0)), __.is(P.gt(number1)))", "dotnet": "g.Inject(1d).And(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(2)))", + "dotnet_parameterize": "g.Inject(1d).And(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(2)))", "go": "g.Inject(1).And(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())), gremlingo.T__.Is(gremlingo.P.Gt(2)))", "groovy": "g.inject(1d).and(__.is(P.lt(NaN)), __.is(P.gt(2)))", "java": "g.inject(1d).and(__.is(P.lt(Double.NaN)), __.is(P.gt(2)))", @@ -39526,6 +42054,7 @@ "canonical": "g.inject(1d).is(P.lt(NaN).and(P.gt(2)))", "anonymized": "g.inject(double0).is(P.lt(number0).and(P.gt(number1)))", "dotnet": "g.Inject(1d).Is(P.Lt(Double.NaN).And(P.Gt(2)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Lt(Double.NaN).And(P.Gt(2)))", "go": "g.Inject(1).Is(gremlingo.P.Lt(math.NaN()).And(gremlingo.P.Gt(2)))", "groovy": "g.inject(1d).is(P.lt(NaN).and(P.gt(2)))", "java": "g.inject(1d).is(P.lt(Double.NaN).and(P.gt(2)))", @@ -39543,6 +42072,7 @@ "canonical": "g.inject(1d).and(__.is(P.lt(NaN)), __.is(P.gt(NaN)))", "anonymized": "g.inject(double0).and(__.is(P.lt(number0)), __.is(P.gt(number0)))", "dotnet": "g.Inject(1d).And(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).And(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(Double.NaN)))", "go": "g.Inject(1).And(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())), gremlingo.T__.Is(gremlingo.P.Gt(math.NaN())))", "groovy": "g.inject(1d).and(__.is(P.lt(NaN)), __.is(P.gt(NaN)))", "java": "g.inject(1d).and(__.is(P.lt(Double.NaN)), __.is(P.gt(Double.NaN)))", @@ -39560,6 +42090,7 @@ "canonical": "g.inject(1d).is(P.lt(NaN).and(P.gt(NaN)))", "anonymized": "g.inject(double0).is(P.lt(number0).and(P.gt(number0)))", "dotnet": "g.Inject(1d).Is(P.Lt(Double.NaN).And(P.Gt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Lt(Double.NaN).And(P.Gt(Double.NaN)))", "go": "g.Inject(1).Is(gremlingo.P.Lt(math.NaN()).And(gremlingo.P.Gt(math.NaN())))", "groovy": "g.inject(1d).is(P.lt(NaN).and(P.gt(NaN)))", "java": "g.inject(1d).is(P.lt(Double.NaN).and(P.gt(Double.NaN)))", @@ -39577,6 +42108,7 @@ "canonical": "g.inject(1d).or(__.is(P.eq(1)), __.is(P.gt(0)))", "anonymized": "g.inject(double0).or(__.is(P.eq(number0)), __.is(P.gt(number1)))", "dotnet": "g.Inject(1d).Or(__.Is(P.Eq(1)), __.Is(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).Or(__.Is(P.Eq(1)), __.Is(P.Gt(0)))", "go": "g.Inject(1).Or(gremlingo.T__.Is(gremlingo.P.Eq(1)), gremlingo.T__.Is(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).or(__.is(P.eq(1)), __.is(P.gt(0)))", "java": "g.inject(1d).or(__.is(P.eq(1)), __.is(P.gt(0)))", @@ -39594,6 +42126,7 @@ "canonical": "g.inject(1d).is(P.eq(1).or(P.gt(0)))", "anonymized": "g.inject(double0).is(P.eq(number0).or(P.gt(number1)))", "dotnet": "g.Inject(1d).Is(P.Eq(1).Or(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Eq(1).Or(P.Gt(0)))", "go": "g.Inject(1).Is(gremlingo.P.Eq(1).Or(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).is(P.eq(1).or(P.gt(0)))", "java": "g.inject(1d).is(P.eq(1).or(P.gt(0)))", @@ -39611,6 +42144,7 @@ "canonical": "g.inject(1d).or(__.is(P.eq(1)), __.is(P.lt(0)))", "anonymized": "g.inject(double0).or(__.is(P.eq(number0)), __.is(P.lt(number1)))", "dotnet": "g.Inject(1d).Or(__.Is(P.Eq(1)), __.Is(P.Lt(0)))", + "dotnet_parameterize": "g.Inject(1d).Or(__.Is(P.Eq(1)), __.Is(P.Lt(0)))", "go": "g.Inject(1).Or(gremlingo.T__.Is(gremlingo.P.Eq(1)), gremlingo.T__.Is(gremlingo.P.Lt(0)))", "groovy": "g.inject(1d).or(__.is(P.eq(1)), __.is(P.lt(0)))", "java": "g.inject(1d).or(__.is(P.eq(1)), __.is(P.lt(0)))", @@ -39628,6 +42162,7 @@ "canonical": "g.inject(1d).is(P.eq(1).or(P.lt(0)))", "anonymized": "g.inject(double0).is(P.eq(number0).or(P.lt(number1)))", "dotnet": "g.Inject(1d).Is(P.Eq(1).Or(P.Lt(0)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Eq(1).Or(P.Lt(0)))", "go": "g.Inject(1).Is(gremlingo.P.Eq(1).Or(gremlingo.P.Lt(0)))", "groovy": "g.inject(1d).is(P.eq(1).or(P.lt(0)))", "java": "g.inject(1d).is(P.eq(1).or(P.lt(0)))", @@ -39645,6 +42180,7 @@ "canonical": "g.inject(1d).or(__.is(P.eq(1)), __.is(P.lt(NaN)))", "anonymized": "g.inject(double0).or(__.is(P.eq(number0)), __.is(P.lt(number1)))", "dotnet": "g.Inject(1d).Or(__.Is(P.Eq(1)), __.Is(P.Lt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).Or(__.Is(P.Eq(1)), __.Is(P.Lt(Double.NaN)))", "go": "g.Inject(1).Or(gremlingo.T__.Is(gremlingo.P.Eq(1)), gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())))", "groovy": "g.inject(1d).or(__.is(P.eq(1)), __.is(P.lt(NaN)))", "java": "g.inject(1d).or(__.is(P.eq(1)), __.is(P.lt(Double.NaN)))", @@ -39662,6 +42198,7 @@ "canonical": "g.inject(1d).is(P.eq(1).or(P.lt(NaN)))", "anonymized": "g.inject(double0).is(P.eq(number0).or(P.lt(number1)))", "dotnet": "g.Inject(1d).Is(P.Eq(1).Or(P.Lt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Eq(1).Or(P.Lt(Double.NaN)))", "go": "g.Inject(1).Is(gremlingo.P.Eq(1).Or(gremlingo.P.Lt(math.NaN())))", "groovy": "g.inject(1d).is(P.eq(1).or(P.lt(NaN)))", "java": "g.inject(1d).is(P.eq(1).or(P.lt(Double.NaN)))", @@ -39679,6 +42216,7 @@ "canonical": "g.inject(1d).or(__.is(P.neq(1)), __.is(P.gt(0)))", "anonymized": "g.inject(double0).or(__.is(P.neq(number0)), __.is(P.gt(number1)))", "dotnet": "g.Inject(1d).Or(__.Is(P.Neq(1)), __.Is(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).Or(__.Is(P.Neq(1)), __.Is(P.Gt(0)))", "go": "g.Inject(1).Or(gremlingo.T__.Is(gremlingo.P.Neq(1)), gremlingo.T__.Is(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).or(__.is(P.neq(1)), __.is(P.gt(0)))", "java": "g.inject(1d).or(__.is(P.neq(1)), __.is(P.gt(0)))", @@ -39696,6 +42234,7 @@ "canonical": "g.inject(1d).is(P.neq(1).or(P.gt(0)))", "anonymized": "g.inject(double0).is(P.neq(number0).or(P.gt(number1)))", "dotnet": "g.Inject(1d).Is(P.Neq(1).Or(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Neq(1).Or(P.Gt(0)))", "go": "g.Inject(1).Is(gremlingo.P.Neq(1).Or(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).is(P.neq(1).or(P.gt(0)))", "java": "g.inject(1d).is(P.neq(1).or(P.gt(0)))", @@ -39713,6 +42252,7 @@ "canonical": "g.inject(1d).or(__.is(P.neq(1)), __.is(P.lt(0)))", "anonymized": "g.inject(double0).or(__.is(P.neq(number0)), __.is(P.lt(number1)))", "dotnet": "g.Inject(1d).Or(__.Is(P.Neq(1)), __.Is(P.Lt(0)))", + "dotnet_parameterize": "g.Inject(1d).Or(__.Is(P.Neq(1)), __.Is(P.Lt(0)))", "go": "g.Inject(1).Or(gremlingo.T__.Is(gremlingo.P.Neq(1)), gremlingo.T__.Is(gremlingo.P.Lt(0)))", "groovy": "g.inject(1d).or(__.is(P.neq(1)), __.is(P.lt(0)))", "java": "g.inject(1d).or(__.is(P.neq(1)), __.is(P.lt(0)))", @@ -39730,6 +42270,7 @@ "canonical": "g.inject(1d).is(P.neq(1).or(P.lt(0)))", "anonymized": "g.inject(double0).is(P.neq(number0).or(P.lt(number1)))", "dotnet": "g.Inject(1d).Is(P.Neq(1).Or(P.Lt(0)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Neq(1).Or(P.Lt(0)))", "go": "g.Inject(1).Is(gremlingo.P.Neq(1).Or(gremlingo.P.Lt(0)))", "groovy": "g.inject(1d).is(P.neq(1).or(P.lt(0)))", "java": "g.inject(1d).is(P.neq(1).or(P.lt(0)))", @@ -39747,6 +42288,7 @@ "canonical": "g.inject(1d).or(__.is(P.neq(1)), __.is(P.lt(NaN)))", "anonymized": "g.inject(double0).or(__.is(P.neq(number0)), __.is(P.lt(number1)))", "dotnet": "g.Inject(1d).Or(__.Is(P.Neq(1)), __.Is(P.Lt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).Or(__.Is(P.Neq(1)), __.Is(P.Lt(Double.NaN)))", "go": "g.Inject(1).Or(gremlingo.T__.Is(gremlingo.P.Neq(1)), gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())))", "groovy": "g.inject(1d).or(__.is(P.neq(1)), __.is(P.lt(NaN)))", "java": "g.inject(1d).or(__.is(P.neq(1)), __.is(P.lt(Double.NaN)))", @@ -39764,6 +42306,7 @@ "canonical": "g.inject(1d).is(P.neq(1).or(P.lt(NaN)))", "anonymized": "g.inject(double0).is(P.neq(number0).or(P.lt(number1)))", "dotnet": "g.Inject(1d).Is(P.Neq(1).Or(P.Lt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Neq(1).Or(P.Lt(Double.NaN)))", "go": "g.Inject(1).Is(gremlingo.P.Neq(1).Or(gremlingo.P.Lt(math.NaN())))", "groovy": "g.inject(1d).is(P.neq(1).or(P.lt(NaN)))", "java": "g.inject(1d).is(P.neq(1).or(P.lt(Double.NaN)))", @@ -39781,6 +42324,7 @@ "canonical": "g.inject(1d).or(__.is(P.lt(NaN)), __.is(P.gt(0)))", "anonymized": "g.inject(double0).or(__.is(P.lt(number0)), __.is(P.gt(number1)))", "dotnet": "g.Inject(1d).Or(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).Or(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(0)))", "go": "g.Inject(1).Or(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())), gremlingo.T__.Is(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).or(__.is(P.lt(NaN)), __.is(P.gt(0)))", "java": "g.inject(1d).or(__.is(P.lt(Double.NaN)), __.is(P.gt(0)))", @@ -39798,6 +42342,7 @@ "canonical": "g.inject(1d).is(P.lt(NaN).or(P.gt(0)))", "anonymized": "g.inject(double0).is(P.lt(number0).or(P.gt(number1)))", "dotnet": "g.Inject(1d).Is(P.Lt(Double.NaN).Or(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Lt(Double.NaN).Or(P.Gt(0)))", "go": "g.Inject(1).Is(gremlingo.P.Lt(math.NaN()).Or(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).is(P.lt(NaN).or(P.gt(0)))", "java": "g.inject(1d).is(P.lt(Double.NaN).or(P.gt(0)))", @@ -39815,6 +42360,7 @@ "canonical": "g.inject(1d).or(__.is(P.lt(NaN)), __.is(P.gt(2)))", "anonymized": "g.inject(double0).or(__.is(P.lt(number0)), __.is(P.gt(number1)))", "dotnet": "g.Inject(1d).Or(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(2)))", + "dotnet_parameterize": "g.Inject(1d).Or(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(2)))", "go": "g.Inject(1).Or(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())), gremlingo.T__.Is(gremlingo.P.Gt(2)))", "groovy": "g.inject(1d).or(__.is(P.lt(NaN)), __.is(P.gt(2)))", "java": "g.inject(1d).or(__.is(P.lt(Double.NaN)), __.is(P.gt(2)))", @@ -39832,6 +42378,7 @@ "canonical": "g.inject(1d).is(P.lt(NaN).or(P.gt(2)))", "anonymized": "g.inject(double0).is(P.lt(number0).or(P.gt(number1)))", "dotnet": "g.Inject(1d).Is(P.Lt(Double.NaN).Or(P.Gt(2)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Lt(Double.NaN).Or(P.Gt(2)))", "go": "g.Inject(1).Is(gremlingo.P.Lt(math.NaN()).Or(gremlingo.P.Gt(2)))", "groovy": "g.inject(1d).is(P.lt(NaN).or(P.gt(2)))", "java": "g.inject(1d).is(P.lt(Double.NaN).or(P.gt(2)))", @@ -39849,6 +42396,7 @@ "canonical": "g.inject(1d).or(__.is(P.lt(NaN)), __.is(P.gt(NaN)))", "anonymized": "g.inject(double0).or(__.is(P.lt(number0)), __.is(P.gt(number0)))", "dotnet": "g.Inject(1d).Or(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).Or(__.Is(P.Lt(Double.NaN)), __.Is(P.Gt(Double.NaN)))", "go": "g.Inject(1).Or(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())), gremlingo.T__.Is(gremlingo.P.Gt(math.NaN())))", "groovy": "g.inject(1d).or(__.is(P.lt(NaN)), __.is(P.gt(NaN)))", "java": "g.inject(1d).or(__.is(P.lt(Double.NaN)), __.is(P.gt(Double.NaN)))", @@ -39866,6 +42414,7 @@ "canonical": "g.inject(1d).is(P.lt(NaN).or(P.gt(NaN)))", "anonymized": "g.inject(double0).is(P.lt(number0).or(P.gt(number0)))", "dotnet": "g.Inject(1d).Is(P.Lt(Double.NaN).Or(P.Gt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).Is(P.Lt(Double.NaN).Or(P.Gt(Double.NaN)))", "go": "g.Inject(1).Is(gremlingo.P.Lt(math.NaN()).Or(gremlingo.P.Gt(math.NaN())))", "groovy": "g.inject(1d).is(P.lt(NaN).or(P.gt(NaN)))", "java": "g.inject(1d).is(P.lt(Double.NaN).or(P.gt(Double.NaN)))", @@ -39883,6 +42432,7 @@ "canonical": "g.inject(1d).not(__.is(P.gt(0)))", "anonymized": "g.inject(double0).not(__.is(P.gt(number0)))", "dotnet": "g.Inject(1d).Not(__.Is(P.Gt(0)))", + "dotnet_parameterize": "g.Inject(1d).Not(__.Is(P.Gt(0)))", "go": "g.Inject(1).Not(gremlingo.T__.Is(gremlingo.P.Gt(0)))", "groovy": "g.inject(1d).not(__.is(P.gt(0)))", "java": "g.inject(1d).not(__.is(P.gt(0)))", @@ -39900,6 +42450,7 @@ "canonical": "g.inject(1d).not(__.is(P.lt(0)))", "anonymized": "g.inject(double0).not(__.is(P.lt(number0)))", "dotnet": "g.Inject(1d).Not(__.Is(P.Lt(0)))", + "dotnet_parameterize": "g.Inject(1d).Not(__.Is(P.Lt(0)))", "go": "g.Inject(1).Not(gremlingo.T__.Is(gremlingo.P.Lt(0)))", "groovy": "g.inject(1d).not(__.is(P.lt(0)))", "java": "g.inject(1d).not(__.is(P.lt(0)))", @@ -39917,6 +42468,7 @@ "canonical": "g.inject(1d).not(__.is(P.gt(NaN)))", "anonymized": "g.inject(double0).not(__.is(P.gt(number0)))", "dotnet": "g.Inject(1d).Not(__.Is(P.Gt(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).Not(__.Is(P.Gt(Double.NaN)))", "go": "g.Inject(1).Not(gremlingo.T__.Is(gremlingo.P.Gt(math.NaN())))", "groovy": "g.inject(1d).not(__.is(P.gt(NaN)))", "java": "g.inject(1d).not(__.is(P.gt(Double.NaN)))", @@ -39934,6 +42486,7 @@ "canonical": "g.inject(1d).not(__.is(P.eq(NaN)))", "anonymized": "g.inject(double0).not(__.is(P.eq(number0)))", "dotnet": "g.Inject(1d).Not(__.Is(P.Eq(Double.NaN)))", + "dotnet_parameterize": "g.Inject(1d).Not(__.Is(P.Eq(Double.NaN)))", "go": "g.Inject(1).Not(gremlingo.T__.Is(gremlingo.P.Eq(math.NaN())))", "groovy": "g.inject(1d).not(__.is(P.eq(NaN)))", "java": "g.inject(1d).not(__.is(P.eq(Double.NaN)))", @@ -39951,6 +42504,7 @@ "canonical": "g.inject(1d).not(__.not(__.is(P.eq(NaN))))", "anonymized": "g.inject(double0).not(__.not(__.is(P.eq(number0))))", "dotnet": "g.Inject(1d).Not(__.Not(__.Is(P.Eq(Double.NaN))))", + "dotnet_parameterize": "g.Inject(1d).Not(__.Not(__.Is(P.Eq(Double.NaN))))", "go": "g.Inject(1).Not(gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Eq(math.NaN()))))", "groovy": "g.inject(1d).not(__.not(__.is(P.eq(NaN))))", "java": "g.inject(1d).not(__.not(__.is(P.eq(Double.NaN))))", @@ -39968,6 +42522,7 @@ "canonical": "g.inject(1d).where(__.inject(1).not(__.is(P.lt(NaN))))", "anonymized": "g.inject(double0).where(__.inject(number0).not(__.is(P.lt(number1))))", "dotnet": "g.Inject(1d).Where(__.Inject(1).Not(__.Is(P.Lt(Double.NaN))))", + "dotnet_parameterize": "g.Inject(1d).Where(__.Inject(1).Not(__.Is(P.Lt(Double.NaN))))", "go": "g.Inject(1).Where(gremlingo.T__.Inject(1).Not(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN()))))", "groovy": "g.inject(1d).where(__.inject(1).not(__.is(P.lt(NaN))))", "java": "g.inject(1d).where(__.inject(1).not(__.is(P.lt(Double.NaN))))", @@ -39985,6 +42540,7 @@ "canonical": "g.inject(1).filter(__.or(__.and(__.is(P.eq(1)), __.not(__.is(P.eq(1)))), __.and(__.is(P.eq(1)), __.not(__.is(P.eq(1))))))", "anonymized": "g.inject(number0).filter(__.or(__.and(__.is(P.eq(number0)), __.not(__.is(P.eq(number0)))), __.and(__.is(P.eq(number0)), __.not(__.is(P.eq(number0))))))", "dotnet": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Eq(1)))), __.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Eq(1))))))", + "dotnet_parameterize": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Eq(1)))), __.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Eq(1))))))", "go": "g.Inject(1).Filter(gremlingo.T__.Or(gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Eq(1)), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Eq(1)))), gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Eq(1)), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Eq(1))))))", "groovy": "g.inject(1).filter(__.or(__.and(__.is(P.eq(1)), __.not(__.is(P.eq(1)))), __.and(__.is(P.eq(1)), __.not(__.is(P.eq(1))))))", "java": "g.inject(1).filter(__.or(__.and(__.is(P.eq(1)), __.not(__.is(P.eq(1)))), __.and(__.is(P.eq(1)), __.not(__.is(P.eq(1))))))", @@ -40002,6 +42558,7 @@ "canonical": "g.inject(1).filter(__.or(__.and(__.is(P.eq(1)), __.not(__.is(P.gt(1)))), __.and(__.is(P.gt(1)), __.not(__.is(P.eq(1))))))", "anonymized": "g.inject(number0).filter(__.or(__.and(__.is(P.eq(number0)), __.not(__.is(P.gt(number0)))), __.and(__.is(P.gt(number0)), __.not(__.is(P.eq(number0))))))", "dotnet": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Gt(1)))), __.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Eq(1))))))", + "dotnet_parameterize": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Gt(1)))), __.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Eq(1))))))", "go": "g.Inject(1).Filter(gremlingo.T__.Or(gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Eq(1)), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Gt(1)))), gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Gt(1)), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Eq(1))))))", "groovy": "g.inject(1).filter(__.or(__.and(__.is(P.eq(1)), __.not(__.is(P.gt(1)))), __.and(__.is(P.gt(1)), __.not(__.is(P.eq(1))))))", "java": "g.inject(1).filter(__.or(__.and(__.is(P.eq(1)), __.not(__.is(P.gt(1)))), __.and(__.is(P.gt(1)), __.not(__.is(P.eq(1))))))", @@ -40019,6 +42576,7 @@ "canonical": "g.inject(1).filter(__.or(__.and(__.is(P.eq(1)), __.not(__.is(P.lt(NaN)))), __.and(__.is(P.lt(NaN)), __.not(__.is(P.eq(1))))))", "anonymized": "g.inject(number0).filter(__.or(__.and(__.is(P.eq(number0)), __.not(__.is(P.lt(number1)))), __.and(__.is(P.lt(number1)), __.not(__.is(P.eq(number0))))))", "dotnet": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Lt(Double.NaN)))), __.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Eq(1))))))", + "dotnet_parameterize": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Lt(Double.NaN)))), __.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Eq(1))))))", "go": "g.Inject(1).Filter(gremlingo.T__.Or(gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Eq(1)), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())))), gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Eq(1))))))", "groovy": "g.inject(1).filter(__.or(__.and(__.is(P.eq(1)), __.not(__.is(P.lt(NaN)))), __.and(__.is(P.lt(NaN)), __.not(__.is(P.eq(1))))))", "java": "g.inject(1).filter(__.or(__.and(__.is(P.eq(1)), __.not(__.is(P.lt(Double.NaN)))), __.and(__.is(P.lt(Double.NaN)), __.not(__.is(P.eq(1))))))", @@ -40036,6 +42594,7 @@ "canonical": "g.inject(1).filter(__.or(__.and(__.is(P.gt(1)), __.not(__.is(P.eq(1)))), __.and(__.is(P.eq(1)), __.not(__.is(P.gt(1))))))", "anonymized": "g.inject(number0).filter(__.or(__.and(__.is(P.gt(number0)), __.not(__.is(P.eq(number0)))), __.and(__.is(P.eq(number0)), __.not(__.is(P.gt(number0))))))", "dotnet": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Eq(1)))), __.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Gt(1))))))", + "dotnet_parameterize": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Eq(1)))), __.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Gt(1))))))", "go": "g.Inject(1).Filter(gremlingo.T__.Or(gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Gt(1)), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Eq(1)))), gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Eq(1)), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Gt(1))))))", "groovy": "g.inject(1).filter(__.or(__.and(__.is(P.gt(1)), __.not(__.is(P.eq(1)))), __.and(__.is(P.eq(1)), __.not(__.is(P.gt(1))))))", "java": "g.inject(1).filter(__.or(__.and(__.is(P.gt(1)), __.not(__.is(P.eq(1)))), __.and(__.is(P.eq(1)), __.not(__.is(P.gt(1))))))", @@ -40053,6 +42612,7 @@ "canonical": "g.inject(1).filter(__.or(__.and(__.is(P.gt(1)), __.not(__.is(P.gt(1)))), __.and(__.is(P.gt(1)), __.not(__.is(P.gt(1))))))", "anonymized": "g.inject(number0).filter(__.or(__.and(__.is(P.gt(number0)), __.not(__.is(P.gt(number0)))), __.and(__.is(P.gt(number0)), __.not(__.is(P.gt(number0))))))", "dotnet": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Gt(1)))), __.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Gt(1))))))", + "dotnet_parameterize": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Gt(1)))), __.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Gt(1))))))", "go": "g.Inject(1).Filter(gremlingo.T__.Or(gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Gt(1)), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Gt(1)))), gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Gt(1)), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Gt(1))))))", "groovy": "g.inject(1).filter(__.or(__.and(__.is(P.gt(1)), __.not(__.is(P.gt(1)))), __.and(__.is(P.gt(1)), __.not(__.is(P.gt(1))))))", "java": "g.inject(1).filter(__.or(__.and(__.is(P.gt(1)), __.not(__.is(P.gt(1)))), __.and(__.is(P.gt(1)), __.not(__.is(P.gt(1))))))", @@ -40070,6 +42630,7 @@ "canonical": "g.inject(1).filter(__.or(__.and(__.is(P.gt(1)), __.not(__.is(P.lt(NaN)))), __.and(__.is(P.lt(NaN)), __.not(__.is(P.gt(1))))))", "anonymized": "g.inject(number0).filter(__.or(__.and(__.is(P.gt(number0)), __.not(__.is(P.lt(number1)))), __.and(__.is(P.lt(number1)), __.not(__.is(P.gt(number0))))))", "dotnet": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Lt(Double.NaN)))), __.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Gt(1))))))", + "dotnet_parameterize": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Lt(Double.NaN)))), __.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Gt(1))))))", "go": "g.Inject(1).Filter(gremlingo.T__.Or(gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Gt(1)), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())))), gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Gt(1))))))", "groovy": "g.inject(1).filter(__.or(__.and(__.is(P.gt(1)), __.not(__.is(P.lt(NaN)))), __.and(__.is(P.lt(NaN)), __.not(__.is(P.gt(1))))))", "java": "g.inject(1).filter(__.or(__.and(__.is(P.gt(1)), __.not(__.is(P.lt(Double.NaN)))), __.and(__.is(P.lt(Double.NaN)), __.not(__.is(P.gt(1))))))", @@ -40087,6 +42648,7 @@ "canonical": "g.inject(1).filter(__.or(__.and(__.is(P.lt(NaN)), __.not(__.is(P.eq(1)))), __.and(__.is(P.eq(1)), __.not(__.is(P.lt(NaN))))))", "anonymized": "g.inject(number0).filter(__.or(__.and(__.is(P.lt(number1)), __.not(__.is(P.eq(number0)))), __.and(__.is(P.eq(number0)), __.not(__.is(P.lt(number1))))))", "dotnet": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Eq(1)))), __.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Lt(Double.NaN))))))", + "dotnet_parameterize": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Eq(1)))), __.And(__.Is(P.Eq(1)), __.Not(__.Is(P.Lt(Double.NaN))))))", "go": "g.Inject(1).Filter(gremlingo.T__.Or(gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Eq(1)))), gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Eq(1)), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN()))))))", "groovy": "g.inject(1).filter(__.or(__.and(__.is(P.lt(NaN)), __.not(__.is(P.eq(1)))), __.and(__.is(P.eq(1)), __.not(__.is(P.lt(NaN))))))", "java": "g.inject(1).filter(__.or(__.and(__.is(P.lt(Double.NaN)), __.not(__.is(P.eq(1)))), __.and(__.is(P.eq(1)), __.not(__.is(P.lt(Double.NaN))))))", @@ -40104,6 +42666,7 @@ "canonical": "g.inject(1).filter(__.or(__.and(__.is(P.lt(NaN)), __.not(__.is(P.gt(1)))), __.and(__.is(P.gt(1)), __.not(__.is(P.lt(NaN))))))", "anonymized": "g.inject(number0).filter(__.or(__.and(__.is(P.lt(number1)), __.not(__.is(P.gt(number0)))), __.and(__.is(P.gt(number0)), __.not(__.is(P.lt(number1))))))", "dotnet": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Gt(1)))), __.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Lt(Double.NaN))))))", + "dotnet_parameterize": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Gt(1)))), __.And(__.Is(P.Gt(1)), __.Not(__.Is(P.Lt(Double.NaN))))))", "go": "g.Inject(1).Filter(gremlingo.T__.Or(gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Gt(1)))), gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Gt(1)), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN()))))))", "groovy": "g.inject(1).filter(__.or(__.and(__.is(P.lt(NaN)), __.not(__.is(P.gt(1)))), __.and(__.is(P.gt(1)), __.not(__.is(P.lt(NaN))))))", "java": "g.inject(1).filter(__.or(__.and(__.is(P.lt(Double.NaN)), __.not(__.is(P.gt(1)))), __.and(__.is(P.gt(1)), __.not(__.is(P.lt(Double.NaN))))))", @@ -40121,6 +42684,7 @@ "canonical": "g.inject(1).filter(__.or(__.and(__.is(P.lt(NaN)), __.not(__.is(P.lt(NaN)))), __.and(__.is(P.lt(NaN)), __.not(__.is(P.lt(NaN))))))", "anonymized": "g.inject(number0).filter(__.or(__.and(__.is(P.lt(number1)), __.not(__.is(P.lt(number1)))), __.and(__.is(P.lt(number1)), __.not(__.is(P.lt(number1))))))", "dotnet": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Lt(Double.NaN)))), __.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Lt(Double.NaN))))))", + "dotnet_parameterize": "g.Inject(1).Filter(__.Or(__.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Lt(Double.NaN)))), __.And(__.Is(P.Lt(Double.NaN)), __.Not(__.Is(P.Lt(Double.NaN))))))", "go": "g.Inject(1).Filter(gremlingo.T__.Or(gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())))), gremlingo.T__.And(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN())), gremlingo.T__.Not(gremlingo.T__.Is(gremlingo.P.Lt(math.NaN()))))))", "groovy": "g.inject(1).filter(__.or(__.and(__.is(P.lt(NaN)), __.not(__.is(P.lt(NaN)))), __.and(__.is(P.lt(NaN)), __.not(__.is(P.lt(NaN))))))", "java": "g.inject(1).filter(__.or(__.and(__.is(P.lt(Double.NaN)), __.not(__.is(P.lt(Double.NaN)))), __.and(__.is(P.lt(Double.NaN)), __.not(__.is(P.lt(Double.NaN))))))", @@ -40138,6 +42702,7 @@ "canonical": "g.inject(Infinity).is(P.eq(+Infinity))", "anonymized": "g.inject(number0).is(P.eq(number1))", "dotnet": "g.Inject(Double.PositiveInfinity).Is(P.Eq(Double.PositiveInfinity))", + "dotnet_parameterize": "g.Inject(Double.PositiveInfinity).Is(P.Eq(Double.PositiveInfinity))", "go": "g.Inject(math.Inf(1)).Is(gremlingo.P.Eq(math.Inf(1)))", "groovy": "g.inject(Double.POSITIVE_INFINITY).is(P.eq(Double.POSITIVE_INFINITY))", "java": "g.inject(Double.POSITIVE_INFINITY).is(P.eq(Double.POSITIVE_INFINITY))", @@ -40155,6 +42720,7 @@ "canonical": "g.inject(Infinity).is(P.neq(+Infinity))", "anonymized": "g.inject(number0).is(P.neq(number1))", "dotnet": "g.Inject(Double.PositiveInfinity).Is(P.Neq(Double.PositiveInfinity))", + "dotnet_parameterize": "g.Inject(Double.PositiveInfinity).Is(P.Neq(Double.PositiveInfinity))", "go": "g.Inject(math.Inf(1)).Is(gremlingo.P.Neq(math.Inf(1)))", "groovy": "g.inject(Double.POSITIVE_INFINITY).is(P.neq(Double.POSITIVE_INFINITY))", "java": "g.inject(Double.POSITIVE_INFINITY).is(P.neq(Double.POSITIVE_INFINITY))", @@ -40172,6 +42738,7 @@ "canonical": "g.inject(-Infinity).is(P.eq(-Infinity))", "anonymized": "g.inject(number0).is(P.eq(number0))", "dotnet": "g.Inject(Double.NegativeInfinity).Is(P.Eq(Double.NegativeInfinity))", + "dotnet_parameterize": "g.Inject(Double.NegativeInfinity).Is(P.Eq(Double.NegativeInfinity))", "go": "g.Inject(math.Inf(-1)).Is(gremlingo.P.Eq(math.Inf(-1)))", "groovy": "g.inject(Double.NEGATIVE_INFINITY).is(P.eq(Double.NEGATIVE_INFINITY))", "java": "g.inject(Double.NEGATIVE_INFINITY).is(P.eq(Double.NEGATIVE_INFINITY))", @@ -40189,6 +42756,7 @@ "canonical": "g.inject(-Infinity).is(P.neq(-Infinity))", "anonymized": "g.inject(number0).is(P.neq(number0))", "dotnet": "g.Inject(Double.NegativeInfinity).Is(P.Neq(Double.NegativeInfinity))", + "dotnet_parameterize": "g.Inject(Double.NegativeInfinity).Is(P.Neq(Double.NegativeInfinity))", "go": "g.Inject(math.Inf(-1)).Is(gremlingo.P.Neq(math.Inf(-1)))", "groovy": "g.inject(Double.NEGATIVE_INFINITY).is(P.neq(Double.NEGATIVE_INFINITY))", "java": "g.inject(Double.NEGATIVE_INFINITY).is(P.neq(Double.NEGATIVE_INFINITY))", @@ -40206,6 +42774,7 @@ "canonical": "g.inject(Infinity).is(P.gt(-Infinity))", "anonymized": "g.inject(number0).is(P.gt(number1))", "dotnet": "g.Inject(Double.PositiveInfinity).Is(P.Gt(Double.NegativeInfinity))", + "dotnet_parameterize": "g.Inject(Double.PositiveInfinity).Is(P.Gt(Double.NegativeInfinity))", "go": "g.Inject(math.Inf(1)).Is(gremlingo.P.Gt(math.Inf(-1)))", "groovy": "g.inject(Double.POSITIVE_INFINITY).is(P.gt(Double.NEGATIVE_INFINITY))", "java": "g.inject(Double.POSITIVE_INFINITY).is(P.gt(Double.NEGATIVE_INFINITY))", @@ -40223,6 +42792,7 @@ "canonical": "g.inject(Infinity).is(P.lt(-Infinity))", "anonymized": "g.inject(number0).is(P.lt(number1))", "dotnet": "g.Inject(Double.PositiveInfinity).Is(P.Lt(Double.NegativeInfinity))", + "dotnet_parameterize": "g.Inject(Double.PositiveInfinity).Is(P.Lt(Double.NegativeInfinity))", "go": "g.Inject(math.Inf(1)).Is(gremlingo.P.Lt(math.Inf(-1)))", "groovy": "g.inject(Double.POSITIVE_INFINITY).is(P.lt(Double.NEGATIVE_INFINITY))", "java": "g.inject(Double.POSITIVE_INFINITY).is(P.lt(Double.NEGATIVE_INFINITY))", @@ -40240,6 +42810,7 @@ "canonical": "g.inject(-Infinity).is(P.lt(Infinity))", "anonymized": "g.inject(number0).is(P.lt(number1))", "dotnet": "g.Inject(Double.NegativeInfinity).Is(P.Lt(Double.PositiveInfinity))", + "dotnet_parameterize": "g.Inject(Double.NegativeInfinity).Is(P.Lt(Double.PositiveInfinity))", "go": "g.Inject(math.Inf(-1)).Is(gremlingo.P.Lt(math.Inf(1)))", "groovy": "g.inject(Double.NEGATIVE_INFINITY).is(P.lt(Double.POSITIVE_INFINITY))", "java": "g.inject(Double.NEGATIVE_INFINITY).is(P.lt(Double.POSITIVE_INFINITY))", @@ -40257,6 +42828,7 @@ "canonical": "g.inject(-Infinity).is(P.gt(Infinity))", "anonymized": "g.inject(number0).is(P.gt(number1))", "dotnet": "g.Inject(Double.NegativeInfinity).Is(P.Gt(Double.PositiveInfinity))", + "dotnet_parameterize": "g.Inject(Double.NegativeInfinity).Is(P.Gt(Double.PositiveInfinity))", "go": "g.Inject(math.Inf(-1)).Is(gremlingo.P.Gt(math.Inf(1)))", "groovy": "g.inject(Double.NEGATIVE_INFINITY).is(P.gt(Double.POSITIVE_INFINITY))", "java": "g.inject(Double.NEGATIVE_INFINITY).is(P.gt(Double.POSITIVE_INFINITY))", @@ -40274,6 +42846,7 @@ "canonical": "g.inject([1b, 1s, 1i, 1l, 1f, 1d, 1000i, 1m, 1n]).unfold().where(__.is(xx1))", "anonymized": "g.inject(list0).unfold().where(__.is(xx1))", "dotnet": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", + "dotnet_parameterize": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", "go": "g.Inject([]interface{}{int8(1), int16(1), int32(1), int64(1), float32(1), 1, int32(1000), gremlingo.ParseBigDecimal(\"1\"), gremlingo.ParseBigInt(\"1\")}).Unfold().Where(gremlingo.T__.Is(xx1))", "groovy": "g.inject([(byte)1, (short)1, 1i, 1l, 1f, 1d, 1000i, new BigDecimal(1L), 1g]).unfold().where(__.is(xx1))", "java": "g.inject(new ArrayList() {{ add(new Byte(1)); add(new Short(1)); add(1); add(1l); add(1f); add(1d); add(1000); add(new BigDecimal(\"1\")); add(new BigInteger(\"1\")); }}).unfold().where(__.is(xx1))", @@ -40291,6 +42864,7 @@ "canonical": "g.inject([1b, 1s, 1i, 1l, 1f, 1d, 1000i, 1m, 1n]).unfold().where(__.is(xx1))", "anonymized": "g.inject(list0).unfold().where(__.is(xx1))", "dotnet": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", + "dotnet_parameterize": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", "go": "g.Inject([]interface{}{int8(1), int16(1), int32(1), int64(1), float32(1), 1, int32(1000), gremlingo.ParseBigDecimal(\"1\"), gremlingo.ParseBigInt(\"1\")}).Unfold().Where(gremlingo.T__.Is(xx1))", "groovy": "g.inject([(byte)1, (short)1, 1i, 1l, 1f, 1d, 1000i, new BigDecimal(1L), 1g]).unfold().where(__.is(xx1))", "java": "g.inject(new ArrayList() {{ add(new Byte(1)); add(new Short(1)); add(1); add(1l); add(1f); add(1d); add(1000); add(new BigDecimal(\"1\")); add(new BigInteger(\"1\")); }}).unfold().where(__.is(xx1))", @@ -40308,6 +42882,7 @@ "canonical": "g.inject([1b, 1s, 1i, 1l, 1f, 1d, 1000i, 1m, 1n]).unfold().where(__.is(xx1))", "anonymized": "g.inject(list0).unfold().where(__.is(xx1))", "dotnet": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", + "dotnet_parameterize": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", "go": "g.Inject([]interface{}{int8(1), int16(1), int32(1), int64(1), float32(1), 1, int32(1000), gremlingo.ParseBigDecimal(\"1\"), gremlingo.ParseBigInt(\"1\")}).Unfold().Where(gremlingo.T__.Is(xx1))", "groovy": "g.inject([(byte)1, (short)1, 1i, 1l, 1f, 1d, 1000i, new BigDecimal(1L), 1g]).unfold().where(__.is(xx1))", "java": "g.inject(new ArrayList() {{ add(new Byte(1)); add(new Short(1)); add(1); add(1l); add(1f); add(1d); add(1000); add(new BigDecimal(\"1\")); add(new BigInteger(\"1\")); }}).unfold().where(__.is(xx1))", @@ -40325,6 +42900,7 @@ "canonical": "g.inject([1b, 1s, 1i, 1l, 1f, 1d, 1000i, 1m, 1n]).unfold().where(__.is(xx1))", "anonymized": "g.inject(list0).unfold().where(__.is(xx1))", "dotnet": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", + "dotnet_parameterize": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", "go": "g.Inject([]interface{}{int8(1), int16(1), int32(1), int64(1), float32(1), 1, int32(1000), gremlingo.ParseBigDecimal(\"1\"), gremlingo.ParseBigInt(\"1\")}).Unfold().Where(gremlingo.T__.Is(xx1))", "groovy": "g.inject([(byte)1, (short)1, 1i, 1l, 1f, 1d, 1000i, new BigDecimal(1L), 1g]).unfold().where(__.is(xx1))", "java": "g.inject(new ArrayList() {{ add(new Byte(1)); add(new Short(1)); add(1); add(1l); add(1f); add(1d); add(1000); add(new BigDecimal(\"1\")); add(new BigInteger(\"1\")); }}).unfold().where(__.is(xx1))", @@ -40342,6 +42918,7 @@ "canonical": "g.inject([1b, 1s, 1i, 1l, 1f, 1d, 1000i, 1m, 1n]).unfold().where(__.is(xx1))", "anonymized": "g.inject(list0).unfold().where(__.is(xx1))", "dotnet": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", + "dotnet_parameterize": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", "go": "g.Inject([]interface{}{int8(1), int16(1), int32(1), int64(1), float32(1), 1, int32(1000), gremlingo.ParseBigDecimal(\"1\"), gremlingo.ParseBigInt(\"1\")}).Unfold().Where(gremlingo.T__.Is(xx1))", "groovy": "g.inject([(byte)1, (short)1, 1i, 1l, 1f, 1d, 1000i, new BigDecimal(1L), 1g]).unfold().where(__.is(xx1))", "java": "g.inject(new ArrayList() {{ add(new Byte(1)); add(new Short(1)); add(1); add(1l); add(1f); add(1d); add(1000); add(new BigDecimal(\"1\")); add(new BigInteger(\"1\")); }}).unfold().where(__.is(xx1))", @@ -40359,6 +42936,7 @@ "canonical": "g.inject([1b, 1s, 1i, 1l, 1f, 1d, 1000i, 1m, 1n]).unfold().where(__.is(xx1))", "anonymized": "g.inject(list0).unfold().where(__.is(xx1))", "dotnet": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", + "dotnet_parameterize": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", "go": "g.Inject([]interface{}{int8(1), int16(1), int32(1), int64(1), float32(1), 1, int32(1000), gremlingo.ParseBigDecimal(\"1\"), gremlingo.ParseBigInt(\"1\")}).Unfold().Where(gremlingo.T__.Is(xx1))", "groovy": "g.inject([(byte)1, (short)1, 1i, 1l, 1f, 1d, 1000i, new BigDecimal(1L), 1g]).unfold().where(__.is(xx1))", "java": "g.inject(new ArrayList() {{ add(new Byte(1)); add(new Short(1)); add(1); add(1l); add(1f); add(1d); add(1000); add(new BigDecimal(\"1\")); add(new BigInteger(\"1\")); }}).unfold().where(__.is(xx1))", @@ -40376,6 +42954,7 @@ "canonical": "g.inject([1b, 1s, 1i, 1l, 1f, 1d, 1000i, 1m, 1n]).unfold().where(__.is(xx1))", "anonymized": "g.inject(list0).unfold().where(__.is(xx1))", "dotnet": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", + "dotnet_parameterize": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", "go": "g.Inject([]interface{}{int8(1), int16(1), int32(1), int64(1), float32(1), 1, int32(1000), gremlingo.ParseBigDecimal(\"1\"), gremlingo.ParseBigInt(\"1\")}).Unfold().Where(gremlingo.T__.Is(xx1))", "groovy": "g.inject([(byte)1, (short)1, 1i, 1l, 1f, 1d, 1000i, new BigDecimal(1L), 1g]).unfold().where(__.is(xx1))", "java": "g.inject(new ArrayList() {{ add(new Byte(1)); add(new Short(1)); add(1); add(1l); add(1f); add(1d); add(1000); add(new BigDecimal(\"1\")); add(new BigInteger(\"1\")); }}).unfold().where(__.is(xx1))", @@ -40393,6 +42972,7 @@ "canonical": "g.inject([1b, 1s, 1i, 1l, 1f, 1d, 1000i, 1m, 1n]).unfold().where(__.is(xx1))", "anonymized": "g.inject(list0).unfold().where(__.is(xx1))", "dotnet": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", + "dotnet_parameterize": "g.Inject(new List { (sbyte) 1, (short) 1, 1, 1l, 1f, 1d, 1000, (decimal) 1, BigInteger.Parse(\"1\") }).Unfold().Where(__.Is(xx1))", "go": "g.Inject([]interface{}{int8(1), int16(1), int32(1), int64(1), float32(1), 1, int32(1000), gremlingo.ParseBigDecimal(\"1\"), gremlingo.ParseBigInt(\"1\")}).Unfold().Where(gremlingo.T__.Is(xx1))", "groovy": "g.inject([(byte)1, (short)1, 1i, 1l, 1f, 1d, 1000i, new BigDecimal(1L), 1g]).unfold().where(__.is(xx1))", "java": "g.inject(new ArrayList() {{ add(new Byte(1)); add(new Short(1)); add(1); add(1l); add(1f); add(1d); add(1000); add(new BigDecimal(\"1\")); add(new BigInteger(\"1\")); }}).unfold().where(__.is(xx1))", @@ -40410,6 +42990,7 @@ "canonical": "g.V().values().order()", "anonymized": "g.V().values().order()", "dotnet": "g.V().Values().Order()", + "dotnet_parameterize": "g.V().Values().Order()", "go": "g.V().Values().Order()", "groovy": "g.V().values().order()", "java": "g.V().values().order()", @@ -40427,6 +43008,7 @@ "canonical": "g.V().properties().order()", "anonymized": "g.V().properties().order()", "dotnet": "g.V().Properties().Order()", + "dotnet_parameterize": "g.V().Properties().Order()", "go": "g.V().Properties().Order()", "groovy": "g.V().properties().order()", "java": "g.V().properties().order()", @@ -40444,6 +43026,7 @@ "canonical": "g.V().properties().order().id()", "anonymized": "g.V().properties().order().id()", "dotnet": "g.V().Properties().Order().Id()", + "dotnet_parameterize": "g.V().Properties().Order().Id()", "go": "g.V().Properties().Order().Id()", "groovy": "g.V().properties().order().id()", "java": "g.V().properties().order().id()", @@ -40461,6 +43044,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.5d).property(\"a\", 10i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 11i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 12i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 13i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 14i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.2d).property(\"a\", 15i)", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addE(string4).from(string3).to(string3).property(string5, double0).property(string3, integer0).addE(string4).from(string3).to(string3).property(string5, double1).property(string3, integer1).addE(string4).from(string3).to(string3).property(string5, double2).property(string3, integer2).addE(string4).from(string3).to(string3).property(string5, double1).property(string3, integer3).addE(string4).from(string3).to(string3).property(string5, double2).property(string3, integer4).addE(string4).from(string3).to(string3).property(string5, double3).property(string3, integer5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.5d).Property(\"a\", 10).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 11).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 12).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 13).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 14).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.2d).Property(\"a\", 15)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.5d).Property(\"a\", 10).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 11).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 12).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 13).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 14).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.2d).Property(\"a\", 15)", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").As(\"a\").AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.5).Property(\"a\", int32(10)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0).Property(\"a\", int32(11)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4).Property(\"a\", int32(12)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0).Property(\"a\", int32(13)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4).Property(\"a\", int32(14)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.2).Property(\"a\", int32(15))", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.5d).property(\"a\", 10i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 11i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 12i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 13i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 14i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.2d).property(\"a\", 15i)", "java": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.5d).property(\"a\", 10).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 11).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 12).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 13).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 14).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.2d).property(\"a\", 15)", @@ -40473,6 +43057,7 @@ "canonical": "g.E().properties().order().value()", "anonymized": "g.E().properties().order().value()", "dotnet": "g.E().Properties().Order().Value()", + "dotnet_parameterize": "g.E().Properties().Order().Value()", "go": "g.E().Properties().Order().Value()", "groovy": "g.E().properties().order().value()", "java": "g.E().properties().order().value()", @@ -40490,6 +43075,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.5d).property(\"a\", 10i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 11i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 12i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 13i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 14i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.2d).property(\"a\", 15i)", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addE(string4).from(string3).to(string3).property(string5, double0).property(string3, integer0).addE(string4).from(string3).to(string3).property(string5, double1).property(string3, integer1).addE(string4).from(string3).to(string3).property(string5, double2).property(string3, integer2).addE(string4).from(string3).to(string3).property(string5, double1).property(string3, integer3).addE(string4).from(string3).to(string3).property(string5, double2).property(string3, integer4).addE(string4).from(string3).to(string3).property(string5, double3).property(string3, integer5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.5d).Property(\"a\", 10).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 11).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 12).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 13).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 14).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.2d).Property(\"a\", 15)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.5d).Property(\"a\", 10).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 11).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 12).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 13).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 14).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.2d).Property(\"a\", 15)", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").As(\"a\").AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.5).Property(\"a\", int32(10)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0).Property(\"a\", int32(11)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4).Property(\"a\", int32(12)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0).Property(\"a\", int32(13)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4).Property(\"a\", int32(14)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.2).Property(\"a\", int32(15))", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.5d).property(\"a\", 10i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 11i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 12i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 13i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 14i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.2d).property(\"a\", 15i)", "java": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.5d).property(\"a\", 10).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 11).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 12).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 13).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 14).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.2d).property(\"a\", 15)", @@ -40502,6 +43088,7 @@ "canonical": "g.E().properties().order().by(Order.desc).value()", "anonymized": "g.E().properties().order().by(Order.desc).value()", "dotnet": "g.E().Properties().Order().By(Order.Desc).Value()", + "dotnet_parameterize": "g.E().Properties().Order().By(Order.Desc).Value()", "go": "g.E().Properties().Order().By(gremlingo.Order.Desc).Value()", "groovy": "g.E().properties().order().by(Order.desc).value()", "java": "g.E().properties().order().by(Order.desc).value()", @@ -40519,6 +43106,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.5d).property(\"a\", 10i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 11i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 12i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 13i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 14i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.2d).property(\"a\", 15i)", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addE(string4).from(string3).to(string3).property(string5, double0).property(string3, integer0).addE(string4).from(string3).to(string3).property(string5, double1).property(string3, integer1).addE(string4).from(string3).to(string3).property(string5, double2).property(string3, integer2).addE(string4).from(string3).to(string3).property(string5, double1).property(string3, integer3).addE(string4).from(string3).to(string3).property(string5, double2).property(string3, integer4).addE(string4).from(string3).to(string3).property(string5, double3).property(string3, integer5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.5d).Property(\"a\", 10).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 11).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 12).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 13).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 14).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.2d).Property(\"a\", 15)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.5d).Property(\"a\", 10).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 11).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 12).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 13).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 14).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.2d).Property(\"a\", 15)", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").As(\"a\").AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.5).Property(\"a\", int32(10)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0).Property(\"a\", int32(11)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4).Property(\"a\", int32(12)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0).Property(\"a\", int32(13)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4).Property(\"a\", int32(14)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.2).Property(\"a\", int32(15))", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.5d).property(\"a\", 10i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 11i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 12i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 13i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 14i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.2d).property(\"a\", 15i)", "java": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.5d).property(\"a\", 10).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 11).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 12).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 13).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 14).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.2d).property(\"a\", 15)", @@ -40531,6 +43119,7 @@ "canonical": "g.E().properties().order()", "anonymized": "g.E().properties().order()", "dotnet": "g.E().Properties().Order()", + "dotnet_parameterize": "g.E().Properties().Order()", "go": "g.E().Properties().Order()", "groovy": "g.E().properties().order()", "java": "g.E().properties().order()", @@ -40548,6 +43137,7 @@ "canonical": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.5d).property(\"a\", 10i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 11i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 12i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 13i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 14i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.2d).property(\"a\", 15i)", "anonymized": "g.addV(string0).property(string1, string2).as(string3).addE(string4).from(string3).to(string3).property(string5, double0).property(string3, integer0).addE(string4).from(string3).to(string3).property(string5, double1).property(string3, integer1).addE(string4).from(string3).to(string3).property(string5, double2).property(string3, integer2).addE(string4).from(string3).to(string3).property(string5, double1).property(string3, integer3).addE(string4).from(string3).to(string3).property(string5, double2).property(string3, integer4).addE(string4).from(string3).to(string3).property(string5, double3).property(string3, integer5)", "dotnet": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.5d).Property(\"a\", 10).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 11).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 12).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 13).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 14).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.2d).Property(\"a\", 15)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(\"name\", \"alice\").As(\"a\").AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.5d).Property(\"a\", 10).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 11).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 12).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0d).Property(\"a\", 13).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4d).Property(\"a\", 14).AddE((string) \"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.2d).Property(\"a\", 15)", "go": "g.AddV(\"person\").Property(\"name\", \"alice\").As(\"a\").AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.5).Property(\"a\", int32(10)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0).Property(\"a\", int32(11)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4).Property(\"a\", int32(12)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 1.0).Property(\"a\", int32(13)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.4).Property(\"a\", int32(14)).AddE(\"self\").From(\"a\").To(\"a\").Property(\"weight\", 0.2).Property(\"a\", int32(15))", "groovy": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.5d).property(\"a\", 10i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 11i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 12i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 13i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 14i).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.2d).property(\"a\", 15i)", "java": "g.addV(\"person\").property(\"name\", \"alice\").as(\"a\").addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.5d).property(\"a\", 10).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 11).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 12).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 1.0d).property(\"a\", 13).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.4d).property(\"a\", 14).addE(\"self\").from(\"a\").to(\"a\").property(\"weight\", 0.2d).property(\"a\", 15)", @@ -40560,6 +43150,7 @@ "canonical": "g.E().properties().order().by(Order.desc)", "anonymized": "g.E().properties().order().by(Order.desc)", "dotnet": "g.E().Properties().Order().By(Order.Desc)", + "dotnet_parameterize": "g.E().Properties().Order().By(Order.Desc)", "go": "g.E().Properties().Order().By(gremlingo.Order.Desc)", "groovy": "g.E().properties().order().by(Order.desc)", "java": "g.E().properties().order().by(Order.desc)", @@ -40577,6 +43168,7 @@ "canonical": "g.inject(\"zzz\", \"foo\", UUID(\"6100808b-62f9-42b7-957e-ed66c30f40d1\"), [\"a\", \"b\", \"c\", \"d\"], 1, datetime(\"2023-08-01T00:00:00Z\"), [\"a\", \"b\", \"c\"], [a:\"a\", b:\"b\"], null, 2.0d, datetime(\"2023-01-01T00:00:00Z\"), {\"x\", \"y\", \"z\"}, [a:\"a\", b:false, c:\"c\"], \"bar\", UUID(\"5100808b-62f9-42b7-957e-ed66c30f40d1\"), true, false, Infinity, NaN, -Infinity).order()", "anonymized": "g.inject(string0, string1, string2, list0, number0, offsetdatetime0, list1, map0, object0, double0, offsetdatetime1, set0, map1, string3, string4, boolean0, boolean1, number1, number2, number3).order()", "dotnet": "g.Inject(\"zzz\", \"foo\", Guid.Parse(\"6100808b-62f9-42b7-957e-ed66c30f40d1\"), new List { \"a\", \"b\", \"c\", \"d\" }, 1, DateTimeOffset.Parse(\"2023-08-01T00:00Z\"), new List { \"a\", \"b\", \"c\" }, new Dictionary {{ \"a\", \"a\" }, { \"b\", \"b\" }}, null, 2.0d, DateTimeOffset.Parse(\"2023-01-01T00:00Z\"), new HashSet { \"x\", \"y\", \"z\" }, new Dictionary {{ \"a\", \"a\" }, { \"b\", false }, { \"c\", \"c\" }}, \"bar\", Guid.Parse(\"5100808b-62f9-42b7-957e-ed66c30f40d1\"), true, false, Double.PositiveInfinity, Double.NaN, Double.NegativeInfinity).Order()", + "dotnet_parameterize": "g.Inject(\"zzz\", \"foo\", Guid.Parse(\"6100808b-62f9-42b7-957e-ed66c30f40d1\"), new List { \"a\", \"b\", \"c\", \"d\" }, 1, DateTimeOffset.Parse(\"2023-08-01T00:00Z\"), new List { \"a\", \"b\", \"c\" }, new Dictionary {{ \"a\", \"a\" }, { \"b\", \"b\" }}, null, 2.0d, DateTimeOffset.Parse(\"2023-01-01T00:00Z\"), new HashSet { \"x\", \"y\", \"z\" }, new Dictionary {{ \"a\", \"a\" }, { \"b\", false }, { \"c\", \"c\" }}, \"bar\", Guid.Parse(\"5100808b-62f9-42b7-957e-ed66c30f40d1\"), true, false, Double.PositiveInfinity, Double.NaN, Double.NegativeInfinity).Order()", "go": "g.Inject(\"zzz\", \"foo\", uuid.MustParse(\"6100808b-62f9-42b7-957e-ed66c30f40d1\"), []interface{}{\"a\", \"b\", \"c\", \"d\"}, 1, time.Date(2023, 8, 1, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), []interface{}{\"a\", \"b\", \"c\"}, map[interface{}]interface{}{\"a\": \"a\", \"b\": \"b\" }, nil, 2.0, time.Date(2023, 1, 1, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), gremlingo.NewSimpleSet(\"x\", \"y\", \"z\"), map[interface{}]interface{}{\"a\": \"a\", \"b\": false, \"c\": \"c\" }, \"bar\", uuid.MustParse(\"5100808b-62f9-42b7-957e-ed66c30f40d1\"), true, false, math.Inf(1), math.NaN(), math.Inf(-1)).Order()", "groovy": "g.inject(\"zzz\", \"foo\", UUID.fromString(\"6100808b-62f9-42b7-957e-ed66c30f40d1\"), [\"a\", \"b\", \"c\", \"d\"], 1, datetime(\"2023-08-01T00:00:00Z\"), [\"a\", \"b\", \"c\"], [a:\"a\", b:\"b\"], null, 2.0d, datetime(\"2023-01-01T00:00:00Z\"), [\"x\", \"y\", \"z\"] as Set, [a:\"a\", b:false, c:\"c\"], \"bar\", UUID.fromString(\"5100808b-62f9-42b7-957e-ed66c30f40d1\"), true, false, Double.POSITIVE_INFINITY, NaN, Double.NEGATIVE_INFINITY).order()", "java": "g.inject(\"zzz\", \"foo\", UUID.fromString(\"6100808b-62f9-42b7-957e-ed66c30f40d1\"), new ArrayList() {{ add(\"a\"); add(\"b\"); add(\"c\"); add(\"d\"); }}, 1, OffsetDateTime.parse(\"2023-08-01T00:00Z\"), new ArrayList() {{ add(\"a\"); add(\"b\"); add(\"c\"); }}, new LinkedHashMap() {{ put(\"a\", \"a\"); put(\"b\", \"b\"); }}, null, 2.0d, OffsetDateTime.parse(\"2023-01-01T00:00Z\"), new HashSet() {{ add(\"x\"); add(\"y\"); add(\"z\"); }}, new LinkedHashMap() {{ put(\"a\", \"a\"); put(\"b\", false); put(\"c\", \"c\"); }}, \"bar\", UUID.fromString(\"5100808b-62f9-42b7-957e-ed66c30f40d1\"), true, false, Double.POSITIVE_INFINITY, Double.NaN, Double.NEGATIVE_INFINITY).order()", @@ -40594,6 +43186,7 @@ "canonical": "g.inject(\"zzz\", \"foo\", UUID(\"6100808b-62f9-42b7-957e-ed66c30f40d1\"), [\"a\", \"b\", \"c\", \"d\"], 1, datetime(\"2023-08-01T00:00:00Z\"), [\"a\", \"b\", \"c\"], [a:\"a\", b:\"b\"], null, 2.0d, datetime(\"2023-01-01T00:00:00Z\"), {\"x\", \"y\", \"z\"}, [a:\"a\", b:false, c:\"c\"], \"bar\", UUID(\"5100808b-62f9-42b7-957e-ed66c30f40d1\"), true, false, Infinity, NaN, -Infinity).order().by(Order.desc)", "anonymized": "g.inject(string0, string1, string2, list0, number0, offsetdatetime0, list1, map0, object0, double0, offsetdatetime1, set0, map1, string3, string4, boolean0, boolean1, number1, number2, number3).order().by(Order.desc)", "dotnet": "g.Inject(\"zzz\", \"foo\", Guid.Parse(\"6100808b-62f9-42b7-957e-ed66c30f40d1\"), new List { \"a\", \"b\", \"c\", \"d\" }, 1, DateTimeOffset.Parse(\"2023-08-01T00:00Z\"), new List { \"a\", \"b\", \"c\" }, new Dictionary {{ \"a\", \"a\" }, { \"b\", \"b\" }}, null, 2.0d, DateTimeOffset.Parse(\"2023-01-01T00:00Z\"), new HashSet { \"x\", \"y\", \"z\" }, new Dictionary {{ \"a\", \"a\" }, { \"b\", false }, { \"c\", \"c\" }}, \"bar\", Guid.Parse(\"5100808b-62f9-42b7-957e-ed66c30f40d1\"), true, false, Double.PositiveInfinity, Double.NaN, Double.NegativeInfinity).Order().By(Order.Desc)", + "dotnet_parameterize": "g.Inject(\"zzz\", \"foo\", Guid.Parse(\"6100808b-62f9-42b7-957e-ed66c30f40d1\"), new List { \"a\", \"b\", \"c\", \"d\" }, 1, DateTimeOffset.Parse(\"2023-08-01T00:00Z\"), new List { \"a\", \"b\", \"c\" }, new Dictionary {{ \"a\", \"a\" }, { \"b\", \"b\" }}, null, 2.0d, DateTimeOffset.Parse(\"2023-01-01T00:00Z\"), new HashSet { \"x\", \"y\", \"z\" }, new Dictionary {{ \"a\", \"a\" }, { \"b\", false }, { \"c\", \"c\" }}, \"bar\", Guid.Parse(\"5100808b-62f9-42b7-957e-ed66c30f40d1\"), true, false, Double.PositiveInfinity, Double.NaN, Double.NegativeInfinity).Order().By(Order.Desc)", "go": "g.Inject(\"zzz\", \"foo\", uuid.MustParse(\"6100808b-62f9-42b7-957e-ed66c30f40d1\"), []interface{}{\"a\", \"b\", \"c\", \"d\"}, 1, time.Date(2023, 8, 1, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), []interface{}{\"a\", \"b\", \"c\"}, map[interface{}]interface{}{\"a\": \"a\", \"b\": \"b\" }, nil, 2.0, time.Date(2023, 1, 1, 0, 0, 0, 0, time.FixedZone(\"UTC+00:00\", 0)), gremlingo.NewSimpleSet(\"x\", \"y\", \"z\"), map[interface{}]interface{}{\"a\": \"a\", \"b\": false, \"c\": \"c\" }, \"bar\", uuid.MustParse(\"5100808b-62f9-42b7-957e-ed66c30f40d1\"), true, false, math.Inf(1), math.NaN(), math.Inf(-1)).Order().By(gremlingo.Order.Desc)", "groovy": "g.inject(\"zzz\", \"foo\", UUID.fromString(\"6100808b-62f9-42b7-957e-ed66c30f40d1\"), [\"a\", \"b\", \"c\", \"d\"], 1, datetime(\"2023-08-01T00:00:00Z\"), [\"a\", \"b\", \"c\"], [a:\"a\", b:\"b\"], null, 2.0d, datetime(\"2023-01-01T00:00:00Z\"), [\"x\", \"y\", \"z\"] as Set, [a:\"a\", b:false, c:\"c\"], \"bar\", UUID.fromString(\"5100808b-62f9-42b7-957e-ed66c30f40d1\"), true, false, Double.POSITIVE_INFINITY, NaN, Double.NEGATIVE_INFINITY).order().by(Order.desc)", "java": "g.inject(\"zzz\", \"foo\", UUID.fromString(\"6100808b-62f9-42b7-957e-ed66c30f40d1\"), new ArrayList() {{ add(\"a\"); add(\"b\"); add(\"c\"); add(\"d\"); }}, 1, OffsetDateTime.parse(\"2023-08-01T00:00Z\"), new ArrayList() {{ add(\"a\"); add(\"b\"); add(\"c\"); }}, new LinkedHashMap() {{ put(\"a\", \"a\"); put(\"b\", \"b\"); }}, null, 2.0d, OffsetDateTime.parse(\"2023-01-01T00:00Z\"), new HashSet() {{ add(\"x\"); add(\"y\"); add(\"z\"); }}, new LinkedHashMap() {{ put(\"a\", \"a\"); put(\"b\", false); put(\"c\", \"c\"); }}, \"bar\", UUID.fromString(\"5100808b-62f9-42b7-957e-ed66c30f40d1\"), true, false, Double.POSITIVE_INFINITY, Double.NaN, Double.NEGATIVE_INFINITY).order().by(Order.desc)", @@ -40611,6 +43204,7 @@ "canonical": "g.V().out().out().order().by(Order.asc)", "anonymized": "g.V().out().out().order().by(Order.asc)", "dotnet": "g.V().Out().Out().Order().By(Order.Asc)", + "dotnet_parameterize": "g.V().Out().Out().Order().By(Order.Asc)", "go": "g.V().Out().Out().Order().By(gremlingo.Order.Asc)", "groovy": "g.V().out().out().order().by(Order.asc)", "java": "g.V().out().out().order().by(Order.asc)", @@ -40628,6 +43222,7 @@ "canonical": "g.V().out().out().order().by(Order.desc)", "anonymized": "g.V().out().out().order().by(Order.desc)", "dotnet": "g.V().Out().Out().Order().By(Order.Desc)", + "dotnet_parameterize": "g.V().Out().Out().Order().By(Order.Desc)", "go": "g.V().Out().Out().Order().By(gremlingo.Order.Desc)", "groovy": "g.V().out().out().order().by(Order.desc)", "java": "g.V().out().out().order().by(Order.desc)", @@ -40645,6 +43240,7 @@ "canonical": "g.V().out().out().as(\"head\").path().order().by(Order.asc).select(\"head\")", "anonymized": "g.V().out().out().as(string0).path().order().by(Order.asc).select(string0)", "dotnet": "g.V().Out().Out().As(\"head\").Path().Order().By(Order.Asc).Select(\"head\")", + "dotnet_parameterize": "g.V().Out().Out().As(\"head\").Path().Order().By(Order.Asc).Select(\"head\")", "go": "g.V().Out().Out().As(\"head\").Path().Order().By(gremlingo.Order.Asc).Select(\"head\")", "groovy": "g.V().out().out().as(\"head\").path().order().by(Order.asc).select(\"head\")", "java": "g.V().out().out().as(\"head\").path().order().by(Order.asc).select(\"head\")", @@ -40662,6 +43258,7 @@ "canonical": "g.V().out().out().as(\"head\").path().order().by(Order.desc).select(\"head\")", "anonymized": "g.V().out().out().as(string0).path().order().by(Order.desc).select(string0)", "dotnet": "g.V().Out().Out().As(\"head\").Path().Order().By(Order.Desc).Select(\"head\")", + "dotnet_parameterize": "g.V().Out().Out().As(\"head\").Path().Order().By(Order.Desc).Select(\"head\")", "go": "g.V().Out().Out().As(\"head\").Path().Order().By(gremlingo.Order.Desc).Select(\"head\")", "groovy": "g.V().out().out().as(\"head\").path().order().by(Order.desc).select(\"head\")", "java": "g.V().out().out().as(\"head\").path().order().by(Order.desc).select(\"head\")", @@ -40679,6 +43276,7 @@ "canonical": "g.V().out().outE().order().by(Order.asc)", "anonymized": "g.V().out().outE().order().by(Order.asc)", "dotnet": "g.V().Out().OutE().Order().By(Order.Asc)", + "dotnet_parameterize": "g.V().Out().OutE().Order().By(Order.Asc)", "go": "g.V().Out().OutE().Order().By(gremlingo.Order.Asc)", "groovy": "g.V().out().outE().order().by(Order.asc)", "java": "g.V().out().outE().order().by(Order.asc)", @@ -40696,6 +43294,7 @@ "canonical": "g.V().out().outE().order().by(Order.desc)", "anonymized": "g.V().out().outE().order().by(Order.desc)", "dotnet": "g.V().Out().OutE().Order().By(Order.Desc)", + "dotnet_parameterize": "g.V().Out().OutE().Order().By(Order.Desc)", "go": "g.V().Out().OutE().Order().By(gremlingo.Order.Desc)", "groovy": "g.V().out().outE().order().by(Order.desc)", "java": "g.V().out().outE().order().by(Order.desc)", @@ -40713,6 +43312,7 @@ "canonical": "g.V().out().outE().as(\"head\").path().order().by(Order.asc).select(\"head\")", "anonymized": "g.V().out().outE().as(string0).path().order().by(Order.asc).select(string0)", "dotnet": "g.V().Out().OutE().As(\"head\").Path().Order().By(Order.Asc).Select(\"head\")", + "dotnet_parameterize": "g.V().Out().OutE().As(\"head\").Path().Order().By(Order.Asc).Select(\"head\")", "go": "g.V().Out().OutE().As(\"head\").Path().Order().By(gremlingo.Order.Asc).Select(\"head\")", "groovy": "g.V().out().outE().as(\"head\").path().order().by(Order.asc).select(\"head\")", "java": "g.V().out().outE().as(\"head\").path().order().by(Order.asc).select(\"head\")", @@ -40730,6 +43330,7 @@ "canonical": "g.V().out().outE().as(\"head\").path().order().by(Order.desc).select(\"head\")", "anonymized": "g.V().out().outE().as(string0).path().order().by(Order.desc).select(string0)", "dotnet": "g.V().Out().OutE().As(\"head\").Path().Order().By(Order.Desc).Select(\"head\")", + "dotnet_parameterize": "g.V().Out().OutE().As(\"head\").Path().Order().By(Order.Desc).Select(\"head\")", "go": "g.V().Out().OutE().As(\"head\").Path().Order().By(gremlingo.Order.Desc).Select(\"head\")", "groovy": "g.V().out().outE().as(\"head\").path().order().by(Order.desc).select(\"head\")", "java": "g.V().out().outE().as(\"head\").path().order().by(Order.desc).select(\"head\")", @@ -40747,6 +43348,7 @@ "canonical": "g.V().out().out().properties().as(\"head\").path().order().by(Order.asc).select(\"head\").value()", "anonymized": "g.V().out().out().properties().as(string0).path().order().by(Order.asc).select(string0).value()", "dotnet": "g.V().Out().Out().Properties().As(\"head\").Path().Order().By(Order.Asc).Select(\"head\").Value()", + "dotnet_parameterize": "g.V().Out().Out().Properties().As(\"head\").Path().Order().By(Order.Asc).Select(\"head\").Value()", "go": "g.V().Out().Out().Properties().As(\"head\").Path().Order().By(gremlingo.Order.Asc).Select(\"head\").Value()", "groovy": "g.V().out().out().properties().as(\"head\").path().order().by(Order.asc).select(\"head\").value()", "java": "g.V().out().out().properties().as(\"head\").path().order().by(Order.asc).select(\"head\").value()", @@ -40764,6 +43366,7 @@ "canonical": "g.V().out().out().properties().as(\"head\").path().order().by(Order.desc).select(\"head\").value()", "anonymized": "g.V().out().out().properties().as(string0).path().order().by(Order.desc).select(string0).value()", "dotnet": "g.V().Out().Out().Properties().As(\"head\").Path().Order().By(Order.Desc).Select(\"head\").Value()", + "dotnet_parameterize": "g.V().Out().Out().Properties().As(\"head\").Path().Order().By(Order.Desc).Select(\"head\").Value()", "go": "g.V().Out().Out().Properties().As(\"head\").Path().Order().By(gremlingo.Order.Desc).Select(\"head\").Value()", "groovy": "g.V().out().out().properties().as(\"head\").path().order().by(Order.desc).select(\"head\").value()", "java": "g.V().out().out().properties().as(\"head\").path().order().by(Order.desc).select(\"head\").value()", @@ -40781,6 +43384,7 @@ "canonical": "g.V().out().out().values().as(\"head\").path().order().by(Order.asc).select(\"head\")", "anonymized": "g.V().out().out().values().as(string0).path().order().by(Order.asc).select(string0)", "dotnet": "g.V().Out().Out().Values().As(\"head\").Path().Order().By(Order.Asc).Select(\"head\")", + "dotnet_parameterize": "g.V().Out().Out().Values().As(\"head\").Path().Order().By(Order.Asc).Select(\"head\")", "go": "g.V().Out().Out().Values().As(\"head\").Path().Order().By(gremlingo.Order.Asc).Select(\"head\")", "groovy": "g.V().out().out().values().as(\"head\").path().order().by(Order.asc).select(\"head\")", "java": "g.V().out().out().values().as(\"head\").path().order().by(Order.asc).select(\"head\")", @@ -40798,6 +43402,7 @@ "canonical": "g.V().out().out().values().as(\"head\").path().order().by(Order.desc).select(\"head\")", "anonymized": "g.V().out().out().values().as(string0).path().order().by(Order.desc).select(string0)", "dotnet": "g.V().Out().Out().Values().As(\"head\").Path().Order().By(Order.Desc).Select(\"head\")", + "dotnet_parameterize": "g.V().Out().Out().Values().As(\"head\").Path().Order().By(Order.Desc).Select(\"head\")", "go": "g.V().Out().Out().Values().As(\"head\").Path().Order().By(gremlingo.Order.Desc).Select(\"head\")", "groovy": "g.V().out().out().values().as(\"head\").path().order().by(Order.desc).select(\"head\")", "java": "g.V().out().out().values().as(\"head\").path().order().by(Order.desc).select(\"head\")", @@ -40815,6 +43420,7 @@ "canonical": "g.V().values(\"name\").aggregate(\"x\").cap(\"x\")", "anonymized": "g.V().values(string0).aggregate(string1).cap(string1)", "dotnet": "g.V().Values(\"name\").Aggregate(\"x\").Cap(\"x\")", + "dotnet_parameterize": "g.V().Values(\"name\").Aggregate(\"x\").Cap(\"x\")", "go": "g.V().Values(\"name\").Aggregate(\"x\").Cap(\"x\")", "groovy": "g.V().values(\"name\").aggregate(\"x\").cap(\"x\")", "java": "g.V().values(\"name\").aggregate(\"x\").cap(\"x\")", @@ -40832,6 +43438,7 @@ "canonical": "g.V().aggregate(\"x\").by(\"name\").cap(\"x\")", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0)", "dotnet": "g.V().Aggregate(\"x\").By(\"name\").Cap(\"x\")", + "dotnet_parameterize": "g.V().Aggregate(\"x\").By(\"name\").Cap(\"x\")", "go": "g.V().Aggregate(\"x\").By(\"name\").Cap(\"x\")", "groovy": "g.V().aggregate(\"x\").by(\"name\").cap(\"x\")", "java": "g.V().aggregate(\"x\").by(\"name\").cap(\"x\")", @@ -40849,6 +43456,7 @@ "canonical": "g.V().out().aggregate(\"a\").path()", "anonymized": "g.V().out().aggregate(string0).path()", "dotnet": "g.V().Out().Aggregate(\"a\").Path()", + "dotnet_parameterize": "g.V().Out().Aggregate(\"a\").Path()", "go": "g.V().Out().Aggregate(\"a\").Path()", "groovy": "g.V().out().aggregate(\"a\").path()", "java": "g.V().out().aggregate(\"a\").path()", @@ -40866,6 +43474,7 @@ "canonical": "g.V().hasLabel(\"person\").aggregate(\"x\").by(\"age\").cap(\"x\").as(\"y\").select(\"y\")", "anonymized": "g.V().hasLabel(string0).aggregate(string1).by(string2).cap(string1).as(string3).select(string3)", "dotnet": "g.V().HasLabel(\"person\").Aggregate(\"x\").By(\"age\").Cap(\"x\").As(\"y\").Select(\"y\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Aggregate(\"x\").By(\"age\").Cap(\"x\").As(\"y\").Select(\"y\")", "go": "g.V().HasLabel(\"person\").Aggregate(\"x\").By(\"age\").Cap(\"x\").As(\"y\").Select(\"y\")", "groovy": "g.V().hasLabel(\"person\").aggregate(\"x\").by(\"age\").cap(\"x\").as(\"y\").select(\"y\")", "java": "g.V().hasLabel(\"person\").aggregate(\"x\").by(\"age\").cap(\"x\").as(\"y\").select(\"y\")", @@ -40883,6 +43492,7 @@ "canonical": "g.V().aggregate(\"x\").by(\"age\").cap(\"x\")", "anonymized": "g.V().aggregate(string0).by(string1).cap(string0)", "dotnet": "g.V().Aggregate(\"x\").By(\"age\").Cap(\"x\")", + "dotnet_parameterize": "g.V().Aggregate(\"x\").By(\"age\").Cap(\"x\")", "go": "g.V().Aggregate(\"x\").By(\"age\").Cap(\"x\")", "groovy": "g.V().aggregate(\"x\").by(\"age\").cap(\"x\")", "java": "g.V().aggregate(\"x\").by(\"age\").cap(\"x\")", @@ -40900,6 +43510,7 @@ "canonical": "g.V().local(__.aggregate(\"x\").by(\"age\")).cap(\"x\")", "anonymized": "g.V().local(__.aggregate(string0).by(string1)).cap(string0)", "dotnet": "g.V().Local(__.Aggregate(\"x\").By(\"age\")).Cap(\"x\")", + "dotnet_parameterize": "g.V().Local(__.Aggregate(\"x\").By(\"age\")).Cap(\"x\")", "go": "g.V().Local(gremlingo.T__.Aggregate(\"x\").By(\"age\")).Cap(\"x\")", "groovy": "g.V().local(__.aggregate(\"x\").by(\"age\")).cap(\"x\")", "java": "g.V().local(__.aggregate(\"x\").by(\"age\")).cap(\"x\")", @@ -40917,6 +43528,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().local(__.aggregate(\"x\").by(\"age\")).cap(\"x\")", "anonymized": "g.withStrategies(ProductiveByStrategy).V().local(__.aggregate(string0).by(string1)).cap(string0)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Local(__.Aggregate(\"x\").By(\"age\")).Cap(\"x\")", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Local(__.Aggregate(\"x\").By(\"age\")).Cap(\"x\")", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Local(gremlingo.T__.Aggregate(\"x\").By(\"age\")).Cap(\"x\")", "groovy": "g.withStrategies(ProductiveByStrategy).V().local(__.aggregate(\"x\").by(\"age\")).cap(\"x\")", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().local(__.aggregate(\"x\").by(\"age\")).cap(\"x\")", @@ -40934,6 +43546,7 @@ "canonical": "g.V().local(__.aggregate(\"a\").by(\"name\")).out().cap(\"a\")", "anonymized": "g.V().local(__.aggregate(string0).by(string1)).out().cap(string0)", "dotnet": "g.V().Local(__.Aggregate(\"a\").By(\"name\")).Out().Cap(\"a\")", + "dotnet_parameterize": "g.V().Local(__.Aggregate(\"a\").By(\"name\")).Out().Cap(\"a\")", "go": "g.V().Local(gremlingo.T__.Aggregate(\"a\").By(\"name\")).Out().Cap(\"a\")", "groovy": "g.V().local(__.aggregate(\"a\").by(\"name\")).out().cap(\"a\")", "java": "g.V().local(__.aggregate(\"a\").by(\"name\")).out().cap(\"a\")", @@ -40951,6 +43564,7 @@ "canonical": "g.V(vid1).local(__.aggregate(\"a\").by(\"name\")).out().local(__.aggregate(\"a\").by(\"name\")).values(\"name\").cap(\"a\")", "anonymized": "g.V(vid1).local(__.aggregate(string0).by(string1)).out().local(__.aggregate(string0).by(string1)).values(string1).cap(string0)", "dotnet": "g.V(vid1).Local(__.Aggregate(\"a\").By(\"name\")).Out().Local(__.Aggregate(\"a\").By(\"name\")).Values(\"name\").Cap(\"a\")", + "dotnet_parameterize": "g.V(vid1).Local(__.Aggregate(\"a\").By(\"name\")).Out().Local(__.Aggregate(\"a\").By(\"name\")).Values(\"name\").Cap(\"a\")", "go": "g.V(vid1).Local(gremlingo.T__.Aggregate(\"a\").By(\"name\")).Out().Local(gremlingo.T__.Aggregate(\"a\").By(\"name\")).Values(\"name\").Cap(\"a\")", "groovy": "g.V(vid1).local(__.aggregate(\"a\").by(\"name\")).out().local(__.aggregate(\"a\").by(\"name\")).values(\"name\").cap(\"a\")", "java": "g.V(vid1).local(__.aggregate(\"a\").by(\"name\")).out().local(__.aggregate(\"a\").by(\"name\")).values(\"name\").cap(\"a\")", @@ -40968,6 +43582,7 @@ "canonical": "g.V().both().values(\"name\").local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.V().both().values(string0).local(__.aggregate(string1)).cap(string1)", "dotnet": "g.V().Both().Values(\"name\").Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.V().Both().Values(\"name\").Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.V().Both().Values(\"name\").Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.V().both().values(\"name\").local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.V().both().values(\"name\").local(__.aggregate(\"a\")).cap(\"a\")", @@ -40985,6 +43600,7 @@ "canonical": "g.withSideEffect(\"a\", {\"alice\"}).V().both().values(\"name\").local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, set0).V().both().values(string1).local(__.aggregate(string0)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", new HashSet { \"alice\" }).V().Both().Values(\"name\").Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", new HashSet { \"alice\" }).V().Both().Values(\"name\").Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", gremlingo.NewSimpleSet(\"alice\")).V().Both().Values(\"name\").Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", [\"alice\"] as Set).V().both().values(\"name\").local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", new HashSet() {{ add(\"alice\"); }}).V().both().values(\"name\").local(__.aggregate(\"a\")).cap(\"a\")", @@ -41002,6 +43618,7 @@ "canonical": "g.V().local(__.aggregate(\"a\").by(__.outE(\"created\").count())).out().out().local(__.aggregate(\"a\").by(__.inE(\"created\").values(\"weight\").sum())).cap(\"a\")", "anonymized": "g.V().local(__.aggregate(string0).by(__.outE(string1).count())).out().out().local(__.aggregate(string0).by(__.inE(string1).values(string2).sum())).cap(string0)", "dotnet": "g.V().Local(__.Aggregate(\"a\").By(__.OutE(\"created\").Count())).Out().Out().Local(__.Aggregate(\"a\").By(__.InE(\"created\").Values(\"weight\").Sum())).Cap(\"a\")", + "dotnet_parameterize": "g.V().Local(__.Aggregate(\"a\").By(__.OutE(\"created\").Count())).Out().Out().Local(__.Aggregate(\"a\").By(__.InE(\"created\").Values(\"weight\").Sum())).Cap(\"a\")", "go": "g.V().Local(gremlingo.T__.Aggregate(\"a\").By(gremlingo.T__.OutE(\"created\").Count())).Out().Out().Local(gremlingo.T__.Aggregate(\"a\").By(gremlingo.T__.InE(\"created\").Values(\"weight\").Sum())).Cap(\"a\")", "groovy": "g.V().local(__.aggregate(\"a\").by(__.outE(\"created\").count())).out().out().local(__.aggregate(\"a\").by(__.inE(\"created\").values(\"weight\").sum())).cap(\"a\")", "java": "g.V().local(__.aggregate(\"a\").by(__.outE(\"created\").count())).out().out().local(__.aggregate(\"a\").by(__.inE(\"created\").values(\"weight\").sum())).cap(\"a\")", @@ -41019,6 +43636,7 @@ "canonical": "g.V().aggregate(\"x\").by(__.values(\"age\").is(P.gt(29))).cap(\"x\")", "anonymized": "g.V().aggregate(string0).by(__.values(string1).is(P.gt(number0))).cap(string0)", "dotnet": "g.V().Aggregate(\"x\").By(__.Values(\"age\").Is(P.Gt(29))).Cap(\"x\")", + "dotnet_parameterize": "g.V().Aggregate(\"x\").By(__.Values(\"age\").Is(P.Gt(29))).Cap(\"x\")", "go": "g.V().Aggregate(\"x\").By(gremlingo.T__.Values(\"age\").Is(gremlingo.P.Gt(29))).Cap(\"x\")", "groovy": "g.V().aggregate(\"x\").by(__.values(\"age\").is(P.gt(29))).cap(\"x\")", "java": "g.V().aggregate(\"x\").by(__.values(\"age\").is(P.gt(29))).cap(\"x\")", @@ -41036,6 +43654,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"x\").by(__.values(\"age\").is(P.gt(29))).cap(\"x\")", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(__.values(string1).is(P.gt(number0))).cap(string0)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"x\").By(__.Values(\"age\").Is(P.Gt(29))).Cap(\"x\")", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"x\").By(__.Values(\"age\").Is(P.Gt(29))).Cap(\"x\")", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"x\").By(gremlingo.T__.Values(\"age\").Is(gremlingo.P.Gt(29))).Cap(\"x\")", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"x\").by(__.values(\"age\").is(P.gt(29))).cap(\"x\")", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"x\").by(__.values(\"age\").is(P.gt(29))).cap(\"x\")", @@ -41053,6 +43672,7 @@ "canonical": "g.V().aggregate(\"x\").by(__.out().order().by(\"name\")).cap(\"x\")", "anonymized": "g.V().aggregate(string0).by(__.out().order().by(string1)).cap(string0)", "dotnet": "g.V().Aggregate(\"x\").By(__.Out().Order().By(\"name\")).Cap(\"x\")", + "dotnet_parameterize": "g.V().Aggregate(\"x\").By(__.Out().Order().By(\"name\")).Cap(\"x\")", "go": "g.V().Aggregate(\"x\").By(gremlingo.T__.Out().Order().By(\"name\")).Cap(\"x\")", "groovy": "g.V().aggregate(\"x\").by(__.out().order().by(\"name\")).cap(\"x\")", "java": "g.V().aggregate(\"x\").by(__.out().order().by(\"name\")).cap(\"x\")", @@ -41070,6 +43690,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"x\").by(__.out().order().by(\"name\")).cap(\"x\")", "anonymized": "g.withStrategies(ProductiveByStrategy).V().aggregate(string0).by(__.out().order().by(string1)).cap(string0)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"x\").By(__.Out().Order().By(\"name\")).Cap(\"x\")", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Aggregate(\"x\").By(__.Out().Order().By(\"name\")).Cap(\"x\")", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Aggregate(\"x\").By(gremlingo.T__.Out().Order().By(\"name\")).Cap(\"x\")", "groovy": "g.withStrategies(ProductiveByStrategy).V().aggregate(\"x\").by(__.out().order().by(\"name\")).cap(\"x\")", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().aggregate(\"x\").by(__.out().order().by(\"name\")).cap(\"x\")", @@ -41087,6 +43708,7 @@ "canonical": "g.V().aggregate(\"a\").has(\"person\", \"age\", P.gte(30)).cap(\"a\").unfold().values(\"name\")", "anonymized": "g.V().aggregate(string0).has(string1, string2, P.gte(number0)).cap(string0).unfold().values(string3)", "dotnet": "g.V().Aggregate(\"a\").Has(\"person\", \"age\", P.Gte(30)).Cap(\"a\").Unfold().Values(\"name\")", + "dotnet_parameterize": "g.V().Aggregate(\"a\").Has(\"person\", \"age\", P.Gte(30)).Cap(\"a\").Unfold().Values(\"name\")", "go": "g.V().Aggregate(\"a\").Has(\"person\", \"age\", gremlingo.P.Gte(30)).Cap(\"a\").Unfold().Values(\"name\")", "groovy": "g.V().aggregate(\"a\").has(\"person\", \"age\", P.gte(30)).cap(\"a\").unfold().values(\"name\")", "java": "g.V().aggregate(\"a\").has(\"person\", \"age\", P.gte(30)).cap(\"a\").unfold().values(\"name\")", @@ -41104,6 +43726,7 @@ "canonical": "g.withSideEffect(\"a\", 1, Operator.sum).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.sum).V().aggregate(string0).by(string1).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 1, Operator.Sum).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 1, Operator.Sum).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 1, gremlingo.Operator.Sum).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 1, Operator.sum).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "java": "g.withSideEffect(\"a\", 1, Operator.sum).V().aggregate(\"a\").by(\"age\").cap(\"a\")", @@ -41121,6 +43744,7 @@ "canonical": "g.withSideEffect(\"a\", 1, Operator.sum).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.sum).V().local(__.aggregate(string0).by(string1)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 1, Operator.Sum).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 1, Operator.Sum).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 1, gremlingo.Operator.Sum).V().Local(gremlingo.T__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 1, Operator.sum).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", 1, Operator.sum).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", @@ -41138,6 +43762,7 @@ "canonical": "g.withSideEffect(\"a\", 123, Operator.minus).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.minus).V().aggregate(string0).by(string1).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 123, Operator.Minus).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 123, Operator.Minus).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 123, gremlingo.Operator.Minus).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 123, Operator.minus).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "java": "g.withSideEffect(\"a\", 123, Operator.minus).V().aggregate(\"a\").by(\"age\").cap(\"a\")", @@ -41155,6 +43780,7 @@ "canonical": "g.withSideEffect(\"a\", 123, Operator.minus).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.minus).V().local(__.aggregate(string0).by(string1)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 123, Operator.Minus).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 123, Operator.Minus).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 123, gremlingo.Operator.Minus).V().Local(gremlingo.T__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 123, Operator.minus).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", 123, Operator.minus).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", @@ -41172,6 +43798,7 @@ "canonical": "g.withSideEffect(\"a\", 2, Operator.mult).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.mult).V().aggregate(string0).by(string1).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 2, Operator.Mult).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 2, Operator.Mult).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 2, gremlingo.Operator.Mult).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 2, Operator.mult).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "java": "g.withSideEffect(\"a\", 2, Operator.mult).V().aggregate(\"a\").by(\"age\").cap(\"a\")", @@ -41189,6 +43816,7 @@ "canonical": "g.withSideEffect(\"a\", 2, Operator.mult).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.mult).V().local(__.aggregate(string0).by(string1)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 2, Operator.Mult).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 2, Operator.Mult).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 2, gremlingo.Operator.Mult).V().Local(gremlingo.T__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 2, Operator.mult).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", 2, Operator.mult).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", @@ -41206,6 +43834,7 @@ "canonical": "g.withSideEffect(\"a\", 876960, Operator.div).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.div).V().aggregate(string0).by(string1).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 876960, Operator.Div).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 876960, Operator.Div).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 876960, gremlingo.Operator.Div).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 876960, Operator.div).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "java": "g.withSideEffect(\"a\", 876960, Operator.div).V().aggregate(\"a\").by(\"age\").cap(\"a\")", @@ -41223,6 +43852,7 @@ "canonical": "g.withSideEffect(\"a\", 876960, Operator.div).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.div).V().local(__.aggregate(string0).by(string1)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 876960, Operator.Div).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 876960, Operator.Div).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 876960, gremlingo.Operator.Div).V().Local(gremlingo.T__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 876960, Operator.div).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", 876960, Operator.div).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", @@ -41240,6 +43870,7 @@ "canonical": "g.withSideEffect(\"a\", 1, Operator.min).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.min).V().aggregate(string0).by(string1).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 1, Operator.Min).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 1, Operator.Min).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 1, gremlingo.Operator.Min).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 1, Operator.min).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "java": "g.withSideEffect(\"a\", 1, Operator.min).V().aggregate(\"a\").by(\"age\").cap(\"a\")", @@ -41257,6 +43888,7 @@ "canonical": "g.withSideEffect(\"a\", 1, Operator.min).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.min).V().local(__.aggregate(string0).by(string1)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 1, Operator.Min).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 1, Operator.Min).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 1, gremlingo.Operator.Min).V().Local(gremlingo.T__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 1, Operator.min).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", 1, Operator.min).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", @@ -41274,6 +43906,7 @@ "canonical": "g.withSideEffect(\"a\", 100, Operator.min).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.min).V().aggregate(string0).by(string1).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 100, Operator.Min).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 100, Operator.Min).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 100, gremlingo.Operator.Min).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 100, Operator.min).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "java": "g.withSideEffect(\"a\", 100, Operator.min).V().aggregate(\"a\").by(\"age\").cap(\"a\")", @@ -41291,6 +43924,7 @@ "canonical": "g.withSideEffect(\"a\", 100, Operator.min).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.min).V().local(__.aggregate(string0).by(string1)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 100, Operator.Min).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 100, Operator.Min).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 100, gremlingo.Operator.Min).V().Local(gremlingo.T__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 100, Operator.min).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", 100, Operator.min).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", @@ -41308,6 +43942,7 @@ "canonical": "g.withSideEffect(\"a\", 1, Operator.max).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.max).V().aggregate(string0).by(string1).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 1, Operator.Max).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 1, Operator.Max).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 1, gremlingo.Operator.Max).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 1, Operator.max).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "java": "g.withSideEffect(\"a\", 1, Operator.max).V().aggregate(\"a\").by(\"age\").cap(\"a\")", @@ -41325,6 +43960,7 @@ "canonical": "g.withSideEffect(\"a\", 1, Operator.max).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.max).V().local(__.aggregate(string0).by(string1)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 1, Operator.Max).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 1, Operator.Max).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 1, gremlingo.Operator.Max).V().Local(gremlingo.T__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 1, Operator.max).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", 1, Operator.max).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", @@ -41342,6 +43978,7 @@ "canonical": "g.withSideEffect(\"a\", 100, Operator.max).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.max).V().aggregate(string0).by(string1).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 100, Operator.Max).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 100, Operator.Max).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 100, gremlingo.Operator.Max).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 100, Operator.max).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "java": "g.withSideEffect(\"a\", 100, Operator.max).V().aggregate(\"a\").by(\"age\").cap(\"a\")", @@ -41359,6 +43996,7 @@ "canonical": "g.withSideEffect(\"a\", 100, Operator.max).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, number0, Operator.max).V().local(__.aggregate(string0).by(string1)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", 100, Operator.Max).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", 100, Operator.Max).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", 100, gremlingo.Operator.Max).V().Local(gremlingo.T__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", 100, Operator.max).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", 100, Operator.max).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", @@ -41376,6 +44014,7 @@ "canonical": "g.withSideEffect(\"a\", true, Operator.and).V().constant(false).aggregate(\"a\").cap(\"a\")", "anonymized": "g.withSideEffect(string0, boolean0, Operator.and).V().constant(boolean1).aggregate(string0).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", true, Operator.And).V().Constant(false).Aggregate(\"a\").Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", true, Operator.And).V().Constant(false).Aggregate(\"a\").Cap(\"a\")", "go": "g.WithSideEffect(\"a\", true, gremlingo.Operator.And).V().Constant(false).Aggregate(\"a\").Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", true, Operator.and).V().constant(false).aggregate(\"a\").cap(\"a\")", "java": "g.withSideEffect(\"a\", true, Operator.and).V().constant(false).aggregate(\"a\").cap(\"a\")", @@ -41393,6 +44032,7 @@ "canonical": "g.withSideEffect(\"a\", true, Operator.and).V().constant(false).local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, boolean0, Operator.and).V().constant(boolean1).local(__.aggregate(string0)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", true, Operator.And).V().Constant(false).Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", true, Operator.And).V().Constant(false).Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", true, gremlingo.Operator.And).V().Constant(false).Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", true, Operator.and).V().constant(false).local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", true, Operator.and).V().constant(false).local(__.aggregate(\"a\")).cap(\"a\")", @@ -41410,6 +44050,7 @@ "canonical": "g.withSideEffect(\"a\", true, Operator.or).V().constant(false).aggregate(\"a\").cap(\"a\")", "anonymized": "g.withSideEffect(string0, boolean0, Operator.or).V().constant(boolean1).aggregate(string0).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", true, Operator.Or).V().Constant(false).Aggregate(\"a\").Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", true, Operator.Or).V().Constant(false).Aggregate(\"a\").Cap(\"a\")", "go": "g.WithSideEffect(\"a\", true, gremlingo.Operator.Or).V().Constant(false).Aggregate(\"a\").Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", true, Operator.or).V().constant(false).aggregate(\"a\").cap(\"a\")", "java": "g.withSideEffect(\"a\", true, Operator.or).V().constant(false).aggregate(\"a\").cap(\"a\")", @@ -41427,6 +44068,7 @@ "canonical": "g.withSideEffect(\"a\", true, Operator.or).V().constant(false).local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, boolean0, Operator.or).V().constant(boolean1).local(__.aggregate(string0)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", true, Operator.Or).V().Constant(false).Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", true, Operator.Or).V().Constant(false).Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", true, gremlingo.Operator.Or).V().Constant(false).Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", true, Operator.or).V().constant(false).local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", true, Operator.or).V().constant(false).local(__.aggregate(\"a\")).cap(\"a\")", @@ -41444,6 +44086,7 @@ "canonical": "g.withSideEffect(\"a\", [1i, 2i, 3i], Operator.addAll).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "anonymized": "g.withSideEffect(string0, list0, Operator.addAll).V().aggregate(string0).by(string1).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", new List { 1, 2, 3 }, Operator.AddAll).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", new List { 1, 2, 3 }, Operator.AddAll).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "go": "g.WithSideEffect(\"a\", []interface{}{int32(1), int32(2), int32(3)}, gremlingo.Operator.AddAll).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", [1i, 2i, 3i], Operator.addAll).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "java": "g.withSideEffect(\"a\", new ArrayList() {{ add(1); add(2); add(3); }}, Operator.addAll).V().aggregate(\"a\").by(\"age\").cap(\"a\")", @@ -41461,6 +44104,7 @@ "canonical": "g.withSideEffect(\"a\", [1i, 2i, 3i], Operator.addAll).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, list0, Operator.addAll).V().local(__.aggregate(string0).by(string1)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", new List { 1, 2, 3 }, Operator.AddAll).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", new List { 1, 2, 3 }, Operator.AddAll).V().Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", []interface{}{int32(1), int32(2), int32(3)}, gremlingo.Operator.AddAll).V().Local(gremlingo.T__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", [1i, 2i, 3i], Operator.addAll).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", new ArrayList() {{ add(1); add(2); add(3); }}, Operator.addAll).V().local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", @@ -41478,6 +44122,7 @@ "canonical": "g.withSideEffect(\"a\", [1i, 2i, 3i], Operator.assign).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "anonymized": "g.withSideEffect(string0, list0, Operator.assign).V().aggregate(string0).by(string1).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", new List { 1, 2, 3 }, Operator.Assign).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", new List { 1, 2, 3 }, Operator.Assign).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "go": "g.WithSideEffect(\"a\", []interface{}{int32(1), int32(2), int32(3)}, gremlingo.Operator.Assign).V().Aggregate(\"a\").By(\"age\").Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", [1i, 2i, 3i], Operator.assign).V().aggregate(\"a\").by(\"age\").cap(\"a\")", "java": "g.withSideEffect(\"a\", new ArrayList() {{ add(1); add(2); add(3); }}, Operator.assign).V().aggregate(\"a\").by(\"age\").cap(\"a\")", @@ -41495,6 +44140,7 @@ "canonical": "g.withSideEffect(\"a\", [1i, 2i, 3i], Operator.assign).V().order().by(\"age\").local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "anonymized": "g.withSideEffect(string0, list0, Operator.assign).V().order().by(string1).local(__.aggregate(string0).by(string1)).cap(string0)", "dotnet": "g.WithSideEffect(\"a\", new List { 1, 2, 3 }, Operator.Assign).V().Order().By(\"age\").Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", + "dotnet_parameterize": "g.WithSideEffect(\"a\", new List { 1, 2, 3 }, Operator.Assign).V().Order().By(\"age\").Local(__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "go": "g.WithSideEffect(\"a\", []interface{}{int32(1), int32(2), int32(3)}, gremlingo.Operator.Assign).V().Order().By(\"age\").Local(gremlingo.T__.Aggregate(\"a\").By(\"age\")).Cap(\"a\")", "groovy": "g.withSideEffect(\"a\", [1i, 2i, 3i], Operator.assign).V().order().by(\"age\").local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", "java": "g.withSideEffect(\"a\", new ArrayList() {{ add(1); add(2); add(3); }}, Operator.assign).V().order().by(\"age\").local(__.aggregate(\"a\").by(\"age\")).cap(\"a\")", @@ -41512,6 +44158,7 @@ "canonical": "g.V().local(__.aggregate(\"a\").by(\"name\")).out().cap(\"a\")", "anonymized": "g.V().local(__.aggregate(string0).by(string1)).out().cap(string0)", "dotnet": "g.V().Local(__.Aggregate(\"a\").By(\"name\")).Out().Cap(\"a\")", + "dotnet_parameterize": "g.V().Local(__.Aggregate(\"a\").By(\"name\")).Out().Cap(\"a\")", "go": "g.V().Local(gremlingo.T__.Aggregate(\"a\").By(\"name\")).Out().Cap(\"a\")", "groovy": "g.V().local(__.aggregate(\"a\").by(\"name\")).out().cap(\"a\")", "java": "g.V().local(__.aggregate(\"a\").by(\"name\")).out().cap(\"a\")", @@ -41529,6 +44176,7 @@ "canonical": "g.V().both().values(\"name\").local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.V().both().values(string0).local(__.aggregate(string1)).cap(string1)", "dotnet": "g.V().Both().Values(\"name\").Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.V().Both().Values(\"name\").Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.V().Both().Values(\"name\").Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.V().both().values(\"name\").local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.V().both().values(\"name\").local(__.aggregate(\"a\")).cap(\"a\")", @@ -41546,6 +44194,7 @@ "canonical": "g.V().local(__.aggregate(\"a\")).outE().inV().local(__.aggregate(\"a\")).cap(\"a\").unfold().dedup()", "anonymized": "g.V().local(__.aggregate(string0)).outE().inV().local(__.aggregate(string0)).cap(string0).unfold().dedup()", "dotnet": "g.V().Local(__.Aggregate(\"a\")).OutE().InV().Local(__.Aggregate(\"a\")).Cap(\"a\").Unfold().Dedup()", + "dotnet_parameterize": "g.V().Local(__.Aggregate(\"a\")).OutE().InV().Local(__.Aggregate(\"a\")).Cap(\"a\").Unfold().Dedup()", "go": "g.V().Local(gremlingo.T__.Aggregate(\"a\")).OutE().InV().Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\").Unfold().Dedup()", "groovy": "g.V().local(__.aggregate(\"a\")).outE().inV().local(__.aggregate(\"a\")).cap(\"a\").unfold().dedup()", "java": "g.V().local(__.aggregate(\"a\")).outE().inV().local(__.aggregate(\"a\")).cap(\"a\").unfold().dedup()", @@ -41563,6 +44212,7 @@ "canonical": "g.V().hasLabel(\"person\").local(__.aggregate(\"a\")).out(\"created\").local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.V().hasLabel(string0).local(__.aggregate(string1)).out(string2).local(__.aggregate(string1)).cap(string1)", "dotnet": "g.V().HasLabel(\"person\").Local(__.Aggregate(\"a\")).Out(\"created\").Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Local(__.Aggregate(\"a\")).Out(\"created\").Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.V().HasLabel(\"person\").Local(gremlingo.T__.Aggregate(\"a\")).Out(\"created\").Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.V().hasLabel(\"person\").local(__.aggregate(\"a\")).out(\"created\").local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.V().hasLabel(\"person\").local(__.aggregate(\"a\")).out(\"created\").local(__.aggregate(\"a\")).cap(\"a\")", @@ -41580,6 +44230,7 @@ "canonical": "g.V().local(__.aggregate(\"a\")).repeat(__.out().local(__.aggregate(\"a\"))).times(2).cap(\"a\").unfold().values(\"name\").groupCount()", "anonymized": "g.V().local(__.aggregate(string0)).repeat(__.out().local(__.aggregate(string0))).times(number0).cap(string0).unfold().values(string1).groupCount()", "dotnet": "g.V().Local(__.Aggregate(\"a\")).Repeat(__.Out().Local(__.Aggregate(\"a\"))).Times(2).Cap(\"a\").Unfold().Values(\"name\").GroupCount()", + "dotnet_parameterize": "g.V().Local(__.Aggregate(\"a\")).Repeat(__.Out().Local(__.Aggregate(\"a\"))).Times(2).Cap(\"a\").Unfold().Values(\"name\").GroupCount()", "go": "g.V().Local(gremlingo.T__.Aggregate(\"a\")).Repeat(gremlingo.T__.Out().Local(gremlingo.T__.Aggregate(\"a\"))).Times(2).Cap(\"a\").Unfold().Values(\"name\").GroupCount()", "groovy": "g.V().local(__.aggregate(\"a\")).repeat(__.out().local(__.aggregate(\"a\"))).times(2).cap(\"a\").unfold().values(\"name\").groupCount()", "java": "g.V().local(__.aggregate(\"a\")).repeat(__.out().local(__.aggregate(\"a\"))).times(2).cap(\"a\").unfold().values(\"name\").groupCount()", @@ -41597,6 +44248,7 @@ "canonical": "g.V().has(\"name\", \"marko\").local(__.aggregate(\"a\")).out(\"knows\").local(__.aggregate(\"a\")).out(\"created\").local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.V().has(string0, string1).local(__.aggregate(string2)).out(string3).local(__.aggregate(string2)).out(string4).local(__.aggregate(string2)).cap(string2)", "dotnet": "g.V().Has(\"name\", \"marko\").Local(__.Aggregate(\"a\")).Out(\"knows\").Local(__.Aggregate(\"a\")).Out(\"created\").Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"marko\").Local(__.Aggregate(\"a\")).Out(\"knows\").Local(__.Aggregate(\"a\")).Out(\"created\").Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.V().Has(\"name\", \"marko\").Local(gremlingo.T__.Aggregate(\"a\")).Out(\"knows\").Local(gremlingo.T__.Aggregate(\"a\")).Out(\"created\").Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.V().has(\"name\", \"marko\").local(__.aggregate(\"a\")).out(\"knows\").local(__.aggregate(\"a\")).out(\"created\").local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.V().has(\"name\", \"marko\").local(__.aggregate(\"a\")).out(\"knows\").local(__.aggregate(\"a\")).out(\"created\").local(__.aggregate(\"a\")).cap(\"a\")", @@ -41614,6 +44266,7 @@ "canonical": "g.V().hasLabel(\"software\").local(__.aggregate(\"a\")).in(\"created\").local(__.aggregate(\"a\")).out(\"knows\").local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.V().hasLabel(string0).local(__.aggregate(string1)).in(string2).local(__.aggregate(string1)).out(string3).local(__.aggregate(string1)).cap(string1)", "dotnet": "g.V().HasLabel(\"software\").Local(__.Aggregate(\"a\")).In(\"created\").Local(__.Aggregate(\"a\")).Out(\"knows\").Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.V().HasLabel(\"software\").Local(__.Aggregate(\"a\")).In(\"created\").Local(__.Aggregate(\"a\")).Out(\"knows\").Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.V().HasLabel(\"software\").Local(gremlingo.T__.Aggregate(\"a\")).In(\"created\").Local(gremlingo.T__.Aggregate(\"a\")).Out(\"knows\").Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.V().hasLabel(\"software\").local(__.aggregate(\"a\")).in(\"created\").local(__.aggregate(\"a\")).out(\"knows\").local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.V().hasLabel(\"software\").local(__.aggregate(\"a\")).in(\"created\").local(__.aggregate(\"a\")).out(\"knows\").local(__.aggregate(\"a\")).cap(\"a\")", @@ -41631,6 +44284,7 @@ "canonical": "g.V().local(__.aggregate(\"a\")).outE().has(\"weight\", P.gt(0.5)).inV().local(__.aggregate(\"a\")).cap(\"a\").unfold().path()", "anonymized": "g.V().local(__.aggregate(string0)).outE().has(string1, P.gt(number0)).inV().local(__.aggregate(string0)).cap(string0).unfold().path()", "dotnet": "g.V().Local(__.Aggregate(\"a\")).OutE().Has(\"weight\", P.Gt(0.5)).InV().Local(__.Aggregate(\"a\")).Cap(\"a\").Unfold().Path()", + "dotnet_parameterize": "g.V().Local(__.Aggregate(\"a\")).OutE().Has(\"weight\", P.Gt(0.5)).InV().Local(__.Aggregate(\"a\")).Cap(\"a\").Unfold().Path()", "go": "g.V().Local(gremlingo.T__.Aggregate(\"a\")).OutE().Has(\"weight\", gremlingo.P.Gt(0.5)).InV().Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\").Unfold().Path()", "groovy": "g.V().local(__.aggregate(\"a\")).outE().has(\"weight\", P.gt(0.5)).inV().local(__.aggregate(\"a\")).cap(\"a\").unfold().path()", "java": "g.V().local(__.aggregate(\"a\")).outE().has(\"weight\", P.gt(0.5)).inV().local(__.aggregate(\"a\")).cap(\"a\").unfold().path()", @@ -41648,6 +44302,7 @@ "canonical": "g.V().local(__.aggregate(\"a\")).bothE().sample(1).otherV().local(__.aggregate(\"a\")).cap(\"a\").unfold().groupCount().by(T.label)", "anonymized": "g.V().local(__.aggregate(string0)).bothE().sample(number0).otherV().local(__.aggregate(string0)).cap(string0).unfold().groupCount().by(T.label)", "dotnet": "g.V().Local(__.Aggregate(\"a\")).BothE().Sample(1).OtherV().Local(__.Aggregate(\"a\")).Cap(\"a\").Unfold().GroupCount().By(T.Label)", + "dotnet_parameterize": "g.V().Local(__.Aggregate(\"a\")).BothE().Sample(1).OtherV().Local(__.Aggregate(\"a\")).Cap(\"a\").Unfold().GroupCount().By(T.Label)", "go": "g.V().Local(gremlingo.T__.Aggregate(\"a\")).BothE().Sample(1).OtherV().Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\").Unfold().GroupCount().By(gremlingo.T.Label)", "groovy": "g.V().local(__.aggregate(\"a\")).bothE().sample(1).otherV().local(__.aggregate(\"a\")).cap(\"a\").unfold().groupCount().by(T.label)", "java": "g.V().local(__.aggregate(\"a\")).bothE().sample(1).otherV().local(__.aggregate(\"a\")).cap(\"a\").unfold().groupCount().by(T.label)", @@ -41665,6 +44320,7 @@ "canonical": "g.V().hasLabel(\"person\").local(__.aggregate(\"a\")).outE().inV().simplePath().local(__.aggregate(\"a\")).cap(\"a\").unfold().hasLabel(\"software\").count()", "anonymized": "g.V().hasLabel(string0).local(__.aggregate(string1)).outE().inV().simplePath().local(__.aggregate(string1)).cap(string1).unfold().hasLabel(string2).count()", "dotnet": "g.V().HasLabel(\"person\").Local(__.Aggregate(\"a\")).OutE().InV().SimplePath().Local(__.Aggregate(\"a\")).Cap(\"a\").Unfold().HasLabel(\"software\").Count()", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Local(__.Aggregate(\"a\")).OutE().InV().SimplePath().Local(__.Aggregate(\"a\")).Cap(\"a\").Unfold().HasLabel(\"software\").Count()", "go": "g.V().HasLabel(\"person\").Local(gremlingo.T__.Aggregate(\"a\")).OutE().InV().SimplePath().Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\").Unfold().HasLabel(\"software\").Count()", "groovy": "g.V().hasLabel(\"person\").local(__.aggregate(\"a\")).outE().inV().simplePath().local(__.aggregate(\"a\")).cap(\"a\").unfold().hasLabel(\"software\").count()", "java": "g.V().hasLabel(\"person\").local(__.aggregate(\"a\")).outE().inV().simplePath().local(__.aggregate(\"a\")).cap(\"a\").unfold().hasLabel(\"software\").count()", @@ -41682,6 +44338,7 @@ "canonical": "g.V().local(__.aggregate(\"a\")).union(__.out(), __.in()).local(__.aggregate(\"a\")).cap(\"a\").unfold().dedup().values(\"name\")", "anonymized": "g.V().local(__.aggregate(string0)).union(__.out(), __.in()).local(__.aggregate(string0)).cap(string0).unfold().dedup().values(string1)", "dotnet": "g.V().Local(__.Aggregate(\"a\")).Union(__.Out(), __.In()).Local(__.Aggregate(\"a\")).Cap(\"a\").Unfold().Dedup().Values(\"name\")", + "dotnet_parameterize": "g.V().Local(__.Aggregate(\"a\")).Union(__.Out(), __.In()).Local(__.Aggregate(\"a\")).Cap(\"a\").Unfold().Dedup().Values(\"name\")", "go": "g.V().Local(gremlingo.T__.Aggregate(\"a\")).Union(gremlingo.T__.Out(), gremlingo.T__.In()).Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\").Unfold().Dedup().Values(\"name\")", "groovy": "g.V().local(__.aggregate(\"a\")).union(__.out(), __.in()).local(__.aggregate(\"a\")).cap(\"a\").unfold().dedup().values(\"name\")", "java": "g.V().local(__.aggregate(\"a\")).union(__.out(), __.in()).local(__.aggregate(\"a\")).cap(\"a\").unfold().dedup().values(\"name\")", @@ -41699,6 +44356,7 @@ "canonical": "g.V().has(\"name\", \"josh\").local(__.aggregate(\"a\")).outE().has(\"weight\", P.lt(1.0)).inV().local(__.aggregate(\"a\")).outE().inV().local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.V().has(string0, string1).local(__.aggregate(string2)).outE().has(string3, P.lt(number0)).inV().local(__.aggregate(string2)).outE().inV().local(__.aggregate(string2)).cap(string2)", "dotnet": "g.V().Has(\"name\", \"josh\").Local(__.Aggregate(\"a\")).OutE().Has(\"weight\", P.Lt(1.0)).InV().Local(__.Aggregate(\"a\")).OutE().InV().Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.V().Has(\"name\", \"josh\").Local(__.Aggregate(\"a\")).OutE().Has(\"weight\", P.Lt(1.0)).InV().Local(__.Aggregate(\"a\")).OutE().InV().Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.V().Has(\"name\", \"josh\").Local(gremlingo.T__.Aggregate(\"a\")).OutE().Has(\"weight\", gremlingo.P.Lt(1.0)).InV().Local(gremlingo.T__.Aggregate(\"a\")).OutE().InV().Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.V().has(\"name\", \"josh\").local(__.aggregate(\"a\")).outE().has(\"weight\", P.lt(1.0)).inV().local(__.aggregate(\"a\")).outE().inV().local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.V().has(\"name\", \"josh\").local(__.aggregate(\"a\")).outE().has(\"weight\", P.lt(1.0)).inV().local(__.aggregate(\"a\")).outE().inV().local(__.aggregate(\"a\")).cap(\"a\")", @@ -41716,6 +44374,7 @@ "canonical": "g.V().hasLabel(\"person\").local(__.aggregate(\"a\")).outE().order().by(\"weight\").limit(1).inV().local(__.aggregate(\"a\")).cap(\"a\")", "anonymized": "g.V().hasLabel(string0).local(__.aggregate(string1)).outE().order().by(string2).limit(number0).inV().local(__.aggregate(string1)).cap(string1)", "dotnet": "g.V().HasLabel(\"person\").Local(__.Aggregate(\"a\")).OutE().Order().By(\"weight\").Limit(1).InV().Local(__.Aggregate(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").Local(__.Aggregate(\"a\")).OutE().Order().By(\"weight\").Limit(1).InV().Local(__.Aggregate(\"a\")).Cap(\"a\")", "go": "g.V().HasLabel(\"person\").Local(gremlingo.T__.Aggregate(\"a\")).OutE().Order().By(\"weight\").Limit(1).InV().Local(gremlingo.T__.Aggregate(\"a\")).Cap(\"a\")", "groovy": "g.V().hasLabel(\"person\").local(__.aggregate(\"a\")).outE().order().by(\"weight\").limit(1).inV().local(__.aggregate(\"a\")).cap(\"a\")", "java": "g.V().hasLabel(\"person\").local(__.aggregate(\"a\")).outE().order().by(\"weight\").limit(1).inV().local(__.aggregate(\"a\")).cap(\"a\")", @@ -41733,6 +44392,7 @@ "canonical": "g.V().repeat(__.aggregate(\"a\")).times(2).cap(\"a\").unfold()", "anonymized": "g.V().repeat(__.aggregate(string0)).times(number0).cap(string0).unfold()", "dotnet": "g.V().Repeat(__.Aggregate(\"a\")).Times(2).Cap(\"a\").Unfold()", + "dotnet_parameterize": "g.V().Repeat(__.Aggregate(\"a\")).Times(2).Cap(\"a\").Unfold()", "go": "g.V().Repeat(gremlingo.T__.Aggregate(\"a\")).Times(2).Cap(\"a\").Unfold()", "groovy": "g.V().repeat(__.aggregate(\"a\")).times(2).cap(\"a\").unfold()", "java": "g.V().repeat(__.aggregate(\"a\")).times(2).cap(\"a\").unfold()", @@ -41750,6 +44410,7 @@ "canonical": "g.V().aggregate(\"a\").cap(\"a\").unfold().both()", "anonymized": "g.V().aggregate(string0).cap(string0).unfold().both()", "dotnet": "g.V().Aggregate(\"a\").Cap(\"a\").Unfold().Both()", + "dotnet_parameterize": "g.V().Aggregate(\"a\").Cap(\"a\").Unfold().Both()", "go": "g.V().Aggregate(\"a\").Cap(\"a\").Unfold().Both()", "groovy": "g.V().aggregate(\"a\").cap(\"a\").unfold().both()", "java": "g.V().aggregate(\"a\").cap(\"a\").unfold().both()", @@ -41767,6 +44428,7 @@ "canonical": "g.V().aggregate(\"a\").cap(\"a\").unfold().barrier().both()", "anonymized": "g.V().aggregate(string0).cap(string0).unfold().barrier().both()", "dotnet": "g.V().Aggregate(\"a\").Cap(\"a\").Unfold().Barrier().Both()", + "dotnet_parameterize": "g.V().Aggregate(\"a\").Cap(\"a\").Unfold().Barrier().Both()", "go": "g.V().Aggregate(\"a\").Cap(\"a\").Unfold().Barrier().Both()", "groovy": "g.V().aggregate(\"a\").cap(\"a\").unfold().barrier().both()", "java": "g.V().aggregate(\"a\").cap(\"a\").unfold().barrier().both()", @@ -41784,6 +44446,7 @@ "canonical": "g.V().fail()", "anonymized": "g.V().fail()", "dotnet": "g.V().Fail()", + "dotnet_parameterize": "g.V().Fail()", "go": "g.V().Fail()", "groovy": "g.V().fail()", "java": "g.V().fail()", @@ -41801,6 +44464,7 @@ "canonical": "g.V().fail(\"msg\")", "anonymized": "g.V().fail(string0)", "dotnet": "g.V().Fail(\"msg\")", + "dotnet_parameterize": "g.V().Fail(\"msg\")", "go": "g.V().Fail(\"msg\")", "groovy": "g.V().fail(\"msg\")", "java": "g.V().fail(\"msg\")", @@ -41818,6 +44482,7 @@ "canonical": "g.V().union(__.out(), __.fail())", "anonymized": "g.V().union(__.out(), __.fail())", "dotnet": "g.V().Union(__.Out(), __.Fail())", + "dotnet_parameterize": "g.V().Union(__.Out(), __.Fail())", "go": "g.V().Union(gremlingo.T__.Out(), gremlingo.T__.Fail())", "groovy": "g.V().union(__.out(), __.fail())", "java": "g.V().union(__.out(), __.fail())", @@ -41835,6 +44500,7 @@ "canonical": "g.V().group().by(\"name\")", "anonymized": "g.V().group().by(string0)", "dotnet": "g.V().Group().By(\"name\")", + "dotnet_parameterize": "g.V().Group().By(\"name\")", "go": "g.V().Group().By(\"name\")", "groovy": "g.V().group().by(\"name\")", "java": "g.V().group().by(\"name\")", @@ -41852,6 +44518,7 @@ "canonical": "g.V().group().by(\"age\")", "anonymized": "g.V().group().by(string0)", "dotnet": "g.V().Group().By(\"age\")", + "dotnet_parameterize": "g.V().Group().By(\"age\")", "go": "g.V().Group().By(\"age\")", "groovy": "g.V().group().by(\"age\")", "java": "g.V().group().by(\"age\")", @@ -41869,6 +44536,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().group().by(\"age\")", "anonymized": "g.withStrategies(ProductiveByStrategy).V().group().by(string0)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().Group().By(\"age\")", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().Group().By(\"age\")", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().Group().By(\"age\")", "groovy": "g.withStrategies(ProductiveByStrategy).V().group().by(\"age\")", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().group().by(\"age\")", @@ -41886,6 +44554,7 @@ "canonical": "g.V().group().by(\"name\").by(\"age\")", "anonymized": "g.V().group().by(string0).by(string1)", "dotnet": "g.V().Group().By(\"name\").By(\"age\")", + "dotnet_parameterize": "g.V().Group().By(\"name\").By(\"age\")", "go": "g.V().Group().By(\"name\").By(\"age\")", "groovy": "g.V().group().by(\"name\").by(\"age\")", "java": "g.V().group().by(\"name\").by(\"age\")", @@ -41903,6 +44572,7 @@ "canonical": "g.V().group().by(\"name\").by()", "anonymized": "g.V().group().by(string0).by()", "dotnet": "g.V().Group().By(\"name\").By()", + "dotnet_parameterize": "g.V().Group().By(\"name\").By()", "go": "g.V().Group().By(\"name\").By()", "groovy": "g.V().group().by(\"name\").by()", "java": "g.V().group().by(\"name\").by()", @@ -41920,6 +44590,7 @@ "canonical": "g.V().has(\"lang\").group().by(\"lang\").by(__.count())", "anonymized": "g.V().has(string0).group().by(string0).by(__.count())", "dotnet": "g.V().Has(\"lang\").Group().By(\"lang\").By(__.Count())", + "dotnet_parameterize": "g.V().Has(\"lang\").Group().By(\"lang\").By(__.Count())", "go": "g.V().Has(\"lang\").Group().By(\"lang\").By(gremlingo.T__.Count())", "groovy": "g.V().has(\"lang\").group().by(\"lang\").by(__.count())", "java": "g.V().has(\"lang\").group().by(\"lang\").by(__.count())", @@ -41937,6 +44608,7 @@ "canonical": "g.V().order().by(\"name\").group().by(__.outE().count()).by(\"name\")", "anonymized": "g.V().order().by(string0).group().by(__.outE().count()).by(string0)", "dotnet": "g.V().Order().By(\"name\").Group().By(__.OutE().Count()).By(\"name\")", + "dotnet_parameterize": "g.V().Order().By(\"name\").Group().By(__.OutE().Count()).By(\"name\")", "go": "g.V().Order().By(\"name\").Group().By(gremlingo.T__.OutE().Count()).By(\"name\")", "groovy": "g.V().order().by(\"name\").group().by(__.outE().count()).by(\"name\")", "java": "g.V().order().by(\"name\").group().by(__.outE().count()).by(\"name\")", @@ -41954,6 +44626,7 @@ "canonical": "g.V().repeat(__.both(\"followedBy\")).times(2).group().by(\"songType\").by(__.count())", "anonymized": "g.V().repeat(__.both(string0)).times(number0).group().by(string1).by(__.count())", "dotnet": "g.V().Repeat(__.Both(\"followedBy\")).Times(2).Group().By(\"songType\").By(__.Count())", + "dotnet_parameterize": "g.V().Repeat(__.Both(\"followedBy\")).Times(2).Group().By(\"songType\").By(__.Count())", "go": "g.V().Repeat(gremlingo.T__.Both(\"followedBy\")).Times(2).Group().By(\"songType\").By(gremlingo.T__.Count())", "groovy": "g.V().repeat(__.both(\"followedBy\")).times(2).group().by(\"songType\").by(__.count())", "java": "g.V().repeat(__.both(\"followedBy\")).times(2).group().by(\"songType\").by(__.count())", @@ -41971,6 +44644,7 @@ "canonical": "g.V().group().by(__.values(\"name\").substring(0, 1)).by(__.constant(1))", "anonymized": "g.V().group().by(__.values(string0).substring(number0, number1)).by(__.constant(number1))", "dotnet": "g.V().Group().By(__.Values(\"name\").Substring(0, 1)).By(__.Constant(1))", + "dotnet_parameterize": "g.V().Group().By(__.Values(\"name\").Substring(0, 1)).By(__.Constant(1))", "go": "g.V().Group().By(gremlingo.T__.Values(\"name\").Substring(0, 1)).By(gremlingo.T__.Constant(1))", "groovy": "g.V().group().by(__.values(\"name\").substring(0, 1)).by(__.constant(1))", "java": "g.V().group().by(__.values(\"name\").substring(0, 1)).by(__.constant(1))", @@ -41988,6 +44662,7 @@ "canonical": "g.V().out().group().by(T.label).select(\"person\").unfold().out(\"created\").values(\"name\").limit(2)", "anonymized": "g.V().out().group().by(T.label).select(string0).unfold().out(string1).values(string2).limit(number0)", "dotnet": "g.V().Out().Group().By(T.Label).Select(\"person\").Unfold().Out(\"created\").Values(\"name\").Limit(2)", + "dotnet_parameterize": "g.V().Out().Group().By(T.Label).Select(\"person\").Unfold().Out(\"created\").Values(\"name\").Limit(2)", "go": "g.V().Out().Group().By(gremlingo.T.Label).Select(\"person\").Unfold().Out(\"created\").Values(\"name\").Limit(2)", "groovy": "g.V().out().group().by(T.label).select(\"person\").unfold().out(\"created\").values(\"name\").limit(2)", "java": "g.V().out().group().by(T.label).select(\"person\").unfold().out(\"created\").values(\"name\").limit(2)", @@ -42005,6 +44680,7 @@ "canonical": "g.V().hasLabel(\"song\").group().by(\"name\").by(__.properties().groupCount().by(T.label))", "anonymized": "g.V().hasLabel(string0).group().by(string1).by(__.properties().groupCount().by(T.label))", "dotnet": "g.V().HasLabel(\"song\").Group().By(\"name\").By(__.Properties().GroupCount().By(T.Label))", + "dotnet_parameterize": "g.V().HasLabel(\"song\").Group().By(\"name\").By(__.Properties().GroupCount().By(T.Label))", "go": "g.V().HasLabel(\"song\").Group().By(\"name\").By(gremlingo.T__.Properties().GroupCount().By(gremlingo.T.Label))", "groovy": "g.V().hasLabel(\"song\").group().by(\"name\").by(__.properties().groupCount().by(T.label))", "java": "g.V().hasLabel(\"song\").group().by(\"name\").by(__.properties().groupCount().by(T.label))", @@ -42022,6 +44698,7 @@ "canonical": "g.V().out(\"followedBy\").group().by(\"songType\").by(__.bothE().group().by(T.label).by(__.values(\"weight\").sum()))", "anonymized": "g.V().out(string0).group().by(string1).by(__.bothE().group().by(T.label).by(__.values(string2).sum()))", "dotnet": "g.V().Out(\"followedBy\").Group().By(\"songType\").By(__.BothE().Group().By(T.Label).By(__.Values(\"weight\").Sum()))", + "dotnet_parameterize": "g.V().Out(\"followedBy\").Group().By(\"songType\").By(__.BothE().Group().By(T.Label).By(__.Values(\"weight\").Sum()))", "go": "g.V().Out(\"followedBy\").Group().By(\"songType\").By(gremlingo.T__.BothE().Group().By(gremlingo.T.Label).By(gremlingo.T__.Values(\"weight\").Sum()))", "groovy": "g.V().out(\"followedBy\").group().by(\"songType\").by(__.bothE().group().by(T.label).by(__.values(\"weight\").sum()))", "java": "g.V().out(\"followedBy\").group().by(\"songType\").by(__.bothE().group().by(T.label).by(__.values(\"weight\").sum()))", @@ -42039,6 +44716,7 @@ "canonical": "g.V().group().by(T.label).by(__.bothE().group(\"a\").by(T.label).by(__.values(\"weight\").sum()).values(\"weight\").sum())", "anonymized": "g.V().group().by(T.label).by(__.bothE().group(string0).by(T.label).by(__.values(string1).sum()).values(string1).sum())", "dotnet": "g.V().Group().By(T.Label).By(__.BothE().Group(\"a\").By(T.Label).By(__.Values(\"weight\").Sum()).Values(\"weight\").Sum())", + "dotnet_parameterize": "g.V().Group().By(T.Label).By(__.BothE().Group(\"a\").By(T.Label).By(__.Values(\"weight\").Sum()).Values(\"weight\").Sum())", "go": "g.V().Group().By(gremlingo.T.Label).By(gremlingo.T__.BothE().Group(\"a\").By(gremlingo.T.Label).By(gremlingo.T__.Values(\"weight\").Sum()).Values(\"weight\").Sum())", "groovy": "g.V().group().by(T.label).by(__.bothE().group(\"a\").by(T.label).by(__.values(\"weight\").sum()).values(\"weight\").sum())", "java": "g.V().group().by(T.label).by(__.bothE().group(\"a\").by(T.label).by(__.values(\"weight\").sum()).values(\"weight\").sum())", @@ -42056,6 +44734,7 @@ "canonical": "g.withSideEffect(\"a\", [marko:[\"666\"], noone:[\"blah\"]]).V().group(\"a\").by(\"name\").by(__.outE().label().fold()).cap(\"a\").unfold().group().by(Column.keys).by(__.select(Column.values).order(Scope.local).by(Order.asc))", "anonymized": "g.withSideEffect(string0, map0).V().group(string0).by(string1).by(__.outE().label().fold()).cap(string0).unfold().group().by(Column.keys).by(__.select(Column.values).order(Scope.local).by(Order.asc))", "dotnet": "g.WithSideEffect(\"a\", new Dictionary {{ \"marko\", new List { \"666\" } }, { \"noone\", new List { \"blah\" } }}).V().Group(\"a\").By(\"name\").By(__.OutE().Label().Fold()).Cap(\"a\").Unfold().Group().By(Column.Keys).By(__.Select(Column.Values).Order(Scope.Local).By(Order.Asc))", + "dotnet_parameterize": "g.WithSideEffect(\"a\", new Dictionary {{ \"marko\", new List { \"666\" } }, { \"noone\", new List { \"blah\" } }}).V().Group(\"a\").By(\"name\").By(__.OutE().Label().Fold()).Cap(\"a\").Unfold().Group().By(Column.Keys).By(__.Select(Column.Values).Order(Scope.Local).By(Order.Asc))", "go": "g.WithSideEffect(\"a\", map[interface{}]interface{}{\"marko\": []interface{}{\"666\"}, \"noone\": []interface{}{\"blah\"} }).V().Group(\"a\").By(\"name\").By(gremlingo.T__.OutE().Label().Fold()).Cap(\"a\").Unfold().Group().By(gremlingo.Column.Keys).By(gremlingo.T__.Select(gremlingo.Column.Values).Order(gremlingo.Scope.Local).By(gremlingo.Order.Asc))", "groovy": "g.withSideEffect(\"a\", [marko:[\"666\"], noone:[\"blah\"]]).V().group(\"a\").by(\"name\").by(__.outE().label().fold()).cap(\"a\").unfold().group().by(Column.keys).by(__.select(Column.values).order(Scope.local).by(Order.asc))", "java": "g.withSideEffect(\"a\", new LinkedHashMap() {{ put(\"marko\", new ArrayList() {{ add(\"666\"); }}); put(\"noone\", new ArrayList() {{ add(\"blah\"); }}); }}).V().group(\"a\").by(\"name\").by(__.outE().label().fold()).cap(\"a\").unfold().group().by(Column.keys).by(__.select(Column.values).order(Scope.local).by(Order.asc))", @@ -42073,6 +44752,7 @@ "canonical": "g.V().hasLabel(\"person\").as(\"p\").out(\"created\").group().by(\"name\").by(__.select(\"p\").values(\"age\").sum())", "anonymized": "g.V().hasLabel(string0).as(string1).out(string2).group().by(string3).by(__.select(string1).values(string4).sum())", "dotnet": "g.V().HasLabel(\"person\").As(\"p\").Out(\"created\").Group().By(\"name\").By(__.Select(\"p\").Values(\"age\").Sum())", + "dotnet_parameterize": "g.V().HasLabel(\"person\").As(\"p\").Out(\"created\").Group().By(\"name\").By(__.Select(\"p\").Values(\"age\").Sum())", "go": "g.V().HasLabel(\"person\").As(\"p\").Out(\"created\").Group().By(\"name\").By(gremlingo.T__.Select(\"p\").Values(\"age\").Sum())", "groovy": "g.V().hasLabel(\"person\").as(\"p\").out(\"created\").group().by(\"name\").by(__.select(\"p\").values(\"age\").sum())", "java": "g.V().hasLabel(\"person\").as(\"p\").out(\"created\").group().by(\"name\").by(__.select(\"p\").values(\"age\").sum())", @@ -42090,6 +44770,7 @@ "canonical": "g.V().group().by(__.label()).by(__.label().count())", "anonymized": "g.V().group().by(__.label()).by(__.label().count())", "dotnet": "g.V().Group().By(__.Label()).By(__.Label().Count())", + "dotnet_parameterize": "g.V().Group().By(__.Label()).By(__.Label().Count())", "go": "g.V().Group().By(gremlingo.T__.Label()).By(gremlingo.T__.Label().Count())", "groovy": "g.V().group().by(__.label()).by(__.label().count())", "java": "g.V().group().by(__.label()).by(__.label().count())", @@ -42107,6 +44788,7 @@ "canonical": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().order().fold())", "anonymized": "g.V().has(string0, string1, P.within(string2, string3)).group().by().by(__.out().order().fold())", "dotnet": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group().By().By(__.Out().Order().Fold())", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group().By().By(__.Out().Order().Fold())", "go": "g.V().Has(\"person\", \"name\", gremlingo.P.Within(\"vadas\", \"peter\")).Group().By().By(gremlingo.T__.Out().Order().Fold())", "groovy": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().order().fold())", "java": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().order().fold())", @@ -42124,6 +44806,7 @@ "canonical": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().fold())", "anonymized": "g.V().has(string0, string1, P.within(string2, string3)).group().by().by(__.out().fold())", "dotnet": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group().By().By(__.Out().Fold())", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group().By().By(__.Out().Fold())", "go": "g.V().Has(\"person\", \"name\", gremlingo.P.Within(\"vadas\", \"peter\")).Group().By().By(gremlingo.T__.Out().Fold())", "groovy": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().fold())", "java": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().fold())", @@ -42141,6 +44824,7 @@ "canonical": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().order())", "anonymized": "g.V().has(string0, string1, P.within(string2, string3)).group().by().by(__.out().order())", "dotnet": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group().By().By(__.Out().Order())", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group().By().By(__.Out().Order())", "go": "g.V().Has(\"person\", \"name\", gremlingo.P.Within(\"vadas\", \"peter\")).Group().By().By(gremlingo.T__.Out().Order())", "groovy": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().order())", "java": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().order())", @@ -42158,6 +44842,7 @@ "canonical": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().order().count())", "anonymized": "g.V().has(string0, string1, P.within(string2, string3)).group().by().by(__.out().order().count())", "dotnet": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group().By().By(__.Out().Order().Count())", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group().By().By(__.Out().Order().Count())", "go": "g.V().Has(\"person\", \"name\", gremlingo.P.Within(\"vadas\", \"peter\")).Group().By().By(gremlingo.T__.Out().Order().Count())", "groovy": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().order().count())", "java": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().order().count())", @@ -42175,6 +44860,7 @@ "canonical": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().order().fold().count(Scope.local))", "anonymized": "g.V().has(string0, string1, P.within(string2, string3)).group().by().by(__.out().order().fold().count(Scope.local))", "dotnet": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group().By().By(__.Out().Order().Fold().Count(Scope.Local))", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group().By().By(__.Out().Order().Fold().Count(Scope.Local))", "go": "g.V().Has(\"person\", \"name\", gremlingo.P.Within(\"vadas\", \"peter\")).Group().By().By(gremlingo.T__.Out().Order().Fold().Count(gremlingo.Scope.Local))", "groovy": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().order().fold().count(Scope.local))", "java": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group().by().by(__.out().order().fold().count(Scope.local))", @@ -42192,6 +44878,7 @@ "canonical": "g.V().group().by().by(__.out().label().fold()).select(Column.values).unfold().order(Scope.local)", "anonymized": "g.V().group().by().by(__.out().label().fold()).select(Column.values).unfold().order(Scope.local)", "dotnet": "g.V().Group().By().By(__.Out().Label().Fold()).Select(Column.Values).Unfold().Order(Scope.Local)", + "dotnet_parameterize": "g.V().Group().By().By(__.Out().Label().Fold()).Select(Column.Values).Unfold().Order(Scope.Local)", "go": "g.V().Group().By().By(gremlingo.T__.Out().Label().Fold()).Select(gremlingo.Column.Values).Unfold().Order(gremlingo.Scope.Local)", "groovy": "g.V().group().by().by(__.out().label().fold()).select(Column.values).unfold().order(Scope.local)", "java": "g.V().group().by().by(__.out().label().fold()).select(Column.values).unfold().order(Scope.local)", @@ -42209,6 +44896,7 @@ "canonical": "g.V().group().by().by(__.out().label().dedup().fold()).select(Column.values).unfold().order(Scope.local)", "anonymized": "g.V().group().by().by(__.out().label().dedup().fold()).select(Column.values).unfold().order(Scope.local)", "dotnet": "g.V().Group().By().By(__.Out().Label().Dedup().Fold()).Select(Column.Values).Unfold().Order(Scope.Local)", + "dotnet_parameterize": "g.V().Group().By().By(__.Out().Label().Dedup().Fold()).Select(Column.Values).Unfold().Order(Scope.Local)", "go": "g.V().Group().By().By(gremlingo.T__.Out().Label().Dedup().Fold()).Select(gremlingo.Column.Values).Unfold().Order(gremlingo.Scope.Local)", "groovy": "g.V().group().by().by(__.out().label().dedup().fold()).select(Column.values).unfold().order(Scope.local)", "java": "g.V().group().by().by(__.out().label().dedup().fold()).select(Column.values).unfold().order(Scope.local)", @@ -42226,6 +44914,7 @@ "canonical": "g.V().group().by().by(__.out().label().limit(0).fold()).select(Column.values).unfold()", "anonymized": "g.V().group().by().by(__.out().label().limit(number0).fold()).select(Column.values).unfold()", "dotnet": "g.V().Group().By().By(__.Out().Label().Limit(0).Fold()).Select(Column.Values).Unfold()", + "dotnet_parameterize": "g.V().Group().By().By(__.Out().Label().Limit(0).Fold()).Select(Column.Values).Unfold()", "go": "g.V().Group().By().By(gremlingo.T__.Out().Label().Limit(0).Fold()).Select(gremlingo.Column.Values).Unfold()", "groovy": "g.V().group().by().by(__.out().label().limit(0).fold()).select(Column.values).unfold()", "java": "g.V().group().by().by(__.out().label().limit(0).fold()).select(Column.values).unfold()", @@ -42243,6 +44932,7 @@ "canonical": "g.V().group().by().by(__.out().label().limit(10).fold()).select(Column.values).unfold().order(Scope.local)", "anonymized": "g.V().group().by().by(__.out().label().limit(number0).fold()).select(Column.values).unfold().order(Scope.local)", "dotnet": "g.V().Group().By().By(__.Out().Label().Limit(10).Fold()).Select(Column.Values).Unfold().Order(Scope.Local)", + "dotnet_parameterize": "g.V().Group().By().By(__.Out().Label().Limit(10).Fold()).Select(Column.Values).Unfold().Order(Scope.Local)", "go": "g.V().Group().By().By(gremlingo.T__.Out().Label().Limit(10).Fold()).Select(gremlingo.Column.Values).Unfold().Order(gremlingo.Scope.Local)", "groovy": "g.V().group().by().by(__.out().label().limit(10).fold()).select(Column.values).unfold().order(Scope.local)", "java": "g.V().group().by().by(__.out().label().limit(10).fold()).select(Column.values).unfold().order(Scope.local)", @@ -42260,6 +44950,7 @@ "canonical": "g.V().group().by().by(__.out().label().tail(10).fold()).select(Column.values).unfold().order(Scope.local)", "anonymized": "g.V().group().by().by(__.out().label().tail(number0).fold()).select(Column.values).unfold().order(Scope.local)", "dotnet": "g.V().Group().By().By(__.Out().Label().Tail(10).Fold()).Select(Column.Values).Unfold().Order(Scope.Local)", + "dotnet_parameterize": "g.V().Group().By().By(__.Out().Label().Tail(10).Fold()).Select(Column.Values).Unfold().Order(Scope.Local)", "go": "g.V().Group().By().By(gremlingo.T__.Out().Label().Tail(10).Fold()).Select(gremlingo.Column.Values).Unfold().Order(gremlingo.Scope.Local)", "groovy": "g.V().group().by().by(__.out().label().tail(10).fold()).select(Column.values).unfold().order(Scope.local)", "java": "g.V().group().by().by(__.out().label().tail(10).fold()).select(Column.values).unfold().order(Scope.local)", @@ -42277,6 +44968,7 @@ "canonical": "g.V().group(\"a\").by(\"name\").by().select(\"a\").count(Scope.local)", "anonymized": "g.V().group(string0).by(string1).by().select(string0).count(Scope.local)", "dotnet": "g.V().Group(\"a\").By(\"name\").By().Select(\"a\").Count(Scope.Local)", + "dotnet_parameterize": "g.V().Group(\"a\").By(\"name\").By().Select(\"a\").Count(Scope.Local)", "go": "g.V().Group(\"a\").By(\"name\").By().Select(\"a\").Count(gremlingo.Scope.Local)", "groovy": "g.V().group(\"a\").by(\"name\").by().select(\"a\").count(Scope.local)", "java": "g.V().group(\"a\").by(\"name\").by().select(\"a\").count(Scope.local)", @@ -42294,6 +44986,7 @@ "canonical": "g.V().local(__.group(\"a\").by(\"name\").by().select(\"a\").count(Scope.local))", "anonymized": "g.V().local(__.group(string0).by(string1).by().select(string0).count(Scope.local))", "dotnet": "g.V().Local(__.Group(\"a\").By(\"name\").By().Select(\"a\").Count(Scope.Local))", + "dotnet_parameterize": "g.V().Local(__.Group(\"a\").By(\"name\").By().Select(\"a\").Count(Scope.Local))", "go": "g.V().Local(gremlingo.T__.Group(\"a\").By(\"name\").By().Select(\"a\").Count(gremlingo.Scope.Local))", "groovy": "g.V().local(__.group(\"a\").by(\"name\").by().select(\"a\").count(Scope.local))", "java": "g.V().local(__.group(\"a\").by(\"name\").by().select(\"a\").count(Scope.local))", @@ -42311,6 +45004,7 @@ "canonical": "g.V().group().by(__.values('name')).by(__.both().count())", "anonymized": "g.V().group().by(__.values(string0)).by(__.both().count())", "dotnet": "g.V().Group().By(__.Values(\"name\")).By(__.Both().Count())", + "dotnet_parameterize": "g.V().Group().By(__.Values(\"name\")).By(__.Both().Count())", "go": "g.V().Group().By(gremlingo.T__.Values(\"name\")).By(gremlingo.T__.Both().Count())", "groovy": "g.V().group().by(__.values('name')).by(__.both().count())", "java": "g.V().group().by(__.values(\"name\")).by(__.both().count())", @@ -42328,6 +45022,7 @@ "canonical": "g.V().out(\"created\").groupCount().by(\"name\")", "anonymized": "g.V().out(string0).groupCount().by(string1)", "dotnet": "g.V().Out(\"created\").GroupCount().By(\"name\")", + "dotnet_parameterize": "g.V().Out(\"created\").GroupCount().By(\"name\")", "go": "g.V().Out(\"created\").GroupCount().By(\"name\")", "groovy": "g.V().out(\"created\").groupCount().by(\"name\")", "java": "g.V().out(\"created\").groupCount().by(\"name\")", @@ -42345,6 +45040,7 @@ "canonical": "g.V().groupCount().by(\"age\")", "anonymized": "g.V().groupCount().by(string0)", "dotnet": "g.V().GroupCount().By(\"age\")", + "dotnet_parameterize": "g.V().GroupCount().By(\"age\")", "go": "g.V().GroupCount().By(\"age\")", "groovy": "g.V().groupCount().by(\"age\")", "java": "g.V().groupCount().by(\"age\")", @@ -42362,6 +45058,7 @@ "canonical": "g.withStrategies(ProductiveByStrategy).V().groupCount().by(\"age\")", "anonymized": "g.withStrategies(ProductiveByStrategy).V().groupCount().by(string0)", "dotnet": "g.WithStrategies(new ProductiveByStrategy()).V().GroupCount().By(\"age\")", + "dotnet_parameterize": "g.WithStrategies(new ProductiveByStrategy()).V().GroupCount().By(\"age\")", "go": "g.WithStrategies(gremlingo.ProductiveByStrategy()).V().GroupCount().By(\"age\")", "groovy": "g.withStrategies(ProductiveByStrategy).V().groupCount().by(\"age\")", "java": "g.withStrategies(ProductiveByStrategy.instance()).V().groupCount().by(\"age\")", @@ -42379,6 +45076,7 @@ "canonical": "g.V().out(\"created\").values(\"name\").groupCount()", "anonymized": "g.V().out(string0).values(string1).groupCount()", "dotnet": "g.V().Out(\"created\").Values(\"name\").GroupCount()", + "dotnet_parameterize": "g.V().Out(\"created\").Values(\"name\").GroupCount()", "go": "g.V().Out(\"created\").Values(\"name\").GroupCount()", "groovy": "g.V().out(\"created\").values(\"name\").groupCount()", "java": "g.V().out(\"created\").values(\"name\").groupCount()", @@ -42396,6 +45094,7 @@ "canonical": "g.V().out(\"created\").groupCount(\"a\").by(\"name\").cap(\"a\")", "anonymized": "g.V().out(string0).groupCount(string1).by(string2).cap(string1)", "dotnet": "g.V().Out(\"created\").GroupCount(\"a\").By(\"name\").Cap(\"a\")", + "dotnet_parameterize": "g.V().Out(\"created\").GroupCount(\"a\").By(\"name\").Cap(\"a\")", "go": "g.V().Out(\"created\").GroupCount(\"a\").By(\"name\").Cap(\"a\")", "groovy": "g.V().out(\"created\").groupCount(\"a\").by(\"name\").cap(\"a\")", "java": "g.V().out(\"created\").groupCount(\"a\").by(\"name\").cap(\"a\")", @@ -42413,6 +45112,7 @@ "canonical": "g.V().out(\"created\").values(\"name\").groupCount(\"a\").cap(\"a\")", "anonymized": "g.V().out(string0).values(string1).groupCount(string2).cap(string2)", "dotnet": "g.V().Out(\"created\").Values(\"name\").GroupCount(\"a\").Cap(\"a\")", + "dotnet_parameterize": "g.V().Out(\"created\").Values(\"name\").GroupCount(\"a\").Cap(\"a\")", "go": "g.V().Out(\"created\").Values(\"name\").GroupCount(\"a\").Cap(\"a\")", "groovy": "g.V().out(\"created\").values(\"name\").groupCount(\"a\").cap(\"a\")", "java": "g.V().out(\"created\").values(\"name\").groupCount(\"a\").cap(\"a\")", @@ -42430,6 +45130,7 @@ "canonical": "g.V().repeat(__.out().groupCount(\"a\").by(\"name\")).times(2).cap(\"a\")", "anonymized": "g.V().repeat(__.out().groupCount(string0).by(string1)).times(number0).cap(string0)", "dotnet": "g.V().Repeat(__.Out().GroupCount(\"a\").By(\"name\")).Times(2).Cap(\"a\")", + "dotnet_parameterize": "g.V().Repeat(__.Out().GroupCount(\"a\").By(\"name\")).Times(2).Cap(\"a\")", "go": "g.V().Repeat(gremlingo.T__.Out().GroupCount(\"a\").By(\"name\")).Times(2).Cap(\"a\")", "groovy": "g.V().repeat(__.out().groupCount(\"a\").by(\"name\")).times(2).cap(\"a\")", "java": "g.V().repeat(__.out().groupCount(\"a\").by(\"name\")).times(2).cap(\"a\")", @@ -42447,6 +45148,7 @@ "canonical": "g.V().both().groupCount(\"a\").by(T.label).as(\"b\").barrier().where(__.select(\"a\").select(\"software\").is(P.gt(2))).select(\"b\").values(\"name\")", "anonymized": "g.V().both().groupCount(string0).by(T.label).as(string1).barrier().where(__.select(string0).select(string2).is(P.gt(number0))).select(string1).values(string3)", "dotnet": "g.V().Both().GroupCount(\"a\").By(T.Label).As(\"b\").Barrier().Where(__.Select(\"a\").Select(\"software\").Is(P.Gt(2))).Select(\"b\").Values(\"name\")", + "dotnet_parameterize": "g.V().Both().GroupCount(\"a\").By(T.Label).As(\"b\").Barrier().Where(__.Select(\"a\").Select(\"software\").Is(P.Gt(2))).Select(\"b\").Values(\"name\")", "go": "g.V().Both().GroupCount(\"a\").By(gremlingo.T.Label).As(\"b\").Barrier().Where(gremlingo.T__.Select(\"a\").Select(\"software\").Is(gremlingo.P.Gt(2))).Select(\"b\").Values(\"name\")", "groovy": "g.V().both().groupCount(\"a\").by(T.label).as(\"b\").barrier().where(__.select(\"a\").select(\"software\").is(P.gt(2))).select(\"b\").values(\"name\")", "java": "g.V().both().groupCount(\"a\").by(T.label).as(\"b\").barrier().where(__.select(\"a\").select(\"software\").is(P.gt(2))).select(\"b\").values(\"name\")", @@ -42464,6 +45166,7 @@ "canonical": "g.V().union(__.out(\"knows\"), __.out(\"created\").in(\"created\")).groupCount().select(Column.values).unfold().sum()", "anonymized": "g.V().union(__.out(string0), __.out(string1).in(string1)).groupCount().select(Column.values).unfold().sum()", "dotnet": "g.V().Union(__.Out(\"knows\"), __.Out(\"created\").In(\"created\")).GroupCount().Select(Column.Values).Unfold().Sum()", + "dotnet_parameterize": "g.V().Union(__.Out(\"knows\"), __.Out(\"created\").In(\"created\")).GroupCount().Select(Column.Values).Unfold().Sum()", "go": "g.V().Union(gremlingo.T__.Out(\"knows\"), gremlingo.T__.Out(\"created\").In(\"created\")).GroupCount().Select(gremlingo.Column.Values).Unfold().Sum()", "groovy": "g.V().union(__.out(\"knows\"), __.out(\"created\").in(\"created\")).groupCount().select(Column.values).unfold().sum()", "java": "g.V().union(__.out(\"knows\"), __.out(\"created\").in(\"created\")).groupCount().select(Column.values).unfold().sum()", @@ -42481,6 +45184,7 @@ "canonical": "g.V().has(\"no\").groupCount()", "anonymized": "g.V().has(string0).groupCount()", "dotnet": "g.V().Has(\"no\").GroupCount()", + "dotnet_parameterize": "g.V().Has(\"no\").GroupCount()", "go": "g.V().Has(\"no\").GroupCount()", "groovy": "g.V().has(\"no\").groupCount()", "java": "g.V().has(\"no\").groupCount()", @@ -42498,6 +45202,7 @@ "canonical": "g.V().has(\"no\").groupCount(\"a\").cap(\"a\")", "anonymized": "g.V().has(string0).groupCount(string1).cap(string1)", "dotnet": "g.V().Has(\"no\").GroupCount(\"a\").Cap(\"a\")", + "dotnet_parameterize": "g.V().Has(\"no\").GroupCount(\"a\").Cap(\"a\")", "go": "g.V().Has(\"no\").GroupCount(\"a\").Cap(\"a\")", "groovy": "g.V().has(\"no\").groupCount(\"a\").cap(\"a\")", "java": "g.V().has(\"no\").groupCount(\"a\").cap(\"a\")", @@ -42515,6 +45220,7 @@ "canonical": "g.V().union(__.repeat(__.out()).times(2).groupCount(\"m\").by(\"lang\"), __.repeat(__.in()).times(2).groupCount(\"m\").by(\"name\")).cap(\"m\")", "anonymized": "g.V().union(__.repeat(__.out()).times(number0).groupCount(string0).by(string1), __.repeat(__.in()).times(number0).groupCount(string0).by(string2)).cap(string0)", "dotnet": "g.V().Union(__.Repeat(__.Out()).Times(2).GroupCount(\"m\").By(\"lang\"), __.Repeat(__.In()).Times(2).GroupCount(\"m\").By(\"name\")).Cap(\"m\")", + "dotnet_parameterize": "g.V().Union(__.Repeat(__.Out()).Times(2).GroupCount(\"m\").By(\"lang\"), __.Repeat(__.In()).Times(2).GroupCount(\"m\").By(\"name\")).Cap(\"m\")", "go": "g.V().Union(gremlingo.T__.Repeat(gremlingo.T__.Out()).Times(2).GroupCount(\"m\").By(\"lang\"), gremlingo.T__.Repeat(gremlingo.T__.In()).Times(2).GroupCount(\"m\").By(\"name\")).Cap(\"m\")", "groovy": "g.V().union(__.repeat(__.out()).times(2).groupCount(\"m\").by(\"lang\"), __.repeat(__.in()).times(2).groupCount(\"m\").by(\"name\")).cap(\"m\")", "java": "g.V().union(__.repeat(__.out()).times(2).groupCount(\"m\").by(\"lang\"), __.repeat(__.in()).times(2).groupCount(\"m\").by(\"name\")).cap(\"m\")", @@ -42532,6 +45238,7 @@ "canonical": "g.V().out(\"created\").groupCount(\"x\").cap(\"x\")", "anonymized": "g.V().out(string0).groupCount(string1).cap(string1)", "dotnet": "g.V().Out(\"created\").GroupCount(\"x\").Cap(\"x\")", + "dotnet_parameterize": "g.V().Out(\"created\").GroupCount(\"x\").Cap(\"x\")", "go": "g.V().Out(\"created\").GroupCount(\"x\").Cap(\"x\")", "groovy": "g.V().out(\"created\").groupCount(\"x\").cap(\"x\")", "java": "g.V().out(\"created\").groupCount(\"x\").cap(\"x\")", @@ -42549,6 +45256,7 @@ "canonical": "g.V().groupCount().by(__.bothE().count())", "anonymized": "g.V().groupCount().by(__.bothE().count())", "dotnet": "g.V().GroupCount().By(__.BothE().Count())", + "dotnet_parameterize": "g.V().GroupCount().By(__.BothE().Count())", "go": "g.V().GroupCount().By(gremlingo.T__.BothE().Count())", "groovy": "g.V().groupCount().by(__.bothE().count())", "java": "g.V().groupCount().by(__.bothE().count())", @@ -42566,6 +45274,7 @@ "canonical": "g.V().both().local(__.groupCount(\"a\")).out().cap(\"a\").select(Column.keys).unfold().both().local(__.groupCount(\"a\")).cap(\"a\")", "anonymized": "g.V().both().local(__.groupCount(string0)).out().cap(string0).select(Column.keys).unfold().both().local(__.groupCount(string0)).cap(string0)", "dotnet": "g.V().Both().Local(__.GroupCount(\"a\")).Out().Cap(\"a\").Select(Column.Keys).Unfold().Both().Local(__.GroupCount(\"a\")).Cap(\"a\")", + "dotnet_parameterize": "g.V().Both().Local(__.GroupCount(\"a\")).Out().Cap(\"a\").Select(Column.Keys).Unfold().Both().Local(__.GroupCount(\"a\")).Cap(\"a\")", "go": "g.V().Both().Local(gremlingo.T__.GroupCount(\"a\")).Out().Cap(\"a\").Select(gremlingo.Column.Keys).Unfold().Both().Local(gremlingo.T__.GroupCount(\"a\")).Cap(\"a\")", "groovy": "g.V().both().local(__.groupCount(\"a\")).out().cap(\"a\").select(Column.keys).unfold().both().local(__.groupCount(\"a\")).cap(\"a\")", "java": "g.V().both().local(__.groupCount(\"a\")).out().cap(\"a\").select(Column.keys).unfold().both().local(__.groupCount(\"a\")).cap(\"a\")", @@ -42583,6 +45292,7 @@ "canonical": "g.V().has(\"person\", \"name\", \"marko\").both(\"knows\").groupCount().by(__.values(\"name\").fold())", "anonymized": "g.V().has(string0, string1, string2).both(string3).groupCount().by(__.values(string1).fold())", "dotnet": "g.V().Has(\"person\", \"name\", \"marko\").Both(\"knows\").GroupCount().By(__.Values(\"name\").Fold())", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", \"marko\").Both(\"knows\").GroupCount().By(__.Values(\"name\").Fold())", "go": "g.V().Has(\"person\", \"name\", \"marko\").Both(\"knows\").GroupCount().By(gremlingo.T__.Values(\"name\").Fold())", "groovy": "g.V().has(\"person\", \"name\", \"marko\").both(\"knows\").groupCount().by(__.values(\"name\").fold())", "java": "g.V().has(\"person\", \"name\", \"marko\").both(\"knows\").groupCount().by(__.values(\"name\").fold())", @@ -42600,6 +45310,7 @@ "canonical": "g.V().out(\"created\").groupCount().by(\"name\").by(\"age\")", "anonymized": "g.V().out(string0).groupCount().by(string1).by(string2)", "dotnet": "g.V().Out(\"created\").GroupCount().By(\"name\").By(\"age\")", + "dotnet_parameterize": "g.V().Out(\"created\").GroupCount().By(\"name\").By(\"age\")", "go": "g.V().Out(\"created\").GroupCount().By(\"name\").By(\"age\")", "groovy": "g.V().out(\"created\").groupCount().by(\"name\").by(\"age\")", "java": "g.V().out(\"created\").groupCount().by(\"name\").by(\"age\")", @@ -42617,6 +45328,7 @@ "canonical": "g.V().out(\"created\").groupCount(\"x\").by(\"name\").by(\"age\")", "anonymized": "g.V().out(string0).groupCount(string1).by(string2).by(string3)", "dotnet": "g.V().Out(\"created\").GroupCount(\"x\").By(\"name\").By(\"age\")", + "dotnet_parameterize": "g.V().Out(\"created\").GroupCount(\"x\").By(\"name\").By(\"age\")", "go": "g.V().Out(\"created\").GroupCount(\"x\").By(\"name\").By(\"age\")", "groovy": "g.V().out(\"created\").groupCount(\"x\").by(\"name\").by(\"age\")", "java": "g.V().out(\"created\").groupCount(\"x\").by(\"name\").by(\"age\")", @@ -42634,6 +45346,7 @@ "canonical": "g.V().groupCount(\"a\").select(\"a\").count(Scope.local)", "anonymized": "g.V().groupCount(string0).select(string0).count(Scope.local)", "dotnet": "g.V().GroupCount(\"a\").Select(\"a\").Count(Scope.Local)", + "dotnet_parameterize": "g.V().GroupCount(\"a\").Select(\"a\").Count(Scope.Local)", "go": "g.V().GroupCount(\"a\").Select(\"a\").Count(gremlingo.Scope.Local)", "groovy": "g.V().groupCount(\"a\").select(\"a\").count(Scope.local)", "java": "g.V().groupCount(\"a\").select(\"a\").count(Scope.local)", @@ -42651,6 +45364,7 @@ "canonical": "g.V().local(__.groupCount(\"a\").select(\"a\").count(Scope.local))", "anonymized": "g.V().local(__.groupCount(string0).select(string0).count(Scope.local))", "dotnet": "g.V().Local(__.GroupCount(\"a\").Select(\"a\").Count(Scope.Local))", + "dotnet_parameterize": "g.V().Local(__.GroupCount(\"a\").Select(\"a\").Count(Scope.Local))", "go": "g.V().Local(gremlingo.T__.GroupCount(\"a\").Select(\"a\").Count(gremlingo.Scope.Local))", "groovy": "g.V().local(__.groupCount(\"a\").select(\"a\").count(Scope.local))", "java": "g.V().local(__.groupCount(\"a\").select(\"a\").count(Scope.local))", @@ -42668,6 +45382,7 @@ "canonical": "g.V(vid1).out().values(\"name\").inject(\"daniel\").as(\"a\").map(__.length()).path()", "anonymized": "g.V(vid1).out().values(string0).inject(string1).as(string2).map(__.length()).path()", "dotnet": "g.V(vid1).Out().Values(\"name\").Inject(\"daniel\").As(\"a\").Map(__.Length()).Path()", + "dotnet_parameterize": "g.V(vid1).Out().Values(\"name\").Inject(\"daniel\").As(\"a\").Map(__.Length()).Path()", "go": "g.V(vid1).Out().Values(\"name\").Inject(\"daniel\").As(\"a\").Map(gremlingo.T__.Length()).Path()", "groovy": "g.V(vid1).out().values(\"name\").inject(\"daniel\").as(\"a\").map(__.length()).path()", "java": "g.V(vid1).out().values(\"name\").inject(\"daniel\").as(\"a\").map(__.length()).path()", @@ -42685,6 +45400,7 @@ "canonical": "g.inject(null, 1, 3, null)", "anonymized": "g.inject(object0, number0, number1, object0)", "dotnet": "g.Inject(null, 1, 3, null)", + "dotnet_parameterize": "g.Inject(null, 1, 3, null)", "go": "g.Inject(nil, 1, 3, nil)", "groovy": "g.inject(null, 1, 3, null)", "java": "g.inject(null, 1, 3, null)", @@ -42702,6 +45418,7 @@ "canonical": "g.inject(10, 20, null, 20, 10, 10).groupCount(\"x\").dedup().as(\"y\").project(\"a\", \"b\").by().by(__.select(\"x\").select(__.select(\"y\")))", "anonymized": "g.inject(number0, number1, object0, number1, number0, number0).groupCount(string0).dedup().as(string1).project(string2, string3).by().by(__.select(string0).select(__.select(string1)))", "dotnet": "g.Inject(10, 20, null, 20, 10, 10).GroupCount(\"x\").Dedup().As(\"y\").Project(\"a\", \"b\").By().By(__.Select(\"x\").Select(__.Select(\"y\")))", + "dotnet_parameterize": "g.Inject(10, 20, null, 20, 10, 10).GroupCount(\"x\").Dedup().As(\"y\").Project(\"a\", \"b\").By().By(__.Select(\"x\").Select(__.Select(\"y\")))", "go": "g.Inject(10, 20, nil, 20, 10, 10).GroupCount(\"x\").Dedup().As(\"y\").Project(\"a\", \"b\").By().By(gremlingo.T__.Select(\"x\").Select(gremlingo.T__.Select(\"y\")))", "groovy": "g.inject(10, 20, null, 20, 10, 10).groupCount(\"x\").dedup().as(\"y\").project(\"a\", \"b\").by().by(__.select(\"x\").select(__.select(\"y\")))", "java": "g.inject(10, 20, null, 20, 10, 10).groupCount(\"x\").dedup().as(\"y\").project(\"a\", \"b\").by().by(__.select(\"x\").select(__.select(\"y\")))", @@ -42719,6 +45436,7 @@ "canonical": "g.inject([name:\"marko\", age:null]).select(\"name\", \"age\")", "anonymized": "g.inject(map0).select(string0, string1)", "dotnet": "g.Inject(new Dictionary {{ \"name\", \"marko\" }, { \"age\", null }}).Select(\"name\", \"age\")", + "dotnet_parameterize": "g.Inject(new Dictionary {{ \"name\", \"marko\" }, { \"age\", null }}).Select(\"name\", \"age\")", "go": "g.Inject(map[interface{}]interface{}{\"name\": \"marko\", \"age\": nil }).Select(\"name\", \"age\")", "groovy": "g.inject([name:\"marko\", age:null]).select(\"name\", \"age\")", "java": "g.inject(new LinkedHashMap() {{ put(\"name\", \"marko\"); put(\"age\", null); }}).select(\"name\", \"age\")", @@ -42736,6 +45454,7 @@ "canonical": "g.inject(null, null)", "anonymized": "g.inject(object0, object0)", "dotnet": "g.Inject(null, null)", + "dotnet_parameterize": "g.Inject(null, null)", "go": "g.Inject(nil, nil)", "groovy": "g.inject(null, (Object) null)", "java": "g.inject(null, null)", @@ -42753,6 +45472,7 @@ "canonical": "g.inject(null)", "anonymized": "g.inject(object0)", "dotnet": "g.Inject(null)", + "dotnet_parameterize": "g.Inject(null)", "go": "g.Inject(nil)", "groovy": "g.inject(null)", "java": "g.inject(null)", @@ -42770,6 +45490,7 @@ "canonical": "g.inject()", "anonymized": "g.inject()", "dotnet": "g.Inject()", + "dotnet_parameterize": "g.Inject()", "go": "g.Inject()", "groovy": "g.inject()", "java": "g.inject()", @@ -42787,6 +45508,7 @@ "canonical": "g.V(xx1).values(\"age\").inject(null, null)", "anonymized": "g.V(xx1).values(string0).inject(object0, object0)", "dotnet": "g.V(xx1).Values(\"age\").Inject(null, null)", + "dotnet_parameterize": "g.V(xx1).Values(\"age\").Inject(null, null)", "go": "g.V(xx1).Values(\"age\").Inject(nil, nil)", "groovy": "g.V(xx1).values(\"age\").inject(null, (Object) null)", "java": "g.V(xx1).values(\"age\").inject(null, null)", @@ -42804,6 +45526,7 @@ "canonical": "g.V(xx1).values(\"age\").inject(null)", "anonymized": "g.V(xx1).values(string0).inject(object0)", "dotnet": "g.V(xx1).Values(\"age\").Inject(null)", + "dotnet_parameterize": "g.V(xx1).Values(\"age\").Inject(null)", "go": "g.V(xx1).Values(\"age\").Inject(nil)", "groovy": "g.V(xx1).values(\"age\").inject(null)", "java": "g.V(xx1).values(\"age\").inject(null)", @@ -42821,6 +45544,7 @@ "canonical": "g.V(xx1).values(\"age\").inject()", "anonymized": "g.V(xx1).values(string0).inject()", "dotnet": "g.V(xx1).Values(\"age\").Inject()", + "dotnet_parameterize": "g.V(xx1).Values(\"age\").Inject()", "go": "g.V(xx1).Values(\"age\").Inject()", "groovy": "g.V(xx1).values(\"age\").inject()", "java": "g.V(xx1).values(\"age\").inject()", @@ -42838,6 +45562,7 @@ "canonical": "g.inject(null, 1, 3, null).as(\"a\").select(\"a\")", "anonymized": "g.inject(object0, number0, number1, object0).as(string0).select(string0)", "dotnet": "g.Inject(null, 1, 3, null).As(\"a\").Select(\"a\")", + "dotnet_parameterize": "g.Inject(null, 1, 3, null).As(\"a\").Select(\"a\")", "go": "g.Inject(nil, 1, 3, nil).As(\"a\").Select(\"a\")", "groovy": "g.inject(null, 1, 3, null).as(\"a\").select(\"a\")", "java": "g.inject(null, 1, 3, null).as(\"a\").select(\"a\")", @@ -42855,6 +45580,7 @@ "canonical": "g.inject(1, 3).inject(100, 300)", "anonymized": "g.inject(number0, number1).inject(number2, number3)", "dotnet": "g.Inject(1, 3).Inject(100, 300)", + "dotnet_parameterize": "g.Inject(1, 3).Inject(100, 300)", "go": "g.Inject(1, 3).Inject(100, 300)", "groovy": "g.inject(1, 3).inject(100, 300)", "java": "g.inject(1, 3).inject(100, 300)", @@ -42872,6 +45598,7 @@ "canonical": "g.inject([1, 3, 100, 300])", "anonymized": "g.inject(list0)", "dotnet": "g.Inject(new List { 1, 3, 100, 300 })", + "dotnet_parameterize": "g.Inject(new List { 1, 3, 100, 300 })", "go": "g.Inject([]interface{}{1, 3, 100, 300})", "groovy": "g.inject([1, 3, 100, 300])", "java": "g.inject(new ArrayList() {{ add(1); add(3); add(100); add(300); }})", @@ -42889,6 +45616,7 @@ "canonical": "g.inject({1, 3, 100, 300})", "anonymized": "g.inject(set0)", "dotnet": "g.Inject(new HashSet { 1, 3, 100, 300 })", + "dotnet_parameterize": "g.Inject(new HashSet { 1, 3, 100, 300 })", "go": "g.Inject(gremlingo.NewSimpleSet(1, 3, 100, 300))", "groovy": "g.inject([1, 3, 100, 300] as Set)", "java": "g.inject(new HashSet() {{ add(1); add(3); add(100); add(300); }})", @@ -42906,6 +45634,7 @@ "canonical": "g.inject({1, 1})", "anonymized": "g.inject(set0)", "dotnet": "g.Inject(new HashSet { 1, 1 })", + "dotnet_parameterize": "g.Inject(new HashSet { 1, 1 })", "go": "g.Inject(gremlingo.NewSimpleSet(1, 1))", "groovy": "g.inject([1, 1] as Set)", "java": "g.inject(new HashSet() {{ add(1); add(1); }})", @@ -42923,6 +45652,7 @@ "canonical": "g.io(\"data/tinkerpop-modern.kryo\").read()", "anonymized": "g.io(string0).read()", "dotnet": "g.Io(\"data/tinkerpop-modern.kryo\").Read()", + "dotnet_parameterize": "g.Io(\"data/tinkerpop-modern.kryo\").Read()", "go": "g.Io(\"data/tinkerpop-modern.kryo\").Read()", "groovy": "g.io(\"data/tinkerpop-modern.kryo\").read()", "java": "g.io(\"data/tinkerpop-modern.kryo\").read()", @@ -42935,6 +45665,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -42947,6 +45678,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -42964,6 +45696,7 @@ "canonical": "g.io(\"data/tinkerpop-modern.kryo\").with(IO.reader, IO.gryo).read()", "anonymized": "g.io(string0).with(IO.reader, IO.gryo).read()", "dotnet": "g.Io(\"data/tinkerpop-modern.kryo\").With(IO.Reader, IO.Gryo).Read()", + "dotnet_parameterize": "g.Io(\"data/tinkerpop-modern.kryo\").With(IO.Reader, IO.Gryo).Read()", "go": "g.Io(\"data/tinkerpop-modern.kryo\").With(gremlingo.IO.Reader, gremlingo.IO.Gryo).Read()", "groovy": "g.io(\"data/tinkerpop-modern.kryo\").with(IO.reader, IO.gryo).read()", "java": "g.io(\"data/tinkerpop-modern.kryo\").with(IO.reader, IO.gryo).read()", @@ -42976,6 +45709,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -42988,6 +45722,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -43005,6 +45740,7 @@ "canonical": "g.io(\"data/tinkerpop-modern.json\").read()", "anonymized": "g.io(string0).read()", "dotnet": "g.Io(\"data/tinkerpop-modern.json\").Read()", + "dotnet_parameterize": "g.Io(\"data/tinkerpop-modern.json\").Read()", "go": "g.Io(\"data/tinkerpop-modern.json\").Read()", "groovy": "g.io(\"data/tinkerpop-modern.json\").read()", "java": "g.io(\"data/tinkerpop-modern.json\").read()", @@ -43017,6 +45753,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -43029,6 +45766,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -43046,6 +45784,7 @@ "canonical": "g.io(\"data/tinkerpop-modern.json\").with(IO.reader, IO.graphson).read()", "anonymized": "g.io(string0).with(IO.reader, IO.graphson).read()", "dotnet": "g.Io(\"data/tinkerpop-modern.json\").With(IO.Reader, IO.GraphSON).Read()", + "dotnet_parameterize": "g.Io(\"data/tinkerpop-modern.json\").With(IO.Reader, IO.GraphSON).Read()", "go": "g.Io(\"data/tinkerpop-modern.json\").With(gremlingo.IO.Reader, gremlingo.IO.Graphson).Read()", "groovy": "g.io(\"data/tinkerpop-modern.json\").with(IO.reader, IO.graphson).read()", "java": "g.io(\"data/tinkerpop-modern.json\").with(IO.reader, IO.graphson).read()", @@ -43058,6 +45797,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -43070,6 +45810,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -43087,6 +45828,7 @@ "canonical": "g.io(\"data/tinkerpop-modern.xml\").read()", "anonymized": "g.io(string0).read()", "dotnet": "g.Io(\"data/tinkerpop-modern.xml\").Read()", + "dotnet_parameterize": "g.Io(\"data/tinkerpop-modern.xml\").Read()", "go": "g.Io(\"data/tinkerpop-modern.xml\").Read()", "groovy": "g.io(\"data/tinkerpop-modern.xml\").read()", "java": "g.io(\"data/tinkerpop-modern.xml\").read()", @@ -43099,6 +45841,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -43111,6 +45854,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -43128,6 +45872,7 @@ "canonical": "g.io(\"data/tinkerpop-modern.xml\").with(IO.reader, IO.graphml).read()", "anonymized": "g.io(string0).with(IO.reader, IO.graphml).read()", "dotnet": "g.Io(\"data/tinkerpop-modern.xml\").With(IO.Reader, IO.GraphML).Read()", + "dotnet_parameterize": "g.Io(\"data/tinkerpop-modern.xml\").With(IO.Reader, IO.GraphML).Read()", "go": "g.Io(\"data/tinkerpop-modern.xml\").With(gremlingo.IO.Reader, gremlingo.IO.Graphml).Read()", "groovy": "g.io(\"data/tinkerpop-modern.xml\").with(IO.reader, IO.graphml).read()", "java": "g.io(\"data/tinkerpop-modern.xml\").with(IO.reader, IO.graphml).read()", @@ -43140,6 +45885,7 @@ "canonical": "g.V()", "anonymized": "g.V()", "dotnet": "g.V()", + "dotnet_parameterize": "g.V()", "go": "g.V()", "groovy": "g.V()", "java": "g.V()", @@ -43152,6 +45898,7 @@ "canonical": "g.E()", "anonymized": "g.E()", "dotnet": "g.E()", + "dotnet_parameterize": "g.E()", "go": "g.E()", "groovy": "g.E()", "java": "g.E()", @@ -43169,6 +45916,7 @@ "canonical": "g.withSack(127b).inject(1b).sack(Operator.sum).sack()", "anonymized": "g.withSack(byte0).inject(byte1).sack(Operator.sum).sack()", "dotnet": "g.WithSack((sbyte) 127).Inject((sbyte) 1).Sack(Operator.Sum).Sack()", + "dotnet_parameterize": "g.WithSack((sbyte) 127).Inject((sbyte) 1).Sack(Operator.Sum).Sack()", "go": "g.WithSack(int8(127)).Inject(int8(1)).Sack(gremlingo.Operator.Sum).Sack()", "groovy": "g.withSack((byte)127).inject((byte)1).sack(Operator.sum).sack()", "java": "g.withSack(new Byte(127)).inject(new Byte(1)).sack(Operator.sum).sack()", @@ -43186,6 +45934,7 @@ "canonical": "g.withSack(32767s).inject(1s).sack(Operator.sum).sack()", "anonymized": "g.withSack(short0).inject(short1).sack(Operator.sum).sack()", "dotnet": "g.WithSack((short) 32767).Inject((short) 1).Sack(Operator.Sum).Sack()", + "dotnet_parameterize": "g.WithSack((short) 32767).Inject((short) 1).Sack(Operator.Sum).Sack()", "go": "g.WithSack(int16(32767)).Inject(int16(1)).Sack(gremlingo.Operator.Sum).Sack()", "groovy": "g.withSack((short)32767).inject((short)1).sack(Operator.sum).sack()", "java": "g.withSack(new Short(32767)).inject(new Short(1)).sack(Operator.sum).sack()", @@ -43203,6 +45952,7 @@ "canonical": "g.withSack(2147483647i).inject(1i).sack(Operator.sum).sack()", "anonymized": "g.withSack(integer0).inject(integer1).sack(Operator.sum).sack()", "dotnet": "g.WithSack(2147483647).Inject(1).Sack(Operator.Sum).Sack()", + "dotnet_parameterize": "g.WithSack(2147483647).Inject(1).Sack(Operator.Sum).Sack()", "go": "g.WithSack(int32(2147483647)).Inject(int32(1)).Sack(gremlingo.Operator.Sum).Sack()", "groovy": "g.withSack(2147483647i).inject(1i).sack(Operator.sum).sack()", "java": "g.withSack(2147483647).inject(1).sack(Operator.sum).sack()", @@ -43220,6 +45970,7 @@ "canonical": "g.withSack(1.7976931348623157e+308d).inject(1.7976931348623157e+308d).sack(Operator.sum).sack()", "anonymized": "g.withSack(double0).inject(double0).sack(Operator.sum).sack()", "dotnet": "g.WithSack(1.7976931348623157e+308d).Inject(1.7976931348623157e+308d).Sack(Operator.Sum).Sack()", + "dotnet_parameterize": "g.WithSack(1.7976931348623157e+308d).Inject(1.7976931348623157e+308d).Sack(Operator.Sum).Sack()", "go": "g.WithSack(1.7976931348623157e+308).Inject(1.7976931348623157e+308).Sack(gremlingo.Operator.Sum).Sack()", "groovy": "g.withSack(1.7976931348623157e+308d).inject(1.7976931348623157e+308d).sack(Operator.sum).sack()", "java": "g.withSack(1.7976931348623157e+308d).inject(1.7976931348623157e+308d).sack(Operator.sum).sack()", @@ -43237,6 +45988,7 @@ "canonical": "g.withSack(-128b).inject(1b).sack(Operator.minus).sack()", "anonymized": "g.withSack(byte0).inject(byte1).sack(Operator.minus).sack()", "dotnet": "g.WithSack((sbyte) -128).Inject((sbyte) 1).Sack(Operator.Minus).Sack()", + "dotnet_parameterize": "g.WithSack((sbyte) -128).Inject((sbyte) 1).Sack(Operator.Minus).Sack()", "go": "g.WithSack(int8(-128)).Inject(int8(1)).Sack(gremlingo.Operator.Minus).Sack()", "groovy": "g.withSack((byte)-128).inject((byte)1).sack(Operator.minus).sack()", "java": "g.withSack(new Byte(-128)).inject(new Byte(1)).sack(Operator.minus).sack()", @@ -43254,6 +46006,7 @@ "canonical": "g.withSack(-32768s).inject(1s).sack(Operator.minus).sack()", "anonymized": "g.withSack(short0).inject(short1).sack(Operator.minus).sack()", "dotnet": "g.WithSack((short) -32768).Inject((short) 1).Sack(Operator.Minus).Sack()", + "dotnet_parameterize": "g.WithSack((short) -32768).Inject((short) 1).Sack(Operator.Minus).Sack()", "go": "g.WithSack(int16(-32768)).Inject(int16(1)).Sack(gremlingo.Operator.Minus).Sack()", "groovy": "g.withSack((short)-32768).inject((short)1).sack(Operator.minus).sack()", "java": "g.withSack(new Short(-32768)).inject(new Short(1)).sack(Operator.minus).sack()", @@ -43271,6 +46024,7 @@ "canonical": "g.withSack(-2147483648i).inject(1i).sack(Operator.minus).sack()", "anonymized": "g.withSack(integer0).inject(integer1).sack(Operator.minus).sack()", "dotnet": "g.WithSack(-2147483648).Inject(1).Sack(Operator.Minus).Sack()", + "dotnet_parameterize": "g.WithSack(-2147483648).Inject(1).Sack(Operator.Minus).Sack()", "go": "g.WithSack(int32(-2147483648)).Inject(int32(1)).Sack(gremlingo.Operator.Minus).Sack()", "groovy": "g.withSack(-2147483648i).inject(1i).sack(Operator.minus).sack()", "java": "g.withSack(-2147483648).inject(1).sack(Operator.minus).sack()", @@ -43288,6 +46042,7 @@ "canonical": "g.withSack(-1.7976931348623157e+308d).inject(1.7976931348623157e+308d).sack(Operator.minus).sack()", "anonymized": "g.withSack(double0).inject(double1).sack(Operator.minus).sack()", "dotnet": "g.WithSack(-1.7976931348623157e+308d).Inject(1.7976931348623157e+308d).Sack(Operator.Minus).Sack()", + "dotnet_parameterize": "g.WithSack(-1.7976931348623157e+308d).Inject(1.7976931348623157e+308d).Sack(Operator.Minus).Sack()", "go": "g.WithSack(-1.7976931348623157e+308).Inject(1.7976931348623157e+308).Sack(gremlingo.Operator.Minus).Sack()", "groovy": "g.withSack(-1.7976931348623157e+308d).inject(1.7976931348623157e+308d).sack(Operator.minus).sack()", "java": "g.withSack(-1.7976931348623157e+308d).inject(1.7976931348623157e+308d).sack(Operator.minus).sack()", @@ -43305,6 +46060,7 @@ "canonical": "g.withSack(127b).inject(2b).sack(Operator.mult).sack()", "anonymized": "g.withSack(byte0).inject(byte1).sack(Operator.mult).sack()", "dotnet": "g.WithSack((sbyte) 127).Inject((sbyte) 2).Sack(Operator.Mult).Sack()", + "dotnet_parameterize": "g.WithSack((sbyte) 127).Inject((sbyte) 2).Sack(Operator.Mult).Sack()", "go": "g.WithSack(int8(127)).Inject(int8(2)).Sack(gremlingo.Operator.Mult).Sack()", "groovy": "g.withSack((byte)127).inject((byte)2).sack(Operator.mult).sack()", "java": "g.withSack(new Byte(127)).inject(new Byte(2)).sack(Operator.mult).sack()", @@ -43322,6 +46078,7 @@ "canonical": "g.withSack(32767s).inject(2s).sack(Operator.mult).sack()", "anonymized": "g.withSack(short0).inject(short1).sack(Operator.mult).sack()", "dotnet": "g.WithSack((short) 32767).Inject((short) 2).Sack(Operator.Mult).Sack()", + "dotnet_parameterize": "g.WithSack((short) 32767).Inject((short) 2).Sack(Operator.Mult).Sack()", "go": "g.WithSack(int16(32767)).Inject(int16(2)).Sack(gremlingo.Operator.Mult).Sack()", "groovy": "g.withSack((short)32767).inject((short)2).sack(Operator.mult).sack()", "java": "g.withSack(new Short(32767)).inject(new Short(2)).sack(Operator.mult).sack()", @@ -43339,6 +46096,7 @@ "canonical": "g.withSack(2147483647i).inject(2i).sack(Operator.mult).sack()", "anonymized": "g.withSack(integer0).inject(integer1).sack(Operator.mult).sack()", "dotnet": "g.WithSack(2147483647).Inject(2).Sack(Operator.Mult).Sack()", + "dotnet_parameterize": "g.WithSack(2147483647).Inject(2).Sack(Operator.Mult).Sack()", "go": "g.WithSack(int32(2147483647)).Inject(int32(2)).Sack(gremlingo.Operator.Mult).Sack()", "groovy": "g.withSack(2147483647i).inject(2i).sack(Operator.mult).sack()", "java": "g.withSack(2147483647).inject(2).sack(Operator.mult).sack()", @@ -43356,6 +46114,7 @@ "canonical": "g.withSack(1.7976931348623157e+308d).inject(2d).sack(Operator.mult).sack()", "anonymized": "g.withSack(double0).inject(double1).sack(Operator.mult).sack()", "dotnet": "g.WithSack(1.7976931348623157e+308d).Inject(2d).Sack(Operator.Mult).Sack()", + "dotnet_parameterize": "g.WithSack(1.7976931348623157e+308d).Inject(2d).Sack(Operator.Mult).Sack()", "go": "g.WithSack(1.7976931348623157e+308).Inject(2).Sack(gremlingo.Operator.Mult).Sack()", "groovy": "g.withSack(1.7976931348623157e+308d).inject(2d).sack(Operator.mult).sack()", "java": "g.withSack(1.7976931348623157e+308d).inject(2d).sack(Operator.mult).sack()", @@ -43373,6 +46132,7 @@ "canonical": "g.withSack(127b).inject(0.5f).sack(Operator.div).sack()", "anonymized": "g.withSack(byte0).inject(float0).sack(Operator.div).sack()", "dotnet": "g.WithSack((sbyte) 127).Inject(0.5f).Sack(Operator.Div).Sack()", + "dotnet_parameterize": "g.WithSack((sbyte) 127).Inject(0.5f).Sack(Operator.Div).Sack()", "go": "g.WithSack(int8(127)).Inject(float32(0.5)).Sack(gremlingo.Operator.Div).Sack()", "groovy": "g.withSack((byte)127).inject(0.5f).sack(Operator.div).sack()", "java": "g.withSack(new Byte(127)).inject(0.5f).sack(Operator.div).sack()", @@ -43390,6 +46150,7 @@ "canonical": "g.withSack(32767s).inject(0.5f).sack(Operator.div).sack()", "anonymized": "g.withSack(short0).inject(float0).sack(Operator.div).sack()", "dotnet": "g.WithSack((short) 32767).Inject(0.5f).Sack(Operator.Div).Sack()", + "dotnet_parameterize": "g.WithSack((short) 32767).Inject(0.5f).Sack(Operator.Div).Sack()", "go": "g.WithSack(int16(32767)).Inject(float32(0.5)).Sack(gremlingo.Operator.Div).Sack()", "groovy": "g.withSack((short)32767).inject(0.5f).sack(Operator.div).sack()", "java": "g.withSack(new Short(32767)).inject(0.5f).sack(Operator.div).sack()", @@ -43407,6 +46168,7 @@ "canonical": "g.withSack(2147483647i).inject(0.5f).sack(Operator.div).sack()", "anonymized": "g.withSack(integer0).inject(float0).sack(Operator.div).sack()", "dotnet": "g.WithSack(2147483647).Inject(0.5f).Sack(Operator.Div).Sack()", + "dotnet_parameterize": "g.WithSack(2147483647).Inject(0.5f).Sack(Operator.Div).Sack()", "go": "g.WithSack(int32(2147483647)).Inject(float32(0.5)).Sack(gremlingo.Operator.Div).Sack()", "groovy": "g.withSack(2147483647i).inject(0.5f).sack(Operator.div).sack()", "java": "g.withSack(2147483647).inject(0.5f).sack(Operator.div).sack()", @@ -43424,6 +46186,7 @@ "canonical": "g.withSack(1.7976931348623157e+308d).inject(0.5d).sack(Operator.div).sack()", "anonymized": "g.withSack(double0).inject(double1).sack(Operator.div).sack()", "dotnet": "g.WithSack(1.7976931348623157e+308d).Inject(0.5d).Sack(Operator.Div).Sack()", + "dotnet_parameterize": "g.WithSack(1.7976931348623157e+308d).Inject(0.5d).Sack(Operator.Div).Sack()", "go": "g.WithSack(1.7976931348623157e+308).Inject(0.5).Sack(gremlingo.Operator.Div).Sack()", "groovy": "g.withSack(1.7976931348623157e+308d).inject(0.5d).sack(Operator.div).sack()", "java": "g.withSack(1.7976931348623157e+308d).inject(0.5d).sack(Operator.div).sack()", @@ -43441,6 +46204,7 @@ "canonical": "g.withSack(-128b).inject(-1b).sack(Operator.div).sack()", "anonymized": "g.withSack(byte0).inject(byte1).sack(Operator.div).sack()", "dotnet": "g.WithSack((sbyte) -128).Inject((sbyte) -1).Sack(Operator.Div).Sack()", + "dotnet_parameterize": "g.WithSack((sbyte) -128).Inject((sbyte) -1).Sack(Operator.Div).Sack()", "go": "g.WithSack(int8(-128)).Inject(int8(-1)).Sack(gremlingo.Operator.Div).Sack()", "groovy": "g.withSack((byte)-128).inject((byte)-1).sack(Operator.div).sack()", "java": "g.withSack(new Byte(-128)).inject(new Byte(-1)).sack(Operator.div).sack()", @@ -43458,6 +46222,7 @@ "canonical": "g.withSack(-32768s).inject(-1s).sack(Operator.div).sack()", "anonymized": "g.withSack(short0).inject(short1).sack(Operator.div).sack()", "dotnet": "g.WithSack((short) -32768).Inject((short) -1).Sack(Operator.Div).Sack()", + "dotnet_parameterize": "g.WithSack((short) -32768).Inject((short) -1).Sack(Operator.Div).Sack()", "go": "g.WithSack(int16(-32768)).Inject(int16(-1)).Sack(gremlingo.Operator.Div).Sack()", "groovy": "g.withSack((short)-32768).inject((short)-1).sack(Operator.div).sack()", "java": "g.withSack(new Short(-32768)).inject(new Short(-1)).sack(Operator.div).sack()", @@ -43475,6 +46240,7 @@ "canonical": "g.withSack(-2147483648i).inject(-1i).sack(Operator.div).sack()", "anonymized": "g.withSack(integer0).inject(integer1).sack(Operator.div).sack()", "dotnet": "g.WithSack(-2147483648).Inject(-1).Sack(Operator.Div).Sack()", + "dotnet_parameterize": "g.WithSack(-2147483648).Inject(-1).Sack(Operator.Div).Sack()", "go": "g.WithSack(int32(-2147483648)).Inject(int32(-1)).Sack(gremlingo.Operator.Div).Sack()", "groovy": "g.withSack(-2147483648i).inject(-1i).sack(Operator.div).sack()", "java": "g.withSack(-2147483648).inject(-1).sack(Operator.div).sack()", @@ -43492,6 +46258,7 @@ "canonical": "g.withSack(\"hello\").V().outE().sack(Operator.assign).by(T.label).inV().sack()", "anonymized": "g.withSack(string0).V().outE().sack(Operator.assign).by(T.label).inV().sack()", "dotnet": "g.WithSack(\"hello\").V().OutE().Sack(Operator.Assign).By(T.Label).InV().Sack()", + "dotnet_parameterize": "g.WithSack(\"hello\").V().OutE().Sack(Operator.Assign).By(T.Label).InV().Sack()", "go": "g.WithSack(\"hello\").V().OutE().Sack(gremlingo.Operator.Assign).By(gremlingo.T.Label).InV().Sack()", "groovy": "g.withSack(\"hello\").V().outE().sack(Operator.assign).by(T.label).inV().sack()", "java": "g.withSack(\"hello\").V().outE().sack(Operator.assign).by(T.label).inV().sack()", @@ -43509,6 +46276,7 @@ "canonical": "g.withSack(0.0d).V().outE().sack(Operator.sum).by(\"weight\").inV().sack().sum()", "anonymized": "g.withSack(double0).V().outE().sack(Operator.sum).by(string0).inV().sack().sum()", "dotnet": "g.WithSack(0.0d).V().OutE().Sack(Operator.Sum).By(\"weight\").InV().Sack().Sum()", + "dotnet_parameterize": "g.WithSack(0.0d).V().OutE().Sack(Operator.Sum).By(\"weight\").InV().Sack().Sum()", "go": "g.WithSack(0.0).V().OutE().Sack(gremlingo.Operator.Sum).By(\"weight\").InV().Sack().Sum()", "groovy": "g.withSack(0.0d).V().outE().sack(Operator.sum).by(\"weight\").inV().sack().sum()", "java": "g.withSack(0.0d).V().outE().sack(Operator.sum).by(\"weight\").inV().sack().sum()", @@ -43526,6 +46294,7 @@ "canonical": "g.withSack(0.0d).V().repeat(__.outE().sack(Operator.sum).by(\"weight\").inV()).times(2).sack()", "anonymized": "g.withSack(double0).V().repeat(__.outE().sack(Operator.sum).by(string0).inV()).times(number0).sack()", "dotnet": "g.WithSack(0.0d).V().Repeat(__.OutE().Sack(Operator.Sum).By(\"weight\").InV()).Times(2).Sack()", + "dotnet_parameterize": "g.WithSack(0.0d).V().Repeat(__.OutE().Sack(Operator.Sum).By(\"weight\").InV()).Times(2).Sack()", "go": "g.WithSack(0.0).V().Repeat(gremlingo.T__.OutE().Sack(gremlingo.Operator.Sum).By(\"weight\").InV()).Times(2).Sack()", "groovy": "g.withSack(0.0d).V().repeat(__.outE().sack(Operator.sum).by(\"weight\").inV()).times(2).sack()", "java": "g.withSack(0.0d).V().repeat(__.outE().sack(Operator.sum).by(\"weight\").inV()).times(2).sack()", @@ -43543,6 +46312,7 @@ "canonical": "g.withBulk(false).withSack(1.0d, Operator.sum).V(vid1).local(__.outE(\"knows\").barrier(Barrier.normSack).inV()).in(\"knows\").barrier().sack()", "anonymized": "g.withBulk(boolean0).withSack(double0, Operator.sum).V(vid1).local(__.outE(string0).barrier(Barrier.normSack).inV()).in(string0).barrier().sack()", "dotnet": "g.WithBulk(false).WithSack(1.0d, Operator.Sum).V(vid1).Local(__.OutE(\"knows\").Barrier(Barrier.NormSack).InV()).In(\"knows\").Barrier().Sack()", + "dotnet_parameterize": "g.WithBulk(false).WithSack(1.0d, Operator.Sum).V(vid1).Local(__.OutE(\"knows\").Barrier(Barrier.NormSack).InV()).In(\"knows\").Barrier().Sack()", "go": "g.WithBulk(false).WithSack(1.0, gremlingo.Operator.Sum).V(vid1).Local(gremlingo.T__.OutE(\"knows\").Barrier(gremlingo.Barrier.NormSack).InV()).In(\"knows\").Barrier().Sack()", "groovy": "g.withBulk(false).withSack(1.0d, Operator.sum).V(vid1).local(__.outE(\"knows\").barrier(Barrier.normSack).inV()).in(\"knows\").barrier().sack()", "java": "g.withBulk(false).withSack(1.0d, Operator.sum).V(vid1).local(__.outE(\"knows\").barrier(Barrier.normSack).inV()).in(\"knows\").barrier().sack()", @@ -43560,6 +46330,7 @@ "canonical": "g.withBulk(false).withSack(1, Operator.sum).V().out().barrier().sack()", "anonymized": "g.withBulk(boolean0).withSack(number0, Operator.sum).V().out().barrier().sack()", "dotnet": "g.WithBulk(false).WithSack(1, Operator.Sum).V().Out().Barrier().Sack()", + "dotnet_parameterize": "g.WithBulk(false).WithSack(1, Operator.Sum).V().Out().Barrier().Sack()", "go": "g.WithBulk(false).WithSack(1, gremlingo.Operator.Sum).V().Out().Barrier().Sack()", "groovy": "g.withBulk(false).withSack(1, Operator.sum).V().out().barrier().sack()", "java": "g.withBulk(false).withSack(1, Operator.sum).V().out().barrier().sack()", @@ -43577,6 +46348,7 @@ "canonical": "g.withSack(1.0d, Operator.sum).V(vid1).local(__.out(\"knows\").barrier(Barrier.normSack)).in(\"knows\").barrier().sack()", "anonymized": "g.withSack(double0, Operator.sum).V(vid1).local(__.out(string0).barrier(Barrier.normSack)).in(string0).barrier().sack()", "dotnet": "g.WithSack(1.0d, Operator.Sum).V(vid1).Local(__.Out(\"knows\").Barrier(Barrier.NormSack)).In(\"knows\").Barrier().Sack()", + "dotnet_parameterize": "g.WithSack(1.0d, Operator.Sum).V(vid1).Local(__.Out(\"knows\").Barrier(Barrier.NormSack)).In(\"knows\").Barrier().Sack()", "go": "g.WithSack(1.0, gremlingo.Operator.Sum).V(vid1).Local(gremlingo.T__.Out(\"knows\").Barrier(gremlingo.Barrier.NormSack)).In(\"knows\").Barrier().Sack()", "groovy": "g.withSack(1.0d, Operator.sum).V(vid1).local(__.out(\"knows\").barrier(Barrier.normSack)).in(\"knows\").barrier().sack()", "java": "g.withSack(1.0d, Operator.sum).V(vid1).local(__.out(\"knows\").barrier(Barrier.normSack)).in(\"knows\").barrier().sack()", @@ -43594,6 +46366,7 @@ "canonical": "g.V().sack(Operator.assign).by(\"age\").sack()", "anonymized": "g.V().sack(Operator.assign).by(string0).sack()", "dotnet": "g.V().Sack(Operator.Assign).By(\"age\").Sack()", + "dotnet_parameterize": "g.V().Sack(Operator.Assign).By(\"age\").Sack()", "go": "g.V().Sack(gremlingo.Operator.Assign).By(\"age\").Sack()", "groovy": "g.V().sack(Operator.assign).by(\"age\").sack()", "java": "g.V().sack(Operator.assign).by(\"age\").sack()", @@ -43611,6 +46384,7 @@ "canonical": "g.withSack(10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000n, Operator.assign).V().local(__.out(\"knows\").barrier(Barrier.normSack)).in(\"knows\").barrier().sack()", "anonymized": "g.withSack(biginteger0, Operator.assign).V().local(__.out(string0).barrier(Barrier.normSack)).in(string0).barrier().sack()", "dotnet": "g.WithSack(BigInteger.Parse(\"10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\"), Operator.Assign).V().Local(__.Out(\"knows\").Barrier(Barrier.NormSack)).In(\"knows\").Barrier().Sack()", + "dotnet_parameterize": "g.WithSack(BigInteger.Parse(\"10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\"), Operator.Assign).V().Local(__.Out(\"knows\").Barrier(Barrier.NormSack)).In(\"knows\").Barrier().Sack()", "go": "g.WithSack(gremlingo.ParseBigInt(\"10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\"), gremlingo.Operator.Assign).V().Local(gremlingo.T__.Out(\"knows\").Barrier(gremlingo.Barrier.NormSack)).In(\"knows\").Barrier().Sack()", "groovy": "g.withSack(10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000g, Operator.assign).V().local(__.out(\"knows\").barrier(Barrier.normSack)).in(\"knows\").barrier().sack()", "java": "g.withSack(new BigInteger(\"10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000\"), Operator.assign).V().local(__.out(\"knows\").barrier(Barrier.normSack)).in(\"knows\").barrier().sack()", @@ -43628,6 +46402,7 @@ "canonical": "g.withSack(2).V().sack(Operator.div).by(__.constant(4.0d)).sack()", "anonymized": "g.withSack(number0).V().sack(Operator.div).by(__.constant(double0)).sack()", "dotnet": "g.WithSack(2).V().Sack(Operator.Div).By(__.Constant(4.0d)).Sack()", + "dotnet_parameterize": "g.WithSack(2).V().Sack(Operator.Div).By(__.Constant(4.0d)).Sack()", "go": "g.WithSack(2).V().Sack(gremlingo.Operator.Div).By(gremlingo.T__.Constant(4.0)).Sack()", "groovy": "g.withSack(2).V().sack(Operator.div).by(__.constant(4.0d)).sack()", "java": "g.withSack(2).V().sack(Operator.div).by(__.constant(4.0d)).sack()", @@ -43645,6 +46420,7 @@ "canonical": "g.V().sack(Operator.assign).by(\"age\").by(\"name\").sack()", "anonymized": "g.V().sack(Operator.assign).by(string0).by(string1).sack()", "dotnet": "g.V().Sack(Operator.Assign).By(\"age\").By(\"name\").Sack()", + "dotnet_parameterize": "g.V().Sack(Operator.Assign).By(\"age\").By(\"name\").Sack()", "go": "g.V().Sack(gremlingo.Operator.Assign).By(\"age\").By(\"name\").Sack()", "groovy": "g.V().sack(Operator.assign).by(\"age\").by(\"name\").sack()", "java": "g.V().sack(Operator.assign).by(\"age\").by(\"name\").sack()", @@ -43662,6 +46438,7 @@ "canonical": "g.V().sideEffect(__.identity())", "anonymized": "g.V().sideEffect(__.identity())", "dotnet": "g.V().SideEffect(__.Identity())", + "dotnet_parameterize": "g.V().SideEffect(__.Identity())", "go": "g.V().SideEffect(gremlingo.T__.Identity())", "groovy": "g.V().sideEffect(__.identity())", "java": "g.V().sideEffect(__.identity())", @@ -43679,6 +46456,7 @@ "canonical": "g.V().sideEffect(__.identity().values(\"name\"))", "anonymized": "g.V().sideEffect(__.identity().values(string0))", "dotnet": "g.V().SideEffect(__.Identity().Values(\"name\"))", + "dotnet_parameterize": "g.V().SideEffect(__.Identity().Values(\"name\"))", "go": "g.V().SideEffect(gremlingo.T__.Identity().Values(\"name\"))", "groovy": "g.V().sideEffect(__.identity().values(\"name\"))", "java": "g.V().sideEffect(__.identity().values(\"name\"))", @@ -43696,6 +46474,7 @@ "canonical": "g.addV(\"person\").property(Cardinality.single, \"age\", 21)", "anonymized": "g.addV(string0).property(Cardinality.single, string1, number0)", "dotnet": "g.AddV((string) \"person\").Property(Cardinality.Single, \"age\", 21)", + "dotnet_parameterize": "g.AddV((string) \"person\").Property(Cardinality.Single, \"age\", 21)", "go": "g.AddV(\"person\").Property(gremlingo.Cardinality.Single, \"age\", 21)", "groovy": "g.addV(\"person\").property(Cardinality.single, \"age\", 21)", "java": "g.addV(\"person\").property(Cardinality.single, \"age\", 21)", @@ -43708,6 +46487,7 @@ "canonical": "g.V().sideEffect(__.property(Cardinality.single, \"age\", 22))", "anonymized": "g.V().sideEffect(__.property(Cardinality.single, string0, number0))", "dotnet": "g.V().SideEffect(__.Property(Cardinality.Single, \"age\", 22))", + "dotnet_parameterize": "g.V().SideEffect(__.Property(Cardinality.Single, \"age\", 22))", "go": "g.V().SideEffect(gremlingo.T__.Property(gremlingo.Cardinality.Single, \"age\", 22))", "groovy": "g.V().sideEffect(__.property(Cardinality.single, \"age\", 22))", "java": "g.V().sideEffect(__.property(Cardinality.single, \"age\", 22))", @@ -43720,6 +46500,7 @@ "canonical": "g.V().has(\"age\", 21)", "anonymized": "g.V().has(string0, number0)", "dotnet": "g.V().Has(\"age\", 21)", + "dotnet_parameterize": "g.V().Has(\"age\", 21)", "go": "g.V().Has(\"age\", 21)", "groovy": "g.V().has(\"age\", 21)", "java": "g.V().has(\"age\", 21)", @@ -43732,6 +46513,7 @@ "canonical": "g.V().has(\"age\", 22)", "anonymized": "g.V().has(string0, number0)", "dotnet": "g.V().Has(\"age\", 22)", + "dotnet_parameterize": "g.V().Has(\"age\", 22)", "go": "g.V().Has(\"age\", 22)", "groovy": "g.V().has(\"age\", 22)", "java": "g.V().has(\"age\", 22)", @@ -43749,6 +46531,7 @@ "canonical": "g.V().group().by(__.values(\"name\").sideEffect(__.constant(\"zyx\")).substring(0, 1)).by(__.constant(1).sideEffect(__.constant(\"xyz\")))", "anonymized": "g.V().group().by(__.values(string0).sideEffect(__.constant(string1)).substring(number0, number1)).by(__.constant(number1).sideEffect(__.constant(string2)))", "dotnet": "g.V().Group().By(__.Values(\"name\").SideEffect(__.Constant(\"zyx\")).Substring(0, 1)).By(__.Constant(1).SideEffect(__.Constant(\"xyz\")))", + "dotnet_parameterize": "g.V().Group().By(__.Values(\"name\").SideEffect(__.Constant(\"zyx\")).Substring(0, 1)).By(__.Constant(1).SideEffect(__.Constant(\"xyz\")))", "go": "g.V().Group().By(gremlingo.T__.Values(\"name\").SideEffect(gremlingo.T__.Constant(\"zyx\")).Substring(0, 1)).By(gremlingo.T__.Constant(1).SideEffect(gremlingo.T__.Constant(\"xyz\")))", "groovy": "g.V().group().by(__.values(\"name\").sideEffect(__.constant(\"zyx\")).substring(0, 1)).by(__.constant(1).sideEffect(__.constant(\"xyz\")))", "java": "g.V().group().by(__.values(\"name\").sideEffect(__.constant(\"zyx\")).substring(0, 1)).by(__.constant(1).sideEffect(__.constant(\"xyz\")))", @@ -43766,6 +46549,7 @@ "canonical": "g.withSideEffect(\"x\", {}).V().both().both().sideEffect(__.local(__.aggregate(\"x\").by(\"name\"))).cap(\"x\").unfold()", "anonymized": "g.withSideEffect(string0, set0).V().both().both().sideEffect(__.local(__.aggregate(string0).by(string1))).cap(string0).unfold()", "dotnet": "g.WithSideEffect(\"x\", new HashSet { }).V().Both().Both().SideEffect(__.Local(__.Aggregate(\"x\").By(\"name\"))).Cap(\"x\").Unfold()", + "dotnet_parameterize": "g.WithSideEffect(\"x\", new HashSet { }).V().Both().Both().SideEffect(__.Local(__.Aggregate(\"x\").By(\"name\"))).Cap(\"x\").Unfold()", "go": "g.WithSideEffect(\"x\", gremlingo.NewSimpleSet()).V().Both().Both().SideEffect(gremlingo.T__.Local(gremlingo.T__.Aggregate(\"x\").By(\"name\"))).Cap(\"x\").Unfold()", "groovy": "g.withSideEffect(\"x\", [] as Set).V().both().both().sideEffect(__.local(__.aggregate(\"x\").by(\"name\"))).cap(\"x\").unfold()", "java": "g.withSideEffect(\"x\", new HashSet() {{ }}).V().both().both().sideEffect(__.local(__.aggregate(\"x\").by(\"name\"))).cap(\"x\").unfold()", @@ -43783,6 +46567,7 @@ "canonical": "g.V().has(\"age\").groupCount(\"a\").by(\"name\").out().cap(\"a\")", "anonymized": "g.V().has(string0).groupCount(string1).by(string2).out().cap(string1)", "dotnet": "g.V().Has(\"age\").GroupCount(\"a\").By(\"name\").Out().Cap(\"a\")", + "dotnet_parameterize": "g.V().Has(\"age\").GroupCount(\"a\").By(\"name\").Out().Cap(\"a\")", "go": "g.V().Has(\"age\").GroupCount(\"a\").By(\"name\").Out().Cap(\"a\")", "groovy": "g.V().has(\"age\").groupCount(\"a\").by(\"name\").out().cap(\"a\")", "java": "g.V().has(\"age\").groupCount(\"a\").by(\"name\").out().cap(\"a\")", @@ -43800,6 +46585,7 @@ "canonical": "g.V().group(\"a\").by(\"age\").cap(\"a\")", "anonymized": "g.V().group(string0).by(string1).cap(string0)", "dotnet": "g.V().Group(\"a\").By(\"age\").Cap(\"a\")", + "dotnet_parameterize": "g.V().Group(\"a\").By(\"age\").Cap(\"a\")", "go": "g.V().Group(\"a\").By(\"age\").Cap(\"a\")", "groovy": "g.V().group(\"a\").by(\"age\").cap(\"a\")", "java": "g.V().group(\"a\").by(\"age\").cap(\"a\")", @@ -43817,6 +46603,7 @@ "canonical": "g.V().group(\"a\").by(\"name\").cap(\"a\")", "anonymized": "g.V().group(string0).by(string1).cap(string0)", "dotnet": "g.V().Group(\"a\").By(\"name\").Cap(\"a\")", + "dotnet_parameterize": "g.V().Group(\"a\").By(\"name\").Cap(\"a\")", "go": "g.V().Group(\"a\").By(\"name\").Cap(\"a\")", "groovy": "g.V().group(\"a\").by(\"name\").cap(\"a\")", "java": "g.V().group(\"a\").by(\"name\").cap(\"a\")", @@ -43834,6 +46621,7 @@ "canonical": "g.V().has(\"lang\").group(\"a\").by(\"lang\").by(\"name\").out().cap(\"a\")", "anonymized": "g.V().has(string0).group(string1).by(string0).by(string2).out().cap(string1)", "dotnet": "g.V().Has(\"lang\").Group(\"a\").By(\"lang\").By(\"name\").Out().Cap(\"a\")", + "dotnet_parameterize": "g.V().Has(\"lang\").Group(\"a\").By(\"lang\").By(\"name\").Out().Cap(\"a\")", "go": "g.V().Has(\"lang\").Group(\"a\").By(\"lang\").By(\"name\").Out().Cap(\"a\")", "groovy": "g.V().has(\"lang\").group(\"a\").by(\"lang\").by(\"name\").out().cap(\"a\")", "java": "g.V().has(\"lang\").group(\"a\").by(\"lang\").by(\"name\").out().cap(\"a\")", @@ -43851,6 +46639,7 @@ "canonical": "g.V().repeat(__.out().group(\"a\").by(\"name\").by(__.count())).times(2).cap(\"a\")", "anonymized": "g.V().repeat(__.out().group(string0).by(string1).by(__.count())).times(number0).cap(string0)", "dotnet": "g.V().Repeat(__.Out().Group(\"a\").By(\"name\").By(__.Count())).Times(2).Cap(\"a\")", + "dotnet_parameterize": "g.V().Repeat(__.Out().Group(\"a\").By(\"name\").By(__.Count())).Times(2).Cap(\"a\")", "go": "g.V().Repeat(gremlingo.T__.Out().Group(\"a\").By(\"name\").By(gremlingo.T__.Count())).Times(2).Cap(\"a\")", "groovy": "g.V().repeat(__.out().group(\"a\").by(\"name\").by(__.count())).times(2).cap(\"a\")", "java": "g.V().repeat(__.out().group(\"a\").by(\"name\").by(__.count())).times(2).cap(\"a\")", @@ -43868,6 +46657,7 @@ "canonical": "g.V().group(\"a\").by(T.label).by(__.outE().values(\"weight\").sum()).cap(\"a\")", "anonymized": "g.V().group(string0).by(T.label).by(__.outE().values(string1).sum()).cap(string0)", "dotnet": "g.V().Group(\"a\").By(T.Label).By(__.OutE().Values(\"weight\").Sum()).Cap(\"a\")", + "dotnet_parameterize": "g.V().Group(\"a\").By(T.Label).By(__.OutE().Values(\"weight\").Sum()).Cap(\"a\")", "go": "g.V().Group(\"a\").By(gremlingo.T.Label).By(gremlingo.T__.OutE().Values(\"weight\").Sum()).Cap(\"a\")", "groovy": "g.V().group(\"a\").by(T.label).by(__.outE().values(\"weight\").sum()).cap(\"a\")", "java": "g.V().group(\"a\").by(T.label).by(__.outE().values(\"weight\").sum()).cap(\"a\")", @@ -43885,6 +46675,7 @@ "canonical": "g.V().repeat(__.both(\"followedBy\")).times(2).group(\"a\").by(\"songType\").by(__.count()).cap(\"a\")", "anonymized": "g.V().repeat(__.both(string0)).times(number0).group(string1).by(string2).by(__.count()).cap(string1)", "dotnet": "g.V().Repeat(__.Both(\"followedBy\")).Times(2).Group(\"a\").By(\"songType\").By(__.Count()).Cap(\"a\")", + "dotnet_parameterize": "g.V().Repeat(__.Both(\"followedBy\")).Times(2).Group(\"a\").By(\"songType\").By(__.Count()).Cap(\"a\")", "go": "g.V().Repeat(gremlingo.T__.Both(\"followedBy\")).Times(2).Group(\"a\").By(\"songType\").By(gremlingo.T__.Count()).Cap(\"a\")", "groovy": "g.V().repeat(__.both(\"followedBy\")).times(2).group(\"a\").by(\"songType\").by(__.count()).cap(\"a\")", "java": "g.V().repeat(__.both(\"followedBy\")).times(2).group(\"a\").by(\"songType\").by(__.count()).cap(\"a\")", @@ -43902,6 +46693,7 @@ "canonical": "g.V().group(\"a\").by(__.values(\"name\").substring(0, 1)).by(__.constant(1)).cap(\"a\")", "anonymized": "g.V().group(string0).by(__.values(string1).substring(number0, number1)).by(__.constant(number1)).cap(string0)", "dotnet": "g.V().Group(\"a\").By(__.Values(\"name\").Substring(0, 1)).By(__.Constant(1)).Cap(\"a\")", + "dotnet_parameterize": "g.V().Group(\"a\").By(__.Values(\"name\").Substring(0, 1)).By(__.Constant(1)).Cap(\"a\")", "go": "g.V().Group(\"a\").By(gremlingo.T__.Values(\"name\").Substring(0, 1)).By(gremlingo.T__.Constant(1)).Cap(\"a\")", "groovy": "g.V().group(\"a\").by(__.values(\"name\").substring(0, 1)).by(__.constant(1)).cap(\"a\")", "java": "g.V().group(\"a\").by(__.values(\"name\").substring(0, 1)).by(__.constant(1)).cap(\"a\")", @@ -43919,6 +46711,7 @@ "canonical": "g.V().hasLabel(\"song\").group(\"a\").by(\"name\").by(__.properties().groupCount().by(T.label)).out().cap(\"a\")", "anonymized": "g.V().hasLabel(string0).group(string1).by(string2).by(__.properties().groupCount().by(T.label)).out().cap(string1)", "dotnet": "g.V().HasLabel(\"song\").Group(\"a\").By(\"name\").By(__.Properties().GroupCount().By(T.Label)).Out().Cap(\"a\")", + "dotnet_parameterize": "g.V().HasLabel(\"song\").Group(\"a\").By(\"name\").By(__.Properties().GroupCount().By(T.Label)).Out().Cap(\"a\")", "go": "g.V().HasLabel(\"song\").Group(\"a\").By(\"name\").By(gremlingo.T__.Properties().GroupCount().By(gremlingo.T.Label)).Out().Cap(\"a\")", "groovy": "g.V().hasLabel(\"song\").group(\"a\").by(\"name\").by(__.properties().groupCount().by(T.label)).out().cap(\"a\")", "java": "g.V().hasLabel(\"song\").group(\"a\").by(\"name\").by(__.properties().groupCount().by(T.label)).out().cap(\"a\")", @@ -43936,6 +46729,7 @@ "canonical": "g.V().hasLabel(\"person\").as(\"p\").out(\"created\").group(\"a\").by(\"name\").by(__.select(\"p\").values(\"age\").sum()).cap(\"a\")", "anonymized": "g.V().hasLabel(string0).as(string1).out(string2).group(string3).by(string4).by(__.select(string1).values(string5).sum()).cap(string3)", "dotnet": "g.V().HasLabel(\"person\").As(\"p\").Out(\"created\").Group(\"a\").By(\"name\").By(__.Select(\"p\").Values(\"age\").Sum()).Cap(\"a\")", + "dotnet_parameterize": "g.V().HasLabel(\"person\").As(\"p\").Out(\"created\").Group(\"a\").By(\"name\").By(__.Select(\"p\").Values(\"age\").Sum()).Cap(\"a\")", "go": "g.V().HasLabel(\"person\").As(\"p\").Out(\"created\").Group(\"a\").By(\"name\").By(gremlingo.T__.Select(\"p\").Values(\"age\").Sum()).Cap(\"a\")", "groovy": "g.V().hasLabel(\"person\").as(\"p\").out(\"created\").group(\"a\").by(\"name\").by(__.select(\"p\").values(\"age\").sum()).cap(\"a\")", "java": "g.V().hasLabel(\"person\").as(\"p\").out(\"created\").group(\"a\").by(\"name\").by(__.select(\"p\").values(\"age\").sum()).cap(\"a\")", @@ -43953,6 +46747,7 @@ "canonical": "g.V().group(\"m\").by(\"name\").by(__.in(\"knows\").values(\"name\")).cap(\"m\")", "anonymized": "g.V().group(string0).by(string1).by(__.in(string2).values(string1)).cap(string0)", "dotnet": "g.V().Group(\"m\").By(\"name\").By(__.In(\"knows\").Values(\"name\")).Cap(\"m\")", + "dotnet_parameterize": "g.V().Group(\"m\").By(\"name\").By(__.In(\"knows\").Values(\"name\")).Cap(\"m\")", "go": "g.V().Group(\"m\").By(\"name\").By(gremlingo.T__.In(\"knows\").Values(\"name\")).Cap(\"m\")", "groovy": "g.V().group(\"m\").by(\"name\").by(__.in(\"knows\").values(\"name\")).cap(\"m\")", "java": "g.V().group(\"m\").by(\"name\").by(__.in(\"knows\").values(\"name\")).cap(\"m\")", @@ -43970,6 +46765,7 @@ "canonical": "g.V().group(\"m\").by(__.label()).by(__.label().count()).cap(\"m\")", "anonymized": "g.V().group(string0).by(__.label()).by(__.label().count()).cap(string0)", "dotnet": "g.V().Group(\"m\").By(__.Label()).By(__.Label().Count()).Cap(\"m\")", + "dotnet_parameterize": "g.V().Group(\"m\").By(__.Label()).By(__.Label().Count()).Cap(\"m\")", "go": "g.V().Group(\"m\").By(gremlingo.T__.Label()).By(gremlingo.T__.Label().Count()).Cap(\"m\")", "groovy": "g.V().group(\"m\").by(__.label()).by(__.label().count()).cap(\"m\")", "java": "g.V().group(\"m\").by(__.label()).by(__.label().count()).cap(\"m\")", @@ -43987,6 +46783,7 @@ "canonical": "g.V().choose(__.has(T.label, \"person\"), __.values(\"age\").groupCount(\"a\"), __.values(\"name\").groupCount(\"b\")).cap(\"a\", \"b\").unfold()", "anonymized": "g.V().choose(__.has(T.label, string0), __.values(string1).groupCount(string2), __.values(string3).groupCount(string4)).cap(string2, string4).unfold()", "dotnet": "g.V().Choose(__.Has(T.Label, \"person\"), __.Values(\"age\").GroupCount(\"a\"), __.Values(\"name\").GroupCount(\"b\")).Cap(\"a\", \"b\").Unfold()", + "dotnet_parameterize": "g.V().Choose(__.Has(T.Label, \"person\"), __.Values(\"age\").GroupCount(\"a\"), __.Values(\"name\").GroupCount(\"b\")).Cap(\"a\", \"b\").Unfold()", "go": "g.V().Choose(gremlingo.T__.Has(gremlingo.T.Label, \"person\"), gremlingo.T__.Values(\"age\").GroupCount(\"a\"), gremlingo.T__.Values(\"name\").GroupCount(\"b\")).Cap(\"a\", \"b\").Unfold()", "groovy": "g.V().choose(__.has(T.label, \"person\"), __.values(\"age\").groupCount(\"a\"), __.values(\"name\").groupCount(\"b\")).cap(\"a\", \"b\").unfold()", "java": "g.V().choose(__.has(T.label, \"person\"), __.values(\"age\").groupCount(\"a\"), __.values(\"name\").groupCount(\"b\")).cap(\"a\", \"b\").unfold()", @@ -44004,6 +46801,7 @@ "canonical": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group(\"a\").by().by(__.out().order()).cap(\"a\")", "anonymized": "g.V().has(string0, string1, P.within(string2, string3)).group(string4).by().by(__.out().order()).cap(string4)", "dotnet": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group(\"a\").By().By(__.Out().Order()).Cap(\"a\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group(\"a\").By().By(__.Out().Order()).Cap(\"a\")", "go": "g.V().Has(\"person\", \"name\", gremlingo.P.Within(\"vadas\", \"peter\")).Group(\"a\").By().By(gremlingo.T__.Out().Order()).Cap(\"a\")", "groovy": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group(\"a\").by().by(__.out().order()).cap(\"a\")", "java": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group(\"a\").by().by(__.out().order()).cap(\"a\")", @@ -44021,6 +46819,7 @@ "canonical": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group(\"a\").by().by(__.out().order().count()).cap(\"a\")", "anonymized": "g.V().has(string0, string1, P.within(string2, string3)).group(string4).by().by(__.out().order().count()).cap(string4)", "dotnet": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group(\"a\").By().By(__.Out().Order().Count()).Cap(\"a\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group(\"a\").By().By(__.Out().Order().Count()).Cap(\"a\")", "go": "g.V().Has(\"person\", \"name\", gremlingo.P.Within(\"vadas\", \"peter\")).Group(\"a\").By().By(gremlingo.T__.Out().Order().Count()).Cap(\"a\")", "groovy": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group(\"a\").by().by(__.out().order().count()).cap(\"a\")", "java": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group(\"a\").by().by(__.out().order().count()).cap(\"a\")", @@ -44038,6 +46837,7 @@ "canonical": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group(\"a\").by().by(__.out().order().fold().count(Scope.local)).cap(\"a\")", "anonymized": "g.V().has(string0, string1, P.within(string2, string3)).group(string4).by().by(__.out().order().fold().count(Scope.local)).cap(string4)", "dotnet": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group(\"a\").By().By(__.Out().Order().Fold().Count(Scope.Local)).Cap(\"a\")", + "dotnet_parameterize": "g.V().Has(\"person\", \"name\", P.Within(\"vadas\", \"peter\")).Group(\"a\").By().By(__.Out().Order().Fold().Count(Scope.Local)).Cap(\"a\")", "go": "g.V().Has(\"person\", \"name\", gremlingo.P.Within(\"vadas\", \"peter\")).Group(\"a\").By().By(gremlingo.T__.Out().Order().Fold().Count(gremlingo.Scope.Local)).Cap(\"a\")", "groovy": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group(\"a\").by().by(__.out().order().fold().count(Scope.local)).cap(\"a\")", "java": "g.V().has(\"person\", \"name\", P.within(\"vadas\", \"peter\")).group(\"a\").by().by(__.out().order().fold().count(Scope.local)).cap(\"a\")", @@ -44055,6 +46855,7 @@ "canonical": "g.V().group(\"a\").by().by(__.out().label().fold()).cap(\"a\").select(Column.values).unfold().order(Scope.local)", "anonymized": "g.V().group(string0).by().by(__.out().label().fold()).cap(string0).select(Column.values).unfold().order(Scope.local)", "dotnet": "g.V().Group(\"a\").By().By(__.Out().Label().Fold()).Cap(\"a\").Select(Column.Values).Unfold().Order(Scope.Local)", + "dotnet_parameterize": "g.V().Group(\"a\").By().By(__.Out().Label().Fold()).Cap(\"a\").Select(Column.Values).Unfold().Order(Scope.Local)", "go": "g.V().Group(\"a\").By().By(gremlingo.T__.Out().Label().Fold()).Cap(\"a\").Select(gremlingo.Column.Values).Unfold().Order(gremlingo.Scope.Local)", "groovy": "g.V().group(\"a\").by().by(__.out().label().fold()).cap(\"a\").select(Column.values).unfold().order(Scope.local)", "java": "g.V().group(\"a\").by().by(__.out().label().fold()).cap(\"a\").select(Column.values).unfold().order(Scope.local)", @@ -44072,6 +46873,7 @@ "canonical": "g.V().group(\"a\").by().by(__.out().label().dedup().fold()).cap(\"a\").select(Column.values).unfold().order(Scope.local)", "anonymized": "g.V().group(string0).by().by(__.out().label().dedup().fold()).cap(string0).select(Column.values).unfold().order(Scope.local)", "dotnet": "g.V().Group(\"a\").By().By(__.Out().Label().Dedup().Fold()).Cap(\"a\").Select(Column.Values).Unfold().Order(Scope.Local)", + "dotnet_parameterize": "g.V().Group(\"a\").By().By(__.Out().Label().Dedup().Fold()).Cap(\"a\").Select(Column.Values).Unfold().Order(Scope.Local)", "go": "g.V().Group(\"a\").By().By(gremlingo.T__.Out().Label().Dedup().Fold()).Cap(\"a\").Select(gremlingo.Column.Values).Unfold().Order(gremlingo.Scope.Local)", "groovy": "g.V().group(\"a\").by().by(__.out().label().dedup().fold()).cap(\"a\").select(Column.values).unfold().order(Scope.local)", "java": "g.V().group(\"a\").by().by(__.out().label().dedup().fold()).cap(\"a\").select(Column.values).unfold().order(Scope.local)", @@ -44089,6 +46891,7 @@ "canonical": "g.V().group(\"a\").by().by(__.out().label().limit(0).fold()).cap(\"a\").select(Column.values).unfold()", "anonymized": "g.V().group(string0).by().by(__.out().label().limit(number0).fold()).cap(string0).select(Column.values).unfold()", "dotnet": "g.V().Group(\"a\").By().By(__.Out().Label().Limit(0).Fold()).Cap(\"a\").Select(Column.Values).Unfold()", + "dotnet_parameterize": "g.V().Group(\"a\").By().By(__.Out().Label().Limit(0).Fold()).Cap(\"a\").Select(Column.Values).Unfold()", "go": "g.V().Group(\"a\").By().By(gremlingo.T__.Out().Label().Limit(0).Fold()).Cap(\"a\").Select(gremlingo.Column.Values).Unfold()", "groovy": "g.V().group(\"a\").by().by(__.out().label().limit(0).fold()).cap(\"a\").select(Column.values).unfold()", "java": "g.V().group(\"a\").by().by(__.out().label().limit(0).fold()).cap(\"a\").select(Column.values).unfold()", @@ -44106,6 +46909,7 @@ "canonical": "g.V().group(\"a\").by().by(__.out().label().limit(10).fold()).cap(\"a\").select(Column.values).unfold().order(Scope.local)", "anonymized": "g.V().group(string0).by().by(__.out().label().limit(number0).fold()).cap(string0).select(Column.values).unfold().order(Scope.local)", "dotnet": "g.V().Group(\"a\").By().By(__.Out().Label().Limit(10).Fold()).Cap(\"a\").Select(Column.Values).Unfold().Order(Scope.Local)", + "dotnet_parameterize": "g.V().Group(\"a\").By().By(__.Out().Label().Limit(10).Fold()).Cap(\"a\").Select(Column.Values).Unfold().Order(Scope.Local)", "go": "g.V().Group(\"a\").By().By(gremlingo.T__.Out().Label().Limit(10).Fold()).Cap(\"a\").Select(gremlingo.Column.Values).Unfold().Order(gremlingo.Scope.Local)", "groovy": "g.V().group(\"a\").by().by(__.out().label().limit(10).fold()).cap(\"a\").select(Column.values).unfold().order(Scope.local)", "java": "g.V().group(\"a\").by().by(__.out().label().limit(10).fold()).cap(\"a\").select(Column.values).unfold().order(Scope.local)", @@ -44123,6 +46927,7 @@ "canonical": "g.V().group(\"a\").by().by(__.out().label().tail(10).fold()).cap(\"a\").select(Column.values).unfold().order(Scope.local)", "anonymized": "g.V().group(string0).by().by(__.out().label().tail(number0).fold()).cap(string0).select(Column.values).unfold().order(Scope.local)", "dotnet": "g.V().Group(\"a\").By().By(__.Out().Label().Tail(10).Fold()).Cap(\"a\").Select(Column.Values).Unfold().Order(Scope.Local)", + "dotnet_parameterize": "g.V().Group(\"a\").By().By(__.Out().Label().Tail(10).Fold()).Cap(\"a\").Select(Column.Values).Unfold().Order(Scope.Local)", "go": "g.V().Group(\"a\").By().By(gremlingo.T__.Out().Label().Tail(10).Fold()).Cap(\"a\").Select(gremlingo.Column.Values).Unfold().Order(gremlingo.Scope.Local)", "groovy": "g.V().group(\"a\").by().by(__.out().label().tail(10).fold()).cap(\"a\").select(Column.values).unfold().order(Scope.local)", "java": "g.V().group(\"a\").by().by(__.out().label().tail(10).fold()).cap(\"a\").select(Column.values).unfold().order(Scope.local)", @@ -44140,6 +46945,7 @@ "canonical": "g.V(vid1).outE(\"knows\").subgraph(\"sg\").values(\"name\").cap(\"sg\")", "anonymized": "g.V(vid1).outE(string0).subgraph(string1).values(string2).cap(string1)", "dotnet": "g.V(vid1).OutE(\"knows\").Subgraph(\"sg\").Values(\"name\").Cap(\"sg\")", + "dotnet_parameterize": "g.V(vid1).OutE(\"knows\").Subgraph(\"sg\").Values(\"name\").Cap(\"sg\")", "go": "g.V(vid1).OutE(\"knows\").Subgraph(\"sg\").Values(\"name\").Cap(\"sg\")", "groovy": "g.V(vid1).outE(\"knows\").subgraph(\"sg\").values(\"name\").cap(\"sg\")", "java": "g.V(vid1).outE(\"knows\").subgraph(\"sg\").values(\"name\").cap(\"sg\")", @@ -44157,6 +46963,7 @@ "canonical": "g.V().repeat(__.bothE(\"created\").subgraph(\"sg\").outV()).times(5).values(\"name\").dedup().cap(\"sg\")", "anonymized": "g.V().repeat(__.bothE(string0).subgraph(string1).outV()).times(number0).values(string2).dedup().cap(string1)", "dotnet": "g.V().Repeat(__.BothE(\"created\").Subgraph(\"sg\").OutV()).Times(5).Values(\"name\").Dedup().Cap(\"sg\")", + "dotnet_parameterize": "g.V().Repeat(__.BothE(\"created\").Subgraph(\"sg\").OutV()).Times(5).Values(\"name\").Dedup().Cap(\"sg\")", "go": "g.V().Repeat(gremlingo.T__.BothE(\"created\").Subgraph(\"sg\").OutV()).Times(5).Values(\"name\").Dedup().Cap(\"sg\")", "groovy": "g.V().repeat(__.bothE(\"created\").subgraph(\"sg\").outV()).times(5).values(\"name\").dedup().cap(\"sg\")", "java": "g.V().repeat(__.bothE(\"created\").subgraph(\"sg\").outV()).times(5).values(\"name\").dedup().cap(\"sg\")", @@ -44174,6 +46981,7 @@ "canonical": "g.V().outE(\"noexist\").subgraph(\"sg\").cap(\"sg\")", "anonymized": "g.V().outE(string0).subgraph(string1).cap(string1)", "dotnet": "g.V().OutE(\"noexist\").Subgraph(\"sg\").Cap(\"sg\")", + "dotnet_parameterize": "g.V().OutE(\"noexist\").Subgraph(\"sg\").Cap(\"sg\")", "go": "g.V().OutE(\"noexist\").Subgraph(\"sg\").Cap(\"sg\")", "groovy": "g.V().outE(\"noexist\").subgraph(\"sg\").cap(\"sg\")", "java": "g.V().outE(\"noexist\").subgraph(\"sg\").cap(\"sg\")", @@ -44191,6 +46999,7 @@ "canonical": "g.E().has(\"weight\", 0.4).subgraph(\"a\").select(\"a\")", "anonymized": "g.E().has(string0, number0).subgraph(string1).select(string1)", "dotnet": "g.E().Has(\"weight\", 0.4).Subgraph(\"a\").Select(\"a\")", + "dotnet_parameterize": "g.E().Has(\"weight\", 0.4).Subgraph(\"a\").Select(\"a\")", "go": "g.E().Has(\"weight\", 0.4).Subgraph(\"a\").Select(\"a\")", "groovy": "g.E().has(\"weight\", 0.4).subgraph(\"a\").select(\"a\")", "java": "g.E().has(\"weight\", 0.4).subgraph(\"a\").select(\"a\")", @@ -44208,6 +47017,7 @@ "canonical": "g.V(vid1).out().out().tree().by(\"name\")", "anonymized": "g.V(vid1).out().out().tree().by(string0)", "dotnet": "g.V(vid1).Out().Out().Tree().By(\"name\")", + "dotnet_parameterize": "g.V(vid1).Out().Out().Tree().By(\"name\")", "go": "g.V(vid1).Out().Out().Tree().By(\"name\")", "groovy": "g.V(vid1).out().out().tree().by(\"name\")", "java": "g.V(vid1).out().out().tree().by(\"name\")", @@ -44225,6 +47035,7 @@ "canonical": "g.V(vid1).out().out().tree()", "anonymized": "g.V(vid1).out().out().tree()", "dotnet": "g.V(vid1).Out().Out().Tree()", + "dotnet_parameterize": "g.V(vid1).Out().Out().Tree()", "go": "g.V(vid1).Out().Out().Tree()", "groovy": "g.V(vid1).out().out().tree()", "java": "g.V(vid1).out().out().tree()", @@ -44242,6 +47053,7 @@ "canonical": "g.V().out().tree().by(\"age\")", "anonymized": "g.V().out().tree().by(string0)", "dotnet": "g.V().Out().Tree().By(\"age\")", + "dotnet_parameterize": "g.V().Out().Tree().By(\"age\")", "go": "g.V().Out().Tree().By(\"age\")", "groovy": "g.V().out().tree().by(\"age\")", "java": "g.V().out().tree().by(\"age\")", @@ -44259,6 +47071,7 @@ "canonical": "g.V(vid1).out().out().tree(\"a\").by(\"name\").both().both().cap(\"a\")", "anonymized": "g.V(vid1).out().out().tree(string0).by(string1).both().both().cap(string0)", "dotnet": "g.V(vid1).Out().Out().Tree(\"a\").By(\"name\").Both().Both().Cap(\"a\")", + "dotnet_parameterize": "g.V(vid1).Out().Out().Tree(\"a\").By(\"name\").Both().Both().Cap(\"a\")", "go": "g.V(vid1).Out().Out().Tree(\"a\").By(\"name\").Both().Both().Cap(\"a\")", "groovy": "g.V(vid1).out().out().tree(\"a\").by(\"name\").both().both().cap(\"a\")", "java": "g.V(vid1).out().out().tree(\"a\").by(\"name\").both().both().cap(\"a\")", @@ -44276,6 +47089,7 @@ "canonical": "g.V(vid1).out().out().tree(\"a\").both().both().cap(\"a\")", "anonymized": "g.V(vid1).out().out().tree(string0).both().both().cap(string0)", "dotnet": "g.V(vid1).Out().Out().Tree(\"a\").Both().Both().Cap(\"a\")", + "dotnet_parameterize": "g.V(vid1).Out().Out().Tree(\"a\").Both().Both().Cap(\"a\")", "go": "g.V(vid1).Out().Out().Tree(\"a\").Both().Both().Cap(\"a\")", "groovy": "g.V(vid1).out().out().tree(\"a\").both().both().cap(\"a\")", "java": "g.V(vid1).out().out().tree(\"a\").both().both().cap(\"a\")", @@ -44293,6 +47107,7 @@ "canonical": "g.V(vid1).out().out().tree().by(T.label)", "anonymized": "g.V(vid1).out().out().tree().by(T.label)", "dotnet": "g.V(vid1).Out().Out().Tree().By(T.Label)", + "dotnet_parameterize": "g.V(vid1).Out().Out().Tree().By(T.Label)", "go": "g.V(vid1).Out().Out().Tree().By(gremlingo.T.Label)", "groovy": "g.V(vid1).out().out().tree().by(T.label)", "java": "g.V(vid1).out().out().tree().by(T.label)", @@ -44310,6 +47125,7 @@ "canonical": "g.V(vid1).out().out().tree(\"a\").by(T.label).both().both().cap(\"a\")", "anonymized": "g.V(vid1).out().out().tree(string0).by(T.label).both().both().cap(string0)", "dotnet": "g.V(vid1).Out().Out().Tree(\"a\").By(T.Label).Both().Both().Cap(\"a\")", + "dotnet_parameterize": "g.V(vid1).Out().Out().Tree(\"a\").By(T.Label).Both().Both().Cap(\"a\")", "go": "g.V(vid1).Out().Out().Tree(\"a\").By(gremlingo.T.Label).Both().Both().Cap(\"a\")", "groovy": "g.V(vid1).out().out().tree(\"a\").by(T.label).both().both().cap(\"a\")", "java": "g.V(vid1).out().out().tree(\"a\").by(T.label).both().both().cap(\"a\")", @@ -44327,6 +47143,7 @@ "canonical": "g.V().out().out().out().tree()", "anonymized": "g.V().out().out().out().tree()", "dotnet": "g.V().Out().Out().Out().Tree()", + "dotnet_parameterize": "g.V().Out().Out().Out().Tree()", "go": "g.V().Out().Out().Out().Tree()", "groovy": "g.V().out().out().out().tree()", "java": "g.V().out().out().out().tree()", @@ -44344,6 +47161,7 @@ "canonical": "g.V(vid1).outE().inV().bothE().otherV().tree()", "anonymized": "g.V(vid1).outE().inV().bothE().otherV().tree()", "dotnet": "g.V(vid1).OutE().InV().BothE().OtherV().Tree()", + "dotnet_parameterize": "g.V(vid1).OutE().InV().BothE().OtherV().Tree()", "go": "g.V(vid1).OutE().InV().BothE().OtherV().Tree()", "groovy": "g.V(vid1).outE().inV().bothE().otherV().tree()", "java": "g.V(vid1).outE().inV().bothE().otherV().tree()", @@ -44361,6 +47179,7 @@ "canonical": "g.V(vid1).outE().inV().bothE().otherV().tree().by(\"name\").by(T.label)", "anonymized": "g.V(vid1).outE().inV().bothE().otherV().tree().by(string0).by(T.label)", "dotnet": "g.V(vid1).OutE().InV().BothE().OtherV().Tree().By(\"name\").By(T.Label)", + "dotnet_parameterize": "g.V(vid1).OutE().InV().BothE().OtherV().Tree().By(\"name\").By(T.Label)", "go": "g.V(vid1).OutE().InV().BothE().OtherV().Tree().By(\"name\").By(gremlingo.T.Label)", "groovy": "g.V(vid1).outE().inV().bothE().otherV().tree().by(\"name\").by(T.label)", "java": "g.V(vid1).outE().inV().bothE().otherV().tree().by(\"name\").by(T.label)", @@ -44378,6 +47197,7 @@ "canonical": "g.V().out().tree(\"a\").select(\"a\").count(Scope.local)", "anonymized": "g.V().out().tree(string0).select(string0).count(Scope.local)", "dotnet": "g.V().Out().Tree(\"a\").Select(\"a\").Count(Scope.Local)", + "dotnet_parameterize": "g.V().Out().Tree(\"a\").Select(\"a\").Count(Scope.Local)", "go": "g.V().Out().Tree(\"a\").Select(\"a\").Count(gremlingo.Scope.Local)", "groovy": "g.V().out().tree(\"a\").select(\"a\").count(Scope.local)", "java": "g.V().out().tree(\"a\").select(\"a\").count(Scope.local)", @@ -44395,6 +47215,7 @@ "canonical": "g.V().out().local(__.tree(\"a\").select(\"a\").count(Scope.local))", "anonymized": "g.V().out().local(__.tree(string0).select(string0).count(Scope.local))", "dotnet": "g.V().Out().Local(__.Tree(\"a\").Select(\"a\").Count(Scope.Local))", + "dotnet_parameterize": "g.V().Out().Local(__.Tree(\"a\").Select(\"a\").Count(Scope.Local))", "go": "g.V().Out().Local(gremlingo.T__.Tree(\"a\").Select(\"a\").Count(gremlingo.Scope.Local))", "groovy": "g.V().out().local(__.tree(\"a\").select(\"a\").count(Scope.local))", "java": "g.V().out().local(__.tree(\"a\").select(\"a\").count(Scope.local))", @@ -44412,6 +47233,7 @@ "canonical": "g.io(\"tinkerpop-modern-v3.kryo\").write()", "anonymized": "g.io(string0).write()", "dotnet": "g.Io(\"tinkerpop-modern-v3.kryo\").Write()", + "dotnet_parameterize": "g.Io(\"tinkerpop-modern-v3.kryo\").Write()", "go": "g.Io(\"tinkerpop-modern-v3.kryo\").Write()", "groovy": "g.io(\"tinkerpop-modern-v3.kryo\").write()", "java": "g.io(\"tinkerpop-modern-v3.kryo\").write()", @@ -44429,6 +47251,7 @@ "canonical": "g.io(\"tinkerpop-modern-v3.kryo\").with(IO.writer, IO.gryo).write()", "anonymized": "g.io(string0).with(IO.writer, IO.gryo).write()", "dotnet": "g.Io(\"tinkerpop-modern-v3.kryo\").With(IO.Writer, IO.Gryo).Write()", + "dotnet_parameterize": "g.Io(\"tinkerpop-modern-v3.kryo\").With(IO.Writer, IO.Gryo).Write()", "go": "g.Io(\"tinkerpop-modern-v3.kryo\").With(gremlingo.IO.Writer, gremlingo.IO.Gryo).Write()", "groovy": "g.io(\"tinkerpop-modern-v3.kryo\").with(IO.writer, IO.gryo).write()", "java": "g.io(\"tinkerpop-modern-v3.kryo\").with(IO.writer, IO.gryo).write()", @@ -44446,6 +47269,7 @@ "canonical": "g.io(\"tinkerpop-modern-v3.json\").write()", "anonymized": "g.io(string0).write()", "dotnet": "g.Io(\"tinkerpop-modern-v3.json\").Write()", + "dotnet_parameterize": "g.Io(\"tinkerpop-modern-v3.json\").Write()", "go": "g.Io(\"tinkerpop-modern-v3.json\").Write()", "groovy": "g.io(\"tinkerpop-modern-v3.json\").write()", "java": "g.io(\"tinkerpop-modern-v3.json\").write()", @@ -44463,6 +47287,7 @@ "canonical": "g.io(\"tinkerpop-modern-v3.json\").with(IO.writer, IO.graphson).write()", "anonymized": "g.io(string0).with(IO.writer, IO.graphson).write()", "dotnet": "g.Io(\"tinkerpop-modern-v3.json\").With(IO.Writer, IO.GraphSON).Write()", + "dotnet_parameterize": "g.Io(\"tinkerpop-modern-v3.json\").With(IO.Writer, IO.GraphSON).Write()", "go": "g.Io(\"tinkerpop-modern-v3.json\").With(gremlingo.IO.Writer, gremlingo.IO.Graphson).Write()", "groovy": "g.io(\"tinkerpop-modern-v3.json\").with(IO.writer, IO.graphson).write()", "java": "g.io(\"tinkerpop-modern-v3.json\").with(IO.writer, IO.graphson).write()", @@ -44480,6 +47305,7 @@ "canonical": "g.io(\"tinkerpop-modern.xml\").write()", "anonymized": "g.io(string0).write()", "dotnet": "g.Io(\"tinkerpop-modern.xml\").Write()", + "dotnet_parameterize": "g.Io(\"tinkerpop-modern.xml\").Write()", "go": "g.Io(\"tinkerpop-modern.xml\").Write()", "groovy": "g.io(\"tinkerpop-modern.xml\").write()", "java": "g.io(\"tinkerpop-modern.xml\").write()", @@ -44497,6 +47323,7 @@ "canonical": "g.io(\"tinkerpop-modern.xml\").with(IO.writer, IO.graphml).write()", "anonymized": "g.io(string0).with(IO.writer, IO.graphml).write()", "dotnet": "g.Io(\"tinkerpop-modern.xml\").With(IO.Writer, IO.GraphML).Write()", + "dotnet_parameterize": "g.Io(\"tinkerpop-modern.xml\").With(IO.Writer, IO.GraphML).Write()", "go": "g.Io(\"tinkerpop-modern.xml\").With(gremlingo.IO.Writer, gremlingo.IO.Graphml).Write()", "groovy": "g.io(\"tinkerpop-modern.xml\").with(IO.writer, IO.graphml).write()", "java": "g.io(\"tinkerpop-modern.xml\").with(IO.writer, IO.graphml).write()",