Questions tagged [neo4jclient]

Neo4jClient is an open source .NET client for the Neo4j graph database.

Neo4jClient is an open source .NET client for the Neo4j graph database.

It is primarily focused on Cypher queries, and is in active development. There is support for the CRUD REST API and Gremlin queries, however these approaches are both considered legacy and are not being developed.

It has an official site with documentation, and is available via NuGet.

627 questions
-1
votes
1 answer

How can I get started with Neo4jClient?

As the wiki docs are currently out of date, where can I get started? I have tried to get started with the out-of-date docs, but get some problems with the Async equivalents.
GFeonix
  • 11
-1
votes
1 answer

How to get the first value of multiple arrays and store it in another array in neo4j?

I do have values like first = [1, 2] second = [2, 3] third = [1, 3] and I want to have [1,2,1] in neo4j?
Suman
  • 53
  • 7
-1
votes
1 answer

How to convert this Cypher query to Neo4jClient?

Using this query in Neo4j I get the node: match (a) where id(a)=0 return a; How do I retrieve a node by its Neo4j ID, not a POCO ID in Neo4jClient
Zaher88abd
  • 448
  • 7
  • 20
-1
votes
1 answer

How to import Json using Neo4jClient?

I want to serialize the Json and deserialize node into Json using Neo4jClient,Is there anyone can give me a exmple? Thx Z.Tom
Z.Tom
  • 37
  • 6
-1
votes
1 answer

Neo4jclient C# get all nodes and relationships to JSON

I want to get all nodes and relationships to JSON. If i execute this in the neo4j-browser i get what i want. (http://neo4j.com/developer/guide-data-visualization/) :POST /db/data/transaction/commit {"statements":[{"statement":"MATCH path =…
Brandt
  • 3
  • 2
-1
votes
1 answer

Neo4j: Storing standard non graph data (i.e. application settings)?

I have just started using neo4j to store data in a graph, i.e. friends of friends etc.. But now I need to store standard application configuration data. This isn't graph data really, its settings that the application will use to help it…
Martin
  • 23,844
  • 55
  • 201
  • 327
-1
votes
1 answer

connecting to Neo4jClient with C#

Am very new to the graph databases and need some help to start using Neo4jClient with asp.net using C# ... I use visual studio 2012 .. I'll be very appreciated if you can provide me with some documentations or articles about this topic . …
Rawhi
  • 6,155
  • 8
  • 36
  • 57
-2
votes
1 answer

Neo4j 2.3.0 cypher query logging settings and performance tweaks

Need to enable query logging for all my Neo4j queries. Not able to find a link for the specific version. Is there any performance benchmarking tool where we can see the slow queries and the areas that need to be optimized.
Kunal Dethe
  • 1,254
  • 1
  • 18
  • 38
-2
votes
1 answer

When will Neo4jClient support new features on Neo4j 2.0 new features. Labels etc

Neo4j 2.0 is going to be a major upgrade from version 1.8 and 1.9. What are the current plans to support some of the new features such a labels in Neo4jClient. We are in the midst of researching / selecting a NOSQL database for our enterprise and…
Anshul
  • 211
  • 2
  • 12
-3
votes
1 answer

How to process results of a neo4j-dotnet-driver query to pass to mvc view as model

I want to pass the result of a cypher query to MVC's view using model. The obtained result is in form of nodes which I get in var result. Now I want to pass this result to a view as model, so that I can print the obtained result in a razor view. My…
-4
votes
1 answer

How to create a Neo4J data model from the relationla data format?

I've following row column data. How can I model this into Neo4J?
1 2 3
41
42