Gremlin.Net.CosmosDb icon indicating copy to clipboard operation
Gremlin.Net.CosmosDb copied to clipboard

Helper library when using Gremlin.Net in conjunction with a Cosmos DB graph

Results 20 Gremlin.Net.CosmosDb issues
Sort by recently updated
recently updated
newest added

Hi @evo-terren I'm currently working on a way to deserialize trees (much like `Vertex.ToObject()`) since I need it for my project, but it has turned out to be quite complex....

In PR #61 , the upstream dependency of Gremlin.Net was updated from 3.4.0 to 3.4.2. The release 3.4.2 includes [ TINKERPOP-2090](https://issues.apache.org/jira/browse/TINKERPOP-2090) fix.

When querying using the method `P.Within()` there never seem to yield any results. When inspecting the produced query I noticed it has some additional quotes around the array. When removing...

bug

Hi all, In the process of migrating from Microsoft.Azure.Graphs and testing it, we found that we couldn't debug properly. When inspecting (Visual Studio Quickwatch feature) variables, like a `vertex`, shows...

Currently, the `Project` and `Select` traversals do not have a SchemaBound equivalent. https://github.com/evo-terren/Gremlin.Net.CosmosDb/blob/94e1fe861aa9d0429b937d41a4a4e0a287d30730/src/Gremlin.Net.CosmosDb/ITraversal.Extensions.cs#L373-L376 While the `By` steps, which really go hand-in-hand with the Project/Select, have SchemaBound equivalents: https://github.com/evo-terren/Gremlin.Net.CosmosDb/blob/94e1fe861aa9d0429b937d41a4a4e0a287d30730/src/Gremlin.Net.CosmosDb/ISchemaBoundTraversal.Standard.Extensions.cs#L135-L146 Can anyone...

This is a temporary fix to issue #49. The proper fix is of course fixing the return value.

In the latest version 0.3.4.3-rc1 I have converted to using IVertex, so my vertex now includes Id: ` public class Site : IVertex { public string Id { get; set;...

bug

``` [Label("site")] public class Site : IVertex { [JsonProperty("id")] public string Id { get; set; } public string SiteName { get; set; } public Adjacent Adjacent { get; set; }...

Just stumbled upon https://github.com/ExRam/ExRam.Gremlinq which appears to be quite advanced as well. I haven't looked much into it yet, but there may be some use in looking into their implementation.

Unfortunately, (closed) issue #26 is still seems to be a problem, sorry. Exceptions are still thrown when you try to save a vertex where a property is an array of...

bug