Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
2 votes
0 answers
102 views

How to use Gremlin.Net to send data in JanusGraph instance to Gephi for visualization?

I just came into contact with the field of graph database or graph data visualization this week. I want to use JanusGraph for graph analysis and visualization. I hope to import and process graph data ...
isnf-uZ4's user avatar
1 vote
1 answer
206 views

Encountered an error when making Gremlin.Net communicate with JanusGraph in the JanusGraph official website.net introductory tutorial

I tried to operate JanusGraph with .net using JanusGraph official tutorial, but got an error, the following is my code and .net\JanusGraph Error displayed by the server I use vscode, the command to ...
isnf-uZ4's user avatar
1 vote
1 answer
398 views

Read/save a file with Gremlin.net

I'm new in gremlin, But I have succed to have a janusgraph dockerized database, and to connect to it with Gremlin.Net 3.4.7 (thanks for the tutorials PRACTICAL GREMLIN found on stackoverflow :D). I ...
Parashift's user avatar
1 vote
1 answer
458 views

Cannot see my graph on JanusGraph Server with BerkeleyDB storage from .NET client

Can someone help me to understand why I don't see the graph from JanusGraph.Net client? I'm running the latest Docker image for JanusGraph from Docker Hub. After connecting to the JanusGraph using ...
Volodymyr's user avatar
  • 528
0 votes
0 answers
37 views

Simple Gremlin.NET - How query graph by name [duplicate]

How we can implement something like this in Gremlin.net To create a config template: map = new HashMap<String, Object>() map.put("storage.backend", "cql") map.put("storage.hostname", "xxxxx") ...
softwareminded's user avatar
3 votes
1 answer
326 views

JanusGraph .net C#

Hey Can anyone help me figure out how I can connect to remote JanusGraph server hosting several graphs and query a specific graph (by graph name) using C# JanusGraph.net ? I can connect to the server ...
softwareminded's user avatar
0 votes
0 answers
244 views

Running janusGraph on windows

I am trying running JanusGraph on windows to local benchmarking and I have problems. I'm running gremlin-server.bat and gremlin.bat but I don't have janusgraph.bat file in bin directory (only ...
BeFine9's user avatar
  • 25
3 votes
2 answers
784 views

Gremlin.net textContains equivalent

I am using Gremlin.net library to connect to a janus graph server. I am usin cassandra and elasstic search for data storage and indexing. In gremlin language and gremlin console I use textContains to ...
janus graph's user avatar
1 vote
1 answer
800 views

Gremlin if else inside .by() function

I am using Gremlin.Net to connect to janus database, my question is about gremlin how can i perform the next query in case the the vertex with id = 61464 doesn't have father. Its break out currently. ...
janus graph's user avatar
8 votes
1 answer
1k views

Gremlin.Net Casting from Enumerable.SelectIListIterator object to real type

I don't know if my question is about c# and casting or related to Gremlin.net Library return Types. I am using this query to get vertices with their db ids. g.V().As("vertex").ValueMap<...
janus graph's user avatar
0 votes
1 answer
462 views

Gremlin.Net return multi sub vertex in the same array

Usually family contains one father and mother but multi children, In gremlin I can say to get a family: g.V(61464).as('me').outE('father').inV().as('father').select('me').outE('mother').inV().as('...
janus graph's user avatar
2 votes
1 answer
1k views

Gremlin.Net System.InvalidOperationException: 'Deserializer for "janusgraph:RelationIdentifier" not found' exception

I am new in janusgraph and tinkerpop. I am using Gremlin.Net 3.2.7 to connect to janusgraph and all the request that return vertexes work fine for me but when I run any operation that return edges ...
janus graph's user avatar