This is an automated email from the ASF dual-hosted git repository.

kenhuuu pushed a commit to branch TINKERPOP-2978
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/TINKERPOP-2978 by this push:
     new 4e97ea37f7 remove type parameter for all step in dotnet
4e97ea37f7 is described below

commit 4e97ea37f7006eea707bf39987d149809fe48cfd
Author: Ken Hu <[email protected]>
AuthorDate: Sun Aug 27 17:07:25 2023 -0700

    remove type parameter for all step in dotnet
---
 .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs | 24 +++++++++++-----------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs 
b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs
index 41c3c6818b..ba3a697724 100644
--- a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs
+++ b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs
@@ -130,18 +130,18 @@ namespace Gremlin.Net.IntegrationTest.Gherkin
                {"g_VX1_2X_unionXoutE_count__inE_count__outE_weight_sumX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) 
=>g.V(p["vid1"],p["vid2"]).Union<object>(__.OutE().Count(),__.InE().Count(),__.OutE().Values<object>("weight").Sum<object>())}},
 
                
{"g_VX1_2X_localXunionXoutE_count__inE_count__outE_weight_sumXX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) 
=>g.V(p["vid1"],p["vid2"]).Local<object>(__.Union<object>(__.OutE().Count(),__.InE().Count(),__.OutE().Values<object>("weight").Sum<object>()))}},
 
                {"g_VX1_2X_localXunionXcountXX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) 
=>g.V(p["vid1"],p["vid2"]).Local<object>(__.Union<object>(__.Count()))}}, 
-               {"g_V_valuesXageX_allXP_gtX32XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Values<object>("age").All<object>(P.Gt(32))}}, 
-               {"g_V_valuesXageX_whereXisXP_gtX33XXX_fold_allXP_gtX33XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) 
=>g.V().Values<object>("age").Where(__.Is(P.Gt(33))).Fold().All<object>(P.Gt(33))}},
 
-               {"g_V_valuesXageX_order_byXdescX_fold_allXP_gtX10XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) 
=>g.V().Values<object>("age").Order().By(Order.Desc).Fold().All<object>(P.Gt(10))}},
 
-               {"g_V_valuesXageX_order_byXdescX_fold_allXP_gtX30XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) 
=>g.V().Values<object>("age").Order().By(Order.Desc).Fold().All<object>(P.Gt(30))}},
 
-               {"g_V_injectXabc_bcdX_allXP_eqXbcdXX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(p["xx1"]).All<object>(P.Eq("bcd"))}}, 
-               {"g_V_injectXbcd_bcdX_allXP_eqXbcdXX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(p["xx1"]).All<object>(P.Eq("bcd"))}}, 
-               {"g_V_injectXnull_abcX_allXTextP_startingWithXaXX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(p["xx1"]).All<object>(TextP.StartingWith("a"))}}, 
-               {"g_V_injectX5_8_10_10_7X_allXP_gteX7XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(p["xx1"],p["xx2"]).All<object>(P.Gte(7))}}, 
-               {"g_V_injectXnullX_allXP_eqXnullXX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(null).All<object>(P.Eq(null))}}, 
-               {"g_V_injectX7X_allXP_eqX7XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(7).All<object>(P.Eq(7))}}, 
-               {"g_V_injectXnull_nullX_allXP_eqXnullXX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(p["xx1"]).All<object>(P.Eq(null))}}, 
-               {"g_V_injectX3_threeX_allXP_eqX3XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(p["xx1"]).All<object>(P.Eq(3))}}, 
+               {"g_V_valuesXageX_allXP_gtX32XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Values<object>("age").All(P.Gt(32))}}, 
+               {"g_V_valuesXageX_whereXisXP_gtX33XXX_fold_allXP_gtX33XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) 
=>g.V().Values<object>("age").Where(__.Is(P.Gt(33))).Fold().All(P.Gt(33))}}, 
+               {"g_V_valuesXageX_order_byXdescX_fold_allXP_gtX10XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) 
=>g.V().Values<object>("age").Order().By(Order.Desc).Fold().All(P.Gt(10))}}, 
+               {"g_V_valuesXageX_order_byXdescX_fold_allXP_gtX30XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) 
=>g.V().Values<object>("age").Order().By(Order.Desc).Fold().All(P.Gt(30))}}, 
+               {"g_V_injectXabc_bcdX_allXP_eqXbcdXX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(p["xx1"]).All(P.Eq("bcd"))}}, 
+               {"g_V_injectXbcd_bcdX_allXP_eqXbcdXX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(p["xx1"]).All(P.Eq("bcd"))}}, 
+               {"g_V_injectXnull_abcX_allXTextP_startingWithXaXX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(p["xx1"]).All(TextP.StartingWith("a"))}}, 
+               {"g_V_injectX5_8_10_10_7X_allXP_gteX7XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(p["xx1"],p["xx2"]).All(P.Gte(7))}}, 
+               {"g_V_injectXnullX_allXP_eqXnullXX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(null).All(P.Eq(null))}}, 
+               {"g_V_injectX7X_allXP_eqX7XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(7).All(P.Eq(7))}}, 
+               {"g_V_injectXnull_nullX_allXP_eqXnullXX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(p["xx1"]).All(P.Eq(null))}}, 
+               {"g_V_injectX3_threeX_allXP_eqX3XX", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) =>g.V().Inject(p["xx1"]).All(P.Eq(3))}}, 
                {"g_V_andXhasXage_gt_27X__outE_count_gte_2X_name", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) 
=>g.V().And(__.Has("age",P.Gt(27)),__.OutE().Count().Is(P.Gte(2))).Values<object>("name")}},
 
                {"g_V_andXoutE__hasXlabel_personX_and_hasXage_gte_32XX_name", 
new List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) 
=>g.V().And(__.OutE(),__.Has(T.Label,"person").And().Has("age",P.Gte(32))).Values<object>("name")}},
 
                
{"g_V_asXaX_outXknowsX_and_outXcreatedX_inXcreatedX_asXaX_name", new 
List<Func<GraphTraversalSource, IDictionary<string, object>, ITraversal>> 
{(g,p) 
=>g.V().As("a").Out("knows").And().Out("created").In("created").As("a").Values<object>("name")}},
 

Reply via email to